:root {
  --background: #f7fbfd;
  --foreground: #082f49;
  --card: #ffffff;
  --card-foreground: #082f49;
  --popover: #ffffff;
  --popover-foreground: #082f49;
  --primary: #0369a1;
  --primary-foreground: #ffffff;
  --secondary: #e0f2fe;
  --secondary-foreground: #0c4a6e;
  --muted: #eaf5fa;
  --muted-foreground: #526b7a;
  --accent: #fb923c;
  --accent-foreground: #082f49;
  --destructive: #dc2626;
  --border: #cde7f2;
  --input: #bddbe8;
  --ring: #38bdf8;
  --radius: 0.9rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: "Aptos", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.button:hover { transform: translateY(-1px); }
.button:focus-visible, a:focus-visible, input:focus-visible, textarea:focus-visible { outline: 3px solid rgb(56 189 248 / 45%); outline-offset: 3px; }
.button:disabled { cursor: wait; opacity: .7; transform: none; }
.icon { width: 1.15em; height: 1.15em; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex: 0 0 auto; }

.section-shell { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.site-header {
  position: absolute;
  z-index: 20;
  inset: 0 0 auto;
  height: 88px;
  padding: 0 max(24px, calc((100vw - 1180px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  border-bottom: 1px solid rgb(255 255 255 / 22%);
}
.brand { display: inline-flex; align-items: center; gap: 11px; line-height: 1; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgb(255 255 255 / 65%);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 23px;
  font-style: italic;
}
.brand b { display: block; font-size: 15px; letter-spacing: .22em; }
.brand small { display: block; margin-top: 5px; font-size: 11px; letter-spacing: .11em; opacity: .76; }
.site-header nav { display: flex; gap: 30px; font-size: 14px; font-weight: 650; }
.site-header nav a { opacity: .85; transition: opacity .2s ease; }
.site-header nav a:hover { opacity: 1; }
.header-cta { height: 42px; padding-inline: 20px; border-radius: 999px; background: white; color: #075985; font-weight: 750; }
.header-cta:hover { background: #e0f2fe; color: #075985; }

.hero {
  min-height: 790px;
  height: 92vh;
  max-height: 980px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #0c4a6e;
  color: white;
}
.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgb(3 20 34 / 88%) 0%, rgb(3 26 43 / 58%) 48%, rgb(3 26 43 / 15%) 74%),
    linear-gradient(0deg, rgb(2 18 31 / 60%) 0%, transparent 45%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto 58px;
}
.eyebrow {
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #bae6fd;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow.dark { color: #0369a1; }
.eyebrow.light { color: #7dd3fc; }
.hero h1 {
  max-width: 780px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(55px, 8vw, 105px);
  font-weight: 400;
  line-height: .95;
  letter-spacing: -.045em;
}
.hero-copy { max-width: 650px; margin: 24px 0 30px; color: rgb(255 255 255 / 88%); font-size: clamp(18px, 2vw, 22px); line-height: 1.5; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.primary-action, .submit-button {
  height: 54px;
  padding-inline: 25px;
  border-radius: 999px;
  background: #f97316;
  color: #fff;
  font-weight: 800;
  box-shadow: 0 12px 35px rgb(249 115 22 / 25%);
}
.primary-action:hover, .submit-button:hover { background: #ea580c; color: #fff; }
.ghost-action { height: 54px; padding-inline: 24px; border-color: rgb(255 255 255 / 52%); border-radius: 999px; background: rgb(255 255 255 / 9%); color: white; backdrop-filter: blur(9px); font-weight: 750; }
.ghost-action:hover { background: white; color: #075985; }
.hero-facts {
  width: min(720px, 100%);
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgb(255 255 255 / 28%);
  padding-top: 22px;
}
.hero-facts span {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 9px;
  padding-right: 24px;
}
.hero-facts svg { grid-row: 1 / 3; color: #7dd3fc; }
.hero-facts b { font-size: 15px; }
.hero-facts small { color: rgb(255 255 255 / 64%); font-size: 12px; }
.scroll-cue {
  position: absolute;
  z-index: 2;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 58px;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgb(255 255 255 / 44%);
  border-radius: 50%;
  color: white;
}

.intro { padding-block: 110px 86px; }
.section-heading { max-width: 680px; }
.section-heading h2, .amenities-copy h2, .location-copy h2, .contact-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.07;
  letter-spacing: -.035em;
}
.intro-copy {
  margin: 45px 0 58px auto;
  max-width: 760px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  color: #425e6e;
  font-size: 17px;
}
.intro-copy p { margin: 0; }
.stat-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid #bddbe8;
  border-bottom: 1px solid #bddbe8;
}
.stat-strip span { padding: 27px 22px; border-right: 1px solid #bddbe8; }
.stat-strip span:last-child { border-right: 0; }
.stat-strip b { display: block; color: #075985; font-family: Georgia, serif; font-size: 30px; font-weight: 400; }
.stat-strip small { color: #526b7a; font-size: 13px; }

.gallery-section { padding-block: 70px 120px; }
.section-heading.split { max-width: none; display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 45px; }
.section-heading.split > p { max-width: 340px; margin: 0 0 8px; color: #526b7a; text-align: right; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 290px; gap: 14px; }
.gallery-grid figure { margin: 0; overflow: hidden; border-radius: 6px; background: #d9edf5; }
.gallery-grid figure.gallery-wide { grid-column: span 2; grid-row: span 2; }
.gallery-grid figure.gallery-tall { grid-row: span 2; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s cubic-bezier(.2,.7,.2,1); }
.gallery-grid figure:hover img { transform: scale(1.025); }

.video-section { padding-block: 110px; background: #eef8fc; }
.video-grid { display: grid; grid-template-columns: 1fr minmax(300px, 430px); gap: 90px; align-items: center; }
.video-copy { max-width: 650px; }
.video-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.07;
  letter-spacing: -.035em;
}
.video-copy > p:not(.eyebrow) { margin: 28px 0; color: #526b7a; font-size: 17px; }
.video-link { height: 48px; padding-inline: 20px; border-color: #8fc5da; border-radius: 999px; color: #075985; font-weight: 750; }
.video-link svg { width: 16px; }
.video-frame { overflow: hidden; aspect-ratio: 9 / 16; border-radius: 24px; background: #082f49; box-shadow: 0 30px 70px rgb(8 47 73 / 22%); }
.video-frame iframe { width: 100%; height: 100%; border: 0; }
.extra-gallery-wrap { margin-top: 90px; }
.extra-gallery-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 28px; }
.extra-gallery-heading h3 { margin: 4px 0 0; color: #082f49; font-family: Georgia, "Times New Roman", serif; font-size: clamp(32px, 4vw, 48px); font-weight: 400; }
.extra-gallery-heading > p { max-width: 410px; margin: 0 0 5px; color: #526b7a; text-align: right; }
.extra-gallery-slider { position: relative; width: min(100%, 820px); margin-inline: auto; overflow: hidden; border-radius: 16px; background: #06283c; box-shadow: 0 24px 65px rgb(8 47 73 / 15%); outline: none; }
.extra-gallery-slider:focus-visible { box-shadow: 0 0 0 4px #7dd3fc, 0 24px 65px rgb(8 47 73 / 15%); }
.extra-gallery-viewport { overflow: hidden; }
.extra-gallery-track { display: flex; transition: transform .5s cubic-bezier(.2,.75,.25,1); }
.extra-gallery-slide { flex: 0 0 100%; margin: 0; }
.photo-open { position: relative; display: block; width: 100%; aspect-ratio: 16 / 9; padding: 0; border: 0; color: white; background: #06283c; cursor: zoom-in; }
.photo-open img { width: 100%; height: 100%; object-fit: contain; }
.photo-open span { position: absolute; right: 0; bottom: 0; left: 0; padding: 52px 75px 20px 24px; background: linear-gradient(transparent, rgb(2 18 31 / 85%)); text-align: left; font-size: 14px; font-weight: 700; }
.extra-gallery-control { position: absolute; z-index: 2; top: 50%; width: 44px; height: 44px; padding: 0 0 4px; border: 1px solid rgb(255 255 255 / 35%); border-radius: 50%; color: white; background: rgb(3 22 34 / 72%); font-size: 31px; line-height: 1; cursor: pointer; transform: translateY(-50%); }
.extra-gallery-control:hover { background: #0284c7; }
.extra-gallery-prev { left: 14px; }
.extra-gallery-next { right: 14px; }
.extra-gallery-count { position: absolute; z-index: 2; right: 20px; bottom: 15px; margin: 0; color: rgb(255 255 255 / 78%); font-size: 13px; font-variant-numeric: tabular-nums; }
.extra-gallery-count b { color: white; }
.photo-lightbox { width: min(94vw, 1180px); max-width: none; padding: 0; border: 0; border-radius: 14px; overflow: visible; color: white; background: #031622; box-shadow: 0 30px 100px rgb(0 0 0 / 55%); }
.photo-lightbox::backdrop { background: rgb(0 12 20 / 88%); backdrop-filter: blur(5px); }
.photo-lightbox figure { margin: 0; }
.photo-lightbox img { display: block; width: 100%; height: min(80vh, 820px); object-fit: contain; }
.photo-lightbox figcaption { padding: 14px 70px 17px; text-align: center; font-size: 14px; }
.lightbox-close { position: absolute; z-index: 3; top: -18px; right: -18px; width: 44px; height: 44px; padding: 0; border: 1px solid rgb(255 255 255 / 30%); border-radius: 50%; color: white; background: #075985; font-size: 28px; cursor: pointer; }
.lightbox-control { position: absolute; z-index: 2; top: 50%; width: 48px; height: 48px; border: 1px solid rgb(255 255 255 / 28%); border-radius: 50%; color: white; background: rgb(3 22 34 / 72%); font-size: 34px; cursor: pointer; transform: translateY(-50%); }
.lightbox-prev { left: 18px; }
.lightbox-next { right: 18px; }

.amenities-section {
  position: relative;
  overflow: hidden;
  padding-block: 105px;
  color: white;
  background:
    radial-gradient(circle at 85% 15%, rgb(56 189 248 / 22%), transparent 30%),
    linear-gradient(135deg, #082f49, #075985 72%, #0369a1);
}
.amenities-section::after {
  content: "";
  position: absolute;
  right: -100px;
  top: -140px;
  width: 420px;
  height: 420px;
  border: 1px solid rgb(255 255 255 / 13%);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgb(255 255 255 / 3%), 0 0 0 140px rgb(255 255 255 / 3%);
}
.amenities-wrap { position: relative; z-index: 1; }
.amenities-copy { display: grid; grid-template-columns: .75fr 1.1fr 1fr; gap: 50px; align-items: end; }
.amenities-copy .eyebrow { align-self: start; }
.amenities-copy p:last-child { margin: 0 0 6px; color: rgb(255 255 255 / 67%); font-size: 17px; }
.amenities-grid { margin-top: 72px; display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid rgb(255 255 255 / 18%); }
.amenity { min-height: 145px; padding: 28px; display: flex; flex-direction: column; justify-content: space-between; border-right: 1px solid rgb(255 255 255 / 18%); border-bottom: 1px solid rgb(255 255 255 / 18%); }
.amenity:nth-child(4n) { border-right: 0; }
.amenity:nth-child(n+5) { border-bottom: 0; }
.amenity svg { color: #7dd3fc; width: 27px; height: 27px; }
.amenity span { color: #7dd3fc; font-size: 27px; line-height: 1; }
.amenity strong { font-size: 15px; font-weight: 700; }
.service-line { margin-top: 27px; display: flex; flex-wrap: wrap; gap: 12px 26px; color: rgb(255 255 255 / 72%); font-size: 13px; }
.service-line span { display: inline-flex; align-items: center; gap: 6px; }
.service-line svg { width: 15px; color: #7dd3fc; }

.location-section { padding-block: 120px; }
.location-card {
  min-height: 570px;
  display: grid;
  grid-template-columns: 1fr .9fr;
  overflow: hidden;
  border: 1px solid #cde7f2;
  border-radius: 24px;
  background: white;
  box-shadow: 0 30px 80px rgb(8 47 73 / 9%);
}
.location-copy { padding: 70px; }
.location-copy > p:not(.eyebrow) { margin: 30px 0; color: #526b7a; font-size: 17px; }
.location-copy ul { margin: 0 0 27px; padding: 0; list-style: none; display: grid; gap: 13px; }
.location-copy li { display: flex; align-items: center; gap: 11px; font-weight: 700; }
.location-copy li svg { width: 20px; color: #0284c7; }
.location-copy > small { color: #718694; }
.location-visual {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  background:
    linear-gradient(135deg, rgb(255 255 255 / 12%), transparent),
    repeating-linear-gradient(35deg, transparent 0 35px, rgb(255 255 255 / 7%) 36px 38px),
    #0ea5e9;
}
.location-visual::before {
  content: "";
  position: absolute;
  left: -16%;
  right: -16%;
  top: 56%;
  height: 210px;
  border-radius: 50% 50% 0 0;
  background: #075985;
  transform: rotate(-7deg);
}
.lake-ring { position: absolute; border: 1px solid rgb(255 255 255 / 38%); border-radius: 50%; }
.ring-one { width: 360px; height: 360px; right: -60px; top: -35px; }
.ring-two { width: 220px; height: 220px; right: 10px; top: 35px; }
.map-pin {
  position: absolute;
  top: 31%;
  left: 28%;
  display: grid;
  grid-template-columns: auto;
  color: white;
  filter: drop-shadow(0 5px 16px rgb(8 47 73 / 25%));
}
.map-pin svg { grid-row: 1 / 3; width: 27px; height: 27px; }
.map-pin b { font-size: 18px; line-height: 1.1; }
.map-pin small { opacity: .8; }
.lake-label { position: absolute; z-index: 2; left: 50%; bottom: 18%; display: flex; align-items: center; gap: 8px; color: white; font-weight: 800; transform: translateX(-50%); white-space: nowrap; }

.contact-section {
  padding-block: 110px;
  color: white;
  background:
    radial-gradient(circle at 0 100%, rgb(14 165 233 / 24%), transparent 35%),
    #051f31;
}
.contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 95px; align-items: start; }
.contact-copy > p:not(.eyebrow) { max-width: 500px; margin: 30px 0; color: rgb(255 255 255 / 67%); font-size: 17px; }
.contact-note { max-width: 420px; margin-top: 50px; padding-top: 24px; display: flex; gap: 16px; border-top: 1px solid rgb(255 255 255 / 17%); }
.contact-note svg { color: #7dd3fc; }
.contact-note b, .contact-note small { display: block; }
.contact-note small { margin-top: 3px; color: rgb(255 255 255 / 56%); }
.contact-form { padding: 38px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; border: 1px solid rgb(255 255 255 / 16%); border-radius: 20px; background: rgb(255 255 255 / 7%); backdrop-filter: blur(10px); }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { color: rgb(255 255 255 / 78%); font-size: 14px; font-weight: 650; }
.field input, .field textarea {
  width: 100%;
  padding: 10px 13px;
  border: 1px solid;
  border-radius: 9px;
  min-height: 48px;
  border-color: rgb(255 255 255 / 22%);
  background: rgb(255 255 255 / 9%);
  color: white;
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus-visible, .field textarea:focus-visible { border-color: #7dd3fc; box-shadow: 0 0 0 3px rgb(56 189 248 / 20%); }
.field input::-webkit-calendar-picker-indicator { filter: invert(1); }
.field textarea::placeholder { color: rgb(255 255 255 / 38%); }
.submit-button { grid-column: 1 / -1; width: 100%; margin-top: 5px; }
.form-status { grid-column: 1 / -1; min-height: 24px; margin: -4px 0 0; color: #bae6fd; text-align: center; font-size: 14px; }
.form-status.error { color: #fecaca; }
.honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

footer {
  min-height: 130px;
  padding: 25px max(24px, calc((100vw - 1180px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  background: #031622;
  color: rgb(255 255 255 / 58%);
  font-size: 13px;
}
.footer-brand { color: white; }
.footer-copy { text-align: center; }
.footer-copy p { margin: 0; }
.footer-copy small { display: block; margin-top: 5px; color: rgb(255 255 255 / 38%); }
.footer-copy small a { color: rgb(255 255 255 / 62%); transition: color .2s ease; }
.footer-copy small a:hover { color: #7dd3fc; }
.footer-contact { color: #7dd3fc; font-weight: 750; }

@media (max-width: 900px) {
  .site-header nav { display: none; }
  .hero { min-height: 760px; height: 100svh; }
  .hero-content { margin-bottom: 36px; }
  .hero-facts { grid-template-columns: 1fr; gap: 14px; margin-top: 30px; }
  .hero-facts span { grid-template-columns: 1fr; }
  .scroll-cue { display: none; }
  .intro-copy, .amenities-copy, .contact-grid { grid-template-columns: 1fr; }
  .intro-copy { margin-left: 0; }
  .stat-strip { grid-template-columns: repeat(3, 1fr); }
  .stat-strip span:nth-child(3) { border-right: 0; }
  .stat-strip span:nth-child(n+4) { border-top: 1px solid #bddbe8; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid figure.gallery-wide { grid-column: span 2; }
  .gallery-grid figure.gallery-tall { grid-row: span 1; }
  .video-grid { grid-template-columns: 1fr minmax(280px, 390px); gap: 50px; }
  .amenities-copy { gap: 20px; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .amenity:nth-child(2n) { border-right: 0; }
  .amenity:nth-child(n+5) { border-bottom: 1px solid rgb(255 255 255 / 18%); }
  .amenity:nth-child(n+7) { border-bottom: 0; }
  .location-card { grid-template-columns: 1fr; }
  .location-copy { padding: 55px; }
  .contact-grid { gap: 55px; }
}

@media (max-width: 600px) {
  .section-shell, .hero-content { width: min(100% - 32px, 1180px); }
  .site-header { height: 76px; padding-inline: 16px; }
  .brand-mark { width: 34px; height: 34px; }
  .header-cta { height: 38px; padding-inline: 14px; font-size: 13px; }
  .hero { min-height: 760px; }
  .hero > img { object-position: 63% center; }
  .hero-overlay { background: linear-gradient(0deg, rgb(2 18 31 / 89%) 0%, rgb(3 26 43 / 48%) 75%); }
  .hero h1 { max-width: 440px; font-size: clamp(52px, 17vw, 78px); }
  .hero-copy { margin-block: 18px 23px; font-size: 17px; }
  .hero-actions { display: grid; }
  .hero-actions > * { width: 100%; }
  .hero-facts span:nth-child(n+3) { display: none; }
  .intro { padding-block: 80px 55px; }
  .intro-copy { margin-block: 30px 40px; grid-template-columns: 1fr; gap: 18px; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .stat-strip span { padding: 19px 14px; border-top: 1px solid #bddbe8; }
  .stat-strip span:first-child, .stat-strip span:nth-child(2) { border-top: 0; }
  .stat-strip span:nth-child(2n) { border-right: 0; }
  .stat-strip span:nth-child(3) { border-right: 1px solid #bddbe8; }
  .gallery-section { padding-block: 45px 80px; }
  .section-heading.split { align-items: start; flex-direction: column; gap: 12px; margin-bottom: 30px; }
  .section-heading.split > p { text-align: left; }
  .gallery-grid { grid-auto-rows: 210px; gap: 8px; }
  .gallery-grid figure.gallery-wide { grid-column: span 2; grid-row: span 1; }
  .video-section { padding-block: 80px; }
  .video-grid { grid-template-columns: 1fr; gap: 42px; }
  .video-frame { width: min(100%, 390px); margin-inline: auto; }
  .extra-gallery-wrap { margin-top: 65px; }
  .extra-gallery-heading { align-items: start; flex-direction: column; gap: 12px; }
  .extra-gallery-heading > p { text-align: left; }
  .extra-gallery-slider { border-radius: 10px; }
  .photo-open { aspect-ratio: 4 / 3; }
  .photo-open span { padding: 45px 58px 15px 16px; font-size: 13px; }
  .extra-gallery-control { width: 38px; height: 38px; font-size: 27px; }
  .extra-gallery-prev { left: 8px; }
  .extra-gallery-next { right: 8px; }
  .extra-gallery-count { right: 13px; bottom: 11px; }
  .photo-lightbox { width: 96vw; border-radius: 8px; }
  .photo-lightbox img { height: 76vh; }
  .photo-lightbox figcaption { padding-inline: 55px; }
  .lightbox-close { top: 8px; right: 8px; }
  .lightbox-control { width: 40px; height: 40px; font-size: 28px; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .amenities-section { padding-block: 80px; }
  .amenities-grid { margin-top: 45px; }
  .amenity { min-height: 120px; padding: 20px 16px; }
  .location-section { padding-block: 80px; }
  .location-copy { padding: 35px 25px; }
  .location-visual { min-height: 340px; }
  .contact-section { padding-block: 80px; }
  .contact-form { padding: 24px 18px; grid-template-columns: 1fr; }
  .field, .field.full { grid-column: 1; }
  footer { padding-block: 35px; flex-direction: column; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .gallery-grid img, .extra-gallery-track { transition: none; }
}
