@font-face {
  font-family: "Figtree";
  src: url("assets/figtree.ttf") format("truetype");
  font-weight: 300 900;
  font-display: swap;
}

:root {
  --blue: #1984c5;
  --blue-dark: #146a9f;
  --blue-deep: #0c3a4f;
  --blue-soft: #e3f4fb;
  --yellow: #fec502;
  --yellow-hover: #e9b500;
  --ink: #404040;
  --muted: #6b7280;
  --line: #e5e7eb;
  --soft: #f6f8f9;
  --white: #fff;
  --radius: 10px;
  --radius-lg: 18px;
  --shadow: 0 18px 50px rgba(12, 58, 79, .12);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Figtree", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.lightbox-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.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;
}
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  background: var(--yellow);
  transform: translateY(-150%);
  transition: transform .2s;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(229, 231, 235, .85);
  backdrop-filter: blur(14px);
}
.header-inner { height: 84px; display: flex; align-items: center; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.brand-mark { width: 38px; line-height: 0; }
.brand-mark svg { width: 100%; fill: var(--yellow); stroke: none; }
.brand-mark .brand-sun { fill: var(--blue); }
.brand-copy { display: flex; flex-direction: column; line-height: 1.05; }
.brand-copy strong { color: var(--blue-dark); font-size: 23px; letter-spacing: -.6px; }
.brand-copy strong em { color: var(--yellow-hover); font-style: normal; }
.brand-copy small { margin-top: 5px; color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .9px; text-transform: uppercase; }

.main-nav { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.main-nav a { position: relative; color: #4b5563; font-size: 15px; font-weight: 600; }
.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transition: transform .2s ease;
}
.main-nav a:hover::after,
.main-nav a:focus-visible::after { transform: scaleX(1); }
.menu-button { display: none; }

.button {
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  cursor: pointer;
  font-weight: 700;
  line-height: 1.2;
  transition: transform .2s ease, background-color .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible,
.gallery-item:focus-visible,
.menu-button:focus-visible,
.lightbox button:focus-visible { outline: 3px solid rgba(254, 197, 2, .65); outline-offset: 3px; }
.button svg { width: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.button-primary { color: var(--ink); background: var(--yellow); box-shadow: 0 10px 24px rgba(254, 197, 2, .22); }
.button-primary:hover { background: var(--yellow-hover); box-shadow: 0 13px 30px rgba(254, 197, 2, .28); }
.button-blue { color: var(--white); background: var(--blue-dark); }
.button-blue:hover { background: var(--blue-deep); }
.button-outline { min-height: 44px; padding: 10px 17px; border-color: var(--yellow); color: #4b5563; background: white; }
.button-outline:hover { background: #fffbea; }
.button-glass { color: var(--white); border-color: rgba(255, 255, 255, .58); background: rgba(255, 255, 255, .08); backdrop-filter: blur(6px); }
.button-glass:hover { background: rgba(255, 255, 255, .17); }

.hero {
  position: relative;
  min-height: 675px;
  padding: 114px 0 126px;
  display: flex;
  align-items: center;
  isolation: isolate;
  color: var(--white);
  background: url("assets/domki-szereg.jpg") center 48% / cover no-repeat;
}
.hero-overlay {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 31, 46, .9) 0%, rgba(7, 31, 46, .68) 43%, rgba(7, 31, 46, .18) 80%),
    linear-gradient(0deg, rgba(7, 31, 46, .35), transparent 45%);
}
.hero-content { position: relative; z-index: 1; }
.eyebrow {
  margin-bottom: 17px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 34px; height: 3px; background: var(--yellow); border-radius: 5px; }
.eyebrow.light { color: rgba(255, 255, 255, .9); }
.eyebrow.light::before { display: none; }
.eyebrow svg { width: 20px; fill: none; stroke: var(--yellow); stroke-width: 1.8; }
.hero h1 { max-width: 750px; margin: 0; font-size: clamp(48px, 6vw, 78px); line-height: .98; letter-spacing: -2.9px; }
.hero h1 span { color: var(--yellow); }
.hero-content > p { max-width: 625px; margin: 28px 0 32px; color: rgba(255, 255, 255, .88); font-size: 19px; line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-facts {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 42px;
  left: 0;
  display: flex;
  justify-content: flex-end;
  pointer-events: none;
}
.hero-facts div { min-width: 162px; padding: 0 25px; display: flex; align-items: center; gap: 12px; border-left: 1px solid rgba(255, 255, 255, .3); }
.hero-facts strong { color: var(--yellow); font-size: 27px; line-height: 1; }
.hero-facts span { color: rgba(255, 255, 255, .86); font-size: 12px; line-height: 1.35; }

.booking-wrap { position: relative; z-index: 4; height: 0; }
.booking-bar {
  position: relative;
  top: -35px;
  min-height: 142px;
  padding: 27px 30px;
  display: grid;
  grid-template-columns: 1.15fr .9fr .9fr .75fr auto;
  align-items: center;
  gap: 0;
  color: white;
  background: linear-gradient(to right top, #1984c5, #146a9f);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.booking-heading { display: flex; align-items: center; gap: 12px; padding-right: 24px; }
.booking-icon { width: 43px; height: 43px; display: grid; place-items: center; flex: 0 0 auto; border: 1px solid rgba(255, 255, 255, .28); border-radius: 50%; }
.booking-icon svg { width: 22px; fill: none; stroke: var(--yellow); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.booking-heading div { display: flex; flex-direction: column; }
.booking-heading small { color: rgba(255, 255, 255, .72); font-size: 12px; }
.booking-heading strong { font-size: 19px; }
.field { min-width: 0; height: 62px; padding: 9px 17px; display: flex; flex-direction: column; background: white; border-right: 1px solid var(--line); }
.field:first-of-type { border-radius: 5px 0 0 5px; }
.field span { color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .8px; text-transform: uppercase; }
.field input,
.field select { width: 100%; min-width: 0; padding: 4px 0 0; color: var(--ink); background: transparent; border: 0; outline: 0; font-size: 14px; font-weight: 650; }
.field input:focus,
.field select:focus { color: var(--blue-dark); }
.booking-submit { min-height: 62px; margin-left: 14px; white-space: nowrap; }
.booking-submit svg { width: 20px; }
.form-note { position: relative; top: -24px; min-height: 24px; margin: 0; text-align: center; color: #b42318; font-size: 13px; font-weight: 600; }

.section { padding: 118px 0; }
.section-soft { background: var(--soft); }
.section-heading h2,
.intro-copy h2,
.location-copy h2,
.price-copy h2,
.contact-copy h2 { margin: 0; color: #24333d; font-size: clamp(38px, 4.2vw, 56px); line-height: 1.08; letter-spacing: -1.9px; }
.section-heading p { color: var(--muted); }

.intro { padding-top: 170px; }
.intro-grid { display: grid; grid-template-columns: 1.04fr .96fr; gap: 85px; align-items: center; }
.intro-media { position: relative; min-height: 600px; }
.intro-main { width: calc(100% - 65px); height: 560px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.intro-small { position: absolute; right: 0; bottom: 0; width: 43%; height: 235px; object-fit: cover; border: 9px solid white; border-radius: 13px; box-shadow: 0 14px 30px rgba(12, 58, 79, .13); }
.photo-badge { position: absolute; top: 43px; right: 22px; width: 118px; height: 118px; display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--ink); background: var(--yellow); border: 7px solid white; border-radius: 50%; box-shadow: 0 15px 30px rgba(12, 58, 79, .15); text-align: center; }
.photo-badge strong { font-size: 25px; line-height: 1; }
.photo-badge span { margin-top: 4px; font-size: 11px; line-height: 1.2; }
.intro-copy .lead { margin-top: 28px; color: #4b5563; font-size: 19px; line-height: 1.7; }
.intro-copy > p:not(.lead) { color: var(--muted); }
.check-list { margin: 28px 0; padding: 0; display: grid; gap: 12px; list-style: none; }
.check-list li { display: flex; align-items: center; gap: 11px; font-weight: 650; }
.check-list li > span { width: 25px; height: 25px; display: grid; place-items: center; flex: 0 0 auto; color: var(--blue-dark); background: var(--blue-soft); border-radius: 50%; }
.check-list svg { width: 15px; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.text-link { display: inline-flex; gap: 12px; align-items: center; color: var(--blue-dark); font-weight: 750; }
.text-link span { transition: transform .2s; }
.text-link:hover span { transform: translateX(5px); }

.split-heading { margin-bottom: 46px; display: grid; grid-template-columns: 1.05fr .7fr; align-items: end; gap: 80px; }
.split-heading p { max-width: 465px; margin: 0 0 7px; font-size: 17px; }
.gallery-grid { height: 640px; display: grid; grid-template-columns: 1.45fr .75fr .75fr; grid-template-rows: 1fr 1fr; gap: 12px; }
.gallery-item { position: relative; margin: 0; padding: 0; overflow: hidden; background: #dbe7ec; border: 0; border-radius: var(--radius); cursor: zoom-in; }
.gallery-item::after { content: ""; position: absolute; inset: 0; background: rgba(12, 58, 79, .13); opacity: 0; transition: opacity .25s; }
.gallery-item:hover::after { opacity: 1; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.gallery-item:hover img { transform: scale(1.035); }
.gallery-main { grid-row: 1 / span 2; }
.gallery-more { position: absolute; z-index: 2; right: 18px; bottom: 18px; padding: 9px 13px; color: white; background: rgba(12, 58, 79, .8); border-radius: 5px; font-size: 13px; font-weight: 750; backdrop-filter: blur(5px); }

.centered { max-width: 720px; margin: 0 auto 52px; text-align: center; }
.centered .eyebrow { justify-content: center; }
.centered p { max-width: 630px; margin: 20px auto 0; }
.amenities-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.amenity-card { min-height: 230px; padding: 34px; background: white; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: transform .25s, box-shadow .25s, border-color .25s; }
.amenity-card:hover { position: relative; z-index: 1; border-color: transparent; box-shadow: var(--shadow); transform: translateY(-5px); }
.amenity-icon { width: 48px; height: 48px; display: grid; place-items: center; color: var(--blue-dark); background: var(--blue-soft); border-radius: 50%; }
.amenity-icon svg { width: 25px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.amenity-card h3 { margin: 19px 0 5px; color: #24333d; font-size: 20px; }
.amenity-card p { margin: 0; color: var(--muted); font-size: 14px; }
.amenities-foot { margin-top: 34px; display: flex; justify-content: center; align-items: center; gap: 18px; color: var(--muted); font-size: 14px; }
.amenities-foot > span { color: #24333d; font-weight: 750; }
.amenities-foot ul { margin: 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; list-style: none; }
.amenities-foot li { padding: 5px 11px; background: var(--soft); border-radius: 999px; }

.location-band { position: relative; overflow: hidden; padding: 105px 0; color: white; background: linear-gradient(120deg, #0c3a4f, #146a9f); }
.location-pattern { position: absolute; top: -160px; right: -90px; width: 690px; height: 690px; opacity: .14; border: 80px solid white; border-radius: 50%; }
.location-pattern::before,
.location-pattern::after { content: ""; position: absolute; border: 1px solid white; border-radius: 50%; }
.location-pattern::before { inset: -170px; }
.location-pattern::after { inset: 50px; }
.location-grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 110px; align-items: center; }
.location-copy h2 { color: white; }
.location-copy p { max-width: 570px; margin: 23px 0 31px; color: rgba(255, 255, 255, .75); font-size: 17px; }
.location-points { position: relative; display: grid; gap: 17px; }
.route-line { position: absolute; top: 36px; bottom: 36px; left: 27px; width: 1px; background: rgba(255, 255, 255, .22); }
.location-points article { position: relative; min-height: 88px; padding: 18px 25px 18px 74px; display: flex; flex-direction: column; justify-content: center; background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .12); border-radius: 9px; backdrop-filter: blur(5px); }
.location-points article::before { content: ""; position: absolute; z-index: 2; left: 21px; width: 13px; height: 13px; background: var(--yellow); border: 5px solid var(--blue-dark); border-radius: 50%; }
.location-points strong { color: var(--yellow); font-size: 21px; }
.location-points span { color: rgba(255, 255, 255, .76); font-size: 13px; }

.price-section { background: linear-gradient(180deg, white, #fbfcfd); }
.price-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: center; }
.price-copy > p { max-width: 520px; margin: 24px 0 30px; color: var(--muted); }
.price-card { max-width: 440px; padding: 24px 29px; color: white; background: linear-gradient(to right top, #1984c5, #146a9f); border-radius: var(--radius); box-shadow: var(--shadow); }
.price-card > span { display: block; color: rgba(255, 255, 255, .72); font-size: 13px; }
.price-card div { margin: 3px 0 1px; display: flex; align-items: baseline; gap: 8px; }
.price-card small { color: var(--yellow); font-weight: 800; }
.price-card strong { font-size: 42px; line-height: 1.1; }
.booking-details { padding: 40px 45px; background: white; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: 0 18px 55px rgba(12, 58, 79, .08); }
.booking-details h3 { margin: 0 0 8px; color: #24333d; font-size: 24px; }
.booking-details dl { margin: 0 0 26px; }
.booking-details dl > div { padding: 17px 0; display: grid; grid-template-columns: 145px 1fr; gap: 15px; border-bottom: 1px solid var(--line); }
.booking-details dt { color: var(--muted); font-size: 13px; }
.booking-details dd { margin: 0; color: #374151; font-size: 14px; }
.booking-details dd span { padding: 0 4px; color: #cbd5e1; }
.details-note { margin: -8px 0 25px; color: var(--muted); font-size: 12px; }

.contact-section { background: var(--soft); }
.contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 85px; align-items: center; }
.contact-copy > p { max-width: 500px; margin: 23px 0 30px; color: var(--muted); }
.contact-list { display: grid; gap: 10px; }
.contact-list a { max-width: 480px; padding: 13px; display: flex; align-items: center; gap: 14px; background: white; border: 1px solid transparent; border-radius: 8px; transition: border-color .2s, transform .2s; }
.contact-list a:hover { border-color: #cce7f4; transform: translateX(4px); }
.contact-list a > span { width: 43px; height: 43px; display: grid; place-items: center; flex: 0 0 auto; color: var(--blue-dark); background: var(--blue-soft); border-radius: 50%; }
.contact-list svg { width: 21px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.contact-list a div { display: flex; flex-direction: column; }
.contact-list small { color: var(--muted); font-size: 11px; }
.contact-list strong { color: #2f3d47; font-size: 15px; }
.contact-visual { position: relative; min-height: 545px; }
.contact-visual > img { width: 100%; height: 515px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.contact-card { position: absolute; right: 22px; bottom: 0; left: 22px; padding: 20px; display: grid; grid-template-columns: auto 1fr auto; gap: 15px; align-items: center; background: white; border-radius: 9px; box-shadow: 0 17px 45px rgba(12, 58, 79, .2); }
.map-pin { width: 50px; height: 50px; display: grid; place-items: center; color: var(--blue-dark); background: var(--yellow); border-radius: 50%; }
.map-pin svg { width: 24px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.contact-card div { display: flex; flex-direction: column; }
.contact-card small { color: var(--muted); font-size: 10px; font-weight: 750; letter-spacing: .8px; text-transform: uppercase; }
.contact-card strong { color: #24333d; font-size: 19px; }
.contact-card div span { color: var(--muted); font-size: 13px; }
.contact-card > a { width: 42px; height: 42px; display: grid; place-items: center; color: white; background: var(--blue-dark); border-radius: 50%; font-size: 21px; }

.final-cta { padding: 62px 0; color: white; background: linear-gradient(105deg, #1984c5, #146a9f); }
.final-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 45px; }
.final-cta span { color: rgba(255, 255, 255, .7); font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.final-cta h2 { margin: 3px 0 0; color: white; font-size: clamp(30px, 3vw, 42px); line-height: 1.1; }
.final-actions { display: flex; gap: 11px; flex: 0 0 auto; }

.site-footer { padding: 54px 0 42px; background: #fff; }
.footer-inner { display: grid; grid-template-columns: auto 1fr auto; gap: 35px; align-items: center; }
.brand-footer .brand-copy strong { font-size: 20px; }
.footer-inner nav { display: flex; justify-content: center; flex-wrap: wrap; gap: 24px; color: var(--muted); font-size: 13px; font-weight: 650; }
.footer-inner nav a:hover { color: var(--blue-dark); }
.footer-inner > p { margin: 0; color: #9ca3af; font-size: 11px; }
.mobile-actions { display: none; }

.lightbox { position: fixed; z-index: 500; inset: 0; padding: 48px 90px; display: none; align-items: center; justify-content: center; color: white; background: rgba(4, 13, 19, .95); }
.lightbox.is-open { display: flex; }
.lightbox figure { max-width: min(1120px, calc(100vw - 180px)); max-height: calc(100vh - 96px); margin: 0; display: flex; flex-direction: column; align-items: center; }
.lightbox figure img { max-width: 100%; max-height: calc(100vh - 140px); object-fit: contain; border-radius: 6px; }
.lightbox figcaption { margin-top: 12px; color: rgba(255, 255, 255, .72); font-size: 13px; }
.lightbox button { position: absolute; color: white; background: transparent; border: 0; cursor: pointer; }
.lightbox-close { top: 20px; right: 25px; width: 45px; height: 45px; font-size: 34px; font-weight: 300; }
.lightbox-arrow { top: 50%; width: 58px; height: 80px; transform: translateY(-50%); font-size: 54px; font-weight: 200; }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-count { position: absolute; top: 28px; left: 28px; color: rgba(255, 255, 255, .62); font-size: 13px; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
  .header-inner { gap: 18px; }
  .main-nav { gap: 18px; }
  .main-nav a { font-size: 14px; }
  .booking-bar { grid-template-columns: 1fr .85fr .85fr .72fr; gap: 0; }
  .booking-heading { display: none; }
  .intro-grid,
  .price-grid,
  .contact-grid { gap: 55px; }
  .intro-main { height: 510px; }
  .intro-media { min-height: 550px; }
  .gallery-grid { height: 560px; }
}

@media (max-width: 900px) {
  html { scroll-padding-top: 78px; }
  .container { width: min(calc(100% - 32px), var(--container)); }
  .header-inner { height: 74px; }
  .header-cta { margin-left: auto; }
  .menu-button {
    width: 44px;
    height: 44px;
    padding: 11px;
    display: grid;
    align-content: center;
    gap: 5px;
    order: 4;
    background: transparent;
    border: 0;
    cursor: pointer;
  }
  .menu-button > span:not(.sr-only) { width: 100%; height: 2px; display: block; background: var(--blue-deep); transition: transform .2s, opacity .2s; }
  .menu-button[aria-expanded="true"] > span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-button[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .menu-button[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .main-nav {
    position: fixed;
    z-index: 99;
    top: 74px;
    right: 0;
    left: 0;
    padding: 26px 24px 32px;
    display: grid;
    gap: 0;
    background: white;
    border-top: 1px solid var(--line);
    box-shadow: 0 24px 35px rgba(12, 58, 79, .14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity .2s, transform .2s, visibility .2s;
  }
  .main-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .main-nav a { padding: 13px 5px; border-bottom: 1px solid var(--line); font-size: 16px; }
  .main-nav a:last-child { border: 0; }
  .main-nav a::after { display: none; }

  .hero { min-height: 650px; padding-top: 94px; background-position: 58% center; }
  .hero-overlay { background: linear-gradient(90deg, rgba(7, 31, 46, .91), rgba(7, 31, 46, .52)); }
  .hero h1 { max-width: 680px; }
  .hero-facts { justify-content: flex-start; bottom: 42px; }
  .hero-facts div { padding: 0 20px; }
  .hero-facts div:first-child { padding-left: 0; border-left: 0; }
  .booking-bar { top: -28px; min-height: auto; padding: 22px; grid-template-columns: repeat(3, 1fr); }
  .booking-submit { grid-column: 1 / -1; min-height: 54px; margin: 13px 0 0; }
  .booking-wrap { height: 78px; }
  .form-note { top: -11px; }

  .section { padding: 90px 0; }
  .intro { padding-top: 100px; }
  .intro-grid { grid-template-columns: 1fr; }
  .intro-media { max-width: 690px; min-height: 540px; }
  .intro-copy { max-width: 700px; }
  .split-heading { grid-template-columns: 1fr; gap: 18px; }
  .gallery-grid { height: 680px; grid-template-columns: 1fr 1fr; grid-template-rows: 1.2fr .8fr .8fr; }
  .gallery-main { grid-column: 1 / span 2; grid-row: auto; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .location-grid { grid-template-columns: 1fr; gap: 55px; }
  .location-copy { max-width: 700px; }
  .price-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .price-copy { display: grid; grid-template-columns: 1fr .7fr; gap: 0 35px; }
  .price-copy .eyebrow,
  .price-copy h2 { grid-column: 1 / -1; }
  .price-card { align-self: end; }
  .contact-copy { max-width: 680px; }
  .contact-visual { max-width: 760px; }
  .final-cta-inner { flex-direction: column; align-items: flex-start; }
  .footer-inner { grid-template-columns: 1fr; justify-items: center; text-align: center; }
}

@media (max-width: 640px) {
  body { padding-bottom: 64px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .brand-mark { width: 33px; }
  .brand-copy strong { font-size: 19px; }
  .brand-copy small { font-size: 8px; }
  .header-cta { display: none; }
  .menu-button { margin-left: auto; }

  .hero { min-height: 720px; padding: 86px 0 155px; align-items: flex-start; background-position: 61% center; }
  .hero-overlay { background: linear-gradient(90deg, rgba(7, 31, 46, .92), rgba(7, 31, 46, .58)); }
  .hero h1 { font-size: clamp(43px, 13vw, 61px); line-height: 1.01; letter-spacing: -2px; }
  .hero-content > p { margin: 23px 0 27px; font-size: 16px; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-facts { bottom: 29px; display: grid; grid-template-columns: repeat(3, 1fr); }
  .hero-facts div { min-width: 0; padding: 0 8px; flex-direction: column; align-items: flex-start; gap: 5px; }
  .hero-facts strong { font-size: 21px; }
  .hero-facts span { font-size: 9px; }

  .booking-wrap { height: 300px; }
  .booking-bar { top: -21px; padding: 18px; grid-template-columns: 1fr 1fr; gap: 9px; }
  .field { height: 60px; border-right: 0; border-radius: 5px; }
  .field:first-of-type { border-radius: 5px; }
  .field:nth-of-type(3) { grid-column: 1 / -1; }
  .booking-submit { margin-top: 0; }
  .form-note { top: -8px; }

  .section { padding: 74px 0; }
  .intro { padding-top: 46px; }
  .intro-grid { gap: 58px; }
  .intro-media { min-height: 430px; }
  .intro-main { width: calc(100% - 30px); height: 405px; }
  .intro-small { width: 48%; height: 165px; border-width: 6px; }
  .photo-badge { top: 24px; right: 3px; width: 96px; height: 96px; border-width: 5px; }
  .photo-badge strong { font-size: 21px; }
  .section-heading h2,
  .intro-copy h2,
  .location-copy h2,
  .price-copy h2,
  .contact-copy h2 { font-size: 38px; letter-spacing: -1.2px; }
  .intro-copy .lead { font-size: 17px; }

  .split-heading { margin-bottom: 30px; }
  .gallery-grid { height: auto; display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 260px 155px 155px; gap: 8px; }
  .gallery-main { grid-column: 1 / -1; }
  .gallery-item { border-radius: 7px; }
  .gallery-more { right: 9px; bottom: 9px; padding: 7px 9px; font-size: 11px; }
  .amenities-grid { grid-template-columns: 1fr; }
  .amenity-card { min-height: auto; padding: 25px; }
  .amenities-foot { align-items: flex-start; flex-direction: column; }
  .amenities-foot ul { justify-content: flex-start; }

  .location-band { padding: 76px 0; }
  .location-grid { gap: 42px; }
  .location-points article { padding-right: 18px; }
  .price-copy { display: block; }
  .price-card { margin-top: 25px; }
  .booking-details { padding: 29px 23px; }
  .booking-details dl > div { grid-template-columns: 1fr; gap: 4px; }

  .contact-grid { gap: 55px; }
  .contact-list strong { font-size: 13px; overflow-wrap: anywhere; }
  .contact-visual { min-height: 410px; }
  .contact-visual > img { height: 390px; }
  .contact-card { right: 10px; bottom: 0; left: 10px; padding: 14px; gap: 10px; }
  .map-pin { width: 42px; height: 42px; }
  .contact-card strong { font-size: 16px; }
  .contact-card div span { font-size: 11px; }
  .contact-card > a { width: 36px; height: 36px; }

  .final-cta { padding: 50px 0; }
  .final-actions { width: 100%; display: grid; }
  .footer-inner nav { gap: 13px 20px; }

  .mobile-actions { position: fixed; z-index: 150; right: 0; bottom: 0; left: 0; height: 64px; display: grid; grid-template-columns: 1fr 1fr; background: white; border-top: 1px solid var(--line); box-shadow: 0 -10px 30px rgba(12, 58, 79, .12); }
  .mobile-actions a { display: flex; align-items: center; justify-content: center; gap: 8px; color: var(--blue-dark); font-size: 13px; font-weight: 750; }
  .mobile-actions a:last-child { color: var(--ink); background: var(--yellow); }
  .mobile-actions svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

  .lightbox { padding: 60px 12px 45px; }
  .lightbox figure { max-width: 100%; }
  .lightbox figure img { max-height: calc(100vh - 150px); }
  .lightbox-arrow { top: auto; bottom: 7px; width: 50px; height: 46px; transform: none; font-size: 39px; }
  .lightbox-prev { left: calc(50% - 60px); }
  .lightbox-next { right: calc(50% - 60px); }
  .lightbox-count { top: 25px; }
}

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