:root {
  --ink: #172026;
  --muted: #5f6f78;
  --paper: #fbfaf6;
  --white: #ffffff;
  --sand: #f0eadf;
  --sea: #0c6f8f;
  --sea-dark: #074b62;
  --coral: #d9573f;
  --line: rgba(23, 32, 38, 0.12);
  --shadow: 0 22px 70px rgba(12, 33, 45, 0.16);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.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: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--sea-dark);
  font-weight: 900;
  text-decoration: none;
  transform: translateY(-140%);
  transition: transform 0.18s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(251, 250, 246, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(18px);
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:not(.nav-cta) {
  color: var(--muted);
}

.site-nav a:hover {
  color: var(--sea-dark);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none;
}

.nav-cta,
.button-primary {
  color: var(--white);
  background: var(--sea);
}

.button-primary:hover {
  background: var(--sea-dark);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.66);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--sea-dark);
}

.hero-media,
.contact-band > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 21, 26, 0.76), rgba(10, 21, 26, 0.18) 58%, rgba(10, 21, 26, 0.08)),
    linear-gradient(0deg, rgba(10, 21, 26, 0.52), transparent 48%);
}

.hero-content {
  position: relative;
  width: min(720px, calc(100% - 36px));
  margin: 0 auto;
  padding: 160px 0 128px;
  color: var(--white);
  transform: translateX(calc((min(100vw, var(--max)) - min(720px, calc(100vw - 36px))) / -2));
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.feature-copy h2 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 680px;
  font-size: clamp(3rem, 7vw, 6.8rem);
}

.hero p:not(.eyebrow) {
  max-width: 620px;
  margin: 22px 0 0;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.quick-facts {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(var(--max), calc(100% - 36px));
  margin: -58px auto 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.quick-facts article {
  min-height: 116px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.quick-facts article:last-child {
  border-right: 0;
}

.quick-facts strong {
  display: block;
  color: var(--sea-dark);
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1;
}

.quick-facts span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}

.section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(82px, 11vw, 142px) 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(36px, 7vw, 90px);
}

.section-copy h2,
.section-heading h2,
.feature-copy h2 {
  font-size: clamp(2rem, 4vw, 4.4rem);
}

.intro-grid {
  display: grid;
  gap: 24px;
  color: var(--muted);
  font-size: 1.08rem;
}

.intro-grid p {
  margin: 0;
}

.weather-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
  padding-top: clamp(46px, 7vw, 86px);
}

.weather-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.4rem);
  line-height: 1.02;
}

.weather-copy p:not(.eyebrow) {
  max-width: 640px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.text-link {
  display: inline-flex;
  margin-top: 24px;
  color: var(--sea-dark);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.weather-widget {
  justify-self: end;
  width: 100%;
  max-width: 360px;
  padding: 26px;
  border: 1px solid rgba(7, 75, 98, 0.26);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(12, 111, 143, 0.16), rgba(217, 87, 63, 0.08)),
    #e8f0ee;
  box-shadow: 0 22px 70px rgba(7, 75, 98, 0.18);
}

.weather-widget iframe {
  display: block;
  width: 300px;
  max-width: 100%;
  height: 250px;
  margin: 0 auto;
  border: 0;
  border-radius: var(--radius);
  pointer-events: none;
}

.external-media-placeholder {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 250px;
  padding: 24px;
  border: 1px solid rgba(7, 75, 98, 0.18);
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(145deg, var(--sea-dark), var(--sea));
  text-align: center;
}

.external-media-placeholder[hidden],
[data-external-media][hidden] {
  display: none;
}

.external-media-placeholder strong {
  font-size: 1.35rem;
  line-height: 1.1;
}

.external-media-placeholder p {
  margin: 12px 0 18px;
  color: rgba(255, 255, 255, 0.82);
}

.external-media-placeholder button,
.cookie-actions button {
  min-height: 44px;
  padding: 11px 16px;
  border: 0;
  border-radius: var(--radius);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.external-media-placeholder button {
  color: var(--sea-dark);
  background: var(--white);
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  min-height: 620px;
  background: var(--white);
}

.feature-image img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.feature-copy {
  align-self: center;
  padding: clamp(40px, 6vw, 86px);
}

.feature-copy p:not(.eyebrow) {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.feature-copy .eyebrow {
  color: var(--coral);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  font-weight: 750;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.1em;
  content: "✓";
  color: var(--sea);
  font-weight: 900;
}

.section-heading {
  max-width: 740px;
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.gallery-intro {
  max-width: 760px;
  margin: -12px 0 34px;
  color: var(--muted);
  font-size: 1.08rem;
}

.gallery-stack {
  display: grid;
  gap: 42px;
}

.gallery-group {
  display: grid;
  gap: 16px;
}

.gallery-group-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.gallery-group-heading span {
  color: var(--coral);
  font-size: 1.08rem;
  font-weight: 900;
  text-transform: uppercase;
}

.gallery-group-heading h3 {
  max-width: 620px;
  margin: 0;
  color: var(--sea-dark);
  font-size: clamp(1.25rem, 2vw, 1.85rem);
  line-height: 1.15;
  text-align: right;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

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

.gallery-grid-compact {
  max-width: 760px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stay-card,
.price-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(17, 36, 44, 0.08);
}

.stay-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

@media (min-width: 901px) {
  .gallery-stack .stay-card img {
    cursor: zoom-in;
    transition: transform 0.2s ease, filter 0.2s ease;
  }

  .gallery-stack .stay-card:hover img {
    filter: saturate(1.05) contrast(1.03);
    transform: scale(1.025);
  }
}

.stay-card div {
  padding: 18px;
}

.stay-card span,
.price-card span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.stay-card h3,
.price-card h3 {
  margin: 4px 0 0;
  font-size: 1.2rem;
}

.prices {
  text-align: center;
}

.prices .section-heading {
  margin-left: auto;
  margin-right: auto;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 34px 0;
  text-align: left;
}

.price-card {
  padding: 30px;
  border: 1px solid var(--line);
}

.price-card.featured {
  color: var(--white);
  background: var(--sea-dark);
  border-color: var(--sea-dark);
}

.price-card p {
  margin: 22px 0 4px;
}

.price-card strong {
  font-size: clamp(1.65rem, 2.8vw, 2.4rem);
  line-height: 1;
}

.price-card.featured span {
  color: rgba(255, 255, 255, 0.72);
}

.contact-band {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  padding: clamp(74px, 8vw, 112px) clamp(18px, 4vw, 56px);
  isolation: isolate;
}

.contact-band::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: rgba(8, 27, 34, 0.48);
}

.contact-band > img {
  z-index: -2;
}

.contact-form-wrap {
  width: min(740px, 100%);
  margin: 0 auto;
  color: var(--white);
  text-align: center;
}

.contact-kicker {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.94);
}

.contact-form-wrap h2 {
  margin: 0 0 74px;
  font-size: clamp(3rem, 7vw, 5rem);
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

.field-full {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  font: inherit;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  line-height: 1.4;
}

.contact-form input {
  min-height: 46px;
  padding: 13px 22px;
}

.contact-form textarea {
  min-height: 120px;
  padding: 16px 22px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(12, 111, 143, 0.72);
  outline-offset: 0;
}

.contact-submit {
  grid-column: 1 / -1;
  min-height: 48px;
  border: 0;
  border-radius: 0;
  color: var(--white);
  background: #292929;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.contact-submit:hover {
  background: #111111;
}

.contact-status {
  grid-column: 1 / -1;
  min-height: 1.4em;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px clamp(18px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.72);
  background: #12232b;
}

.site-footer div {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-footer img {
  width: 44px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--white);
  font-weight: 800;
  text-underline-offset: 4px;
}

.footer-link-button {
  display: inline;
  margin: 0 0 0 10px;
  padding: 0;
  border: 0;
  color: var(--white);
  background: transparent;
  font: inherit;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}

.cookie-window {
  position: fixed;
  z-index: 80;
  inset: 0;
  display: grid;
  align-items: end;
  padding: 18px;
  background: rgba(10, 21, 26, 0.38);
}

.cookie-panel {
  width: min(760px, 100%);
  margin: 0 auto;
  padding: clamp(22px, 4vw, 34px);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow);
}

.cookie-panel h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.05;
}

.cookie-panel p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--muted);
}

.cookie-panel a {
  color: var(--sea-dark);
  font-weight: 900;
  text-underline-offset: 4px;
}

.cookie-options {
  display: grid;
  gap: 10px;
  margin: 22px 0;
}

.cookie-options label {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
}

.cookie-options input {
  width: 18px;
  height: 18px;
  accent-color: var(--sea);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-actions button {
  color: var(--white);
  background: var(--sea);
}

.cookie-actions button[data-cookie-necessary] {
  color: var(--ink);
  background: var(--sand);
}

.has-lightbox {
  overflow: hidden;
}

.image-lightbox {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 72px 32px 32px;
  background: rgba(8, 18, 22, 0.88);
  backdrop-filter: blur(10px);
}

.image-lightbox figure {
  width: min(1180px, 100%);
  max-height: calc(100vh - 120px);
  margin: 0;
  display: grid;
  gap: 12px;
}

.image-lightbox img {
  width: 100%;
  max-height: calc(100vh - 170px);
  border-radius: var(--radius);
  object-fit: contain;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

.image-lightbox figcaption {
  color: rgba(255, 255, 255, 0.84);
  font-weight: 750;
  text-align: center;
}

.image-lightbox-close {
  position: fixed;
  top: 22px;
  right: 22px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  font: inherit;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.image-lightbox-close:hover,
.image-lightbox-close:focus {
  background: rgba(255, 255, 255, 0.22);
  outline: 0;
}

.page-hero {
  min-height: 420px;
  display: grid;
  align-items: end;
  padding: 150px clamp(18px, 4vw, 56px) 72px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(9, 30, 38, 0.88), rgba(9, 30, 38, 0.38)),
    url("assets/BootamStrand.jpg") center / cover;
}

.page-hero > div {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1;
}

.page-hero p:not(.eyebrow) {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.15rem;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.36fr) minmax(0, 0.64fr);
  gap: clamp(28px, 5vw, 64px);
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(70px, 9vw, 118px) 0;
}

.legal-contact,
.legal-content article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(17, 36, 44, 0.07);
}

.legal-contact {
  position: sticky;
  top: 108px;
  align-self: start;
  padding: 28px;
}

.legal-contact h2,
.legal-contact h3,
.legal-content h2 {
  margin: 0 0 14px;
  line-height: 1.15;
}

.legal-contact h2 {
  font-size: 1.35rem;
}

.legal-contact h3 {
  margin-top: 28px;
  font-size: 1rem;
}

.legal-contact address,
.legal-contact p,
.legal-content p {
  margin: 0;
  color: var(--muted);
  font-style: normal;
}

.legal-contact a,
.legal-content a {
  color: var(--sea-dark);
  font-weight: 800;
}

.legal-content {
  display: grid;
  gap: 18px;
}

.legal-content article {
  padding: clamp(24px, 4vw, 38px);
}

.legal-content p + p {
  margin-top: 16px;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 12px;
  }

  .site-nav .nav-cta {
    margin-top: 6px;
  }

  .hero-content {
    transform: none;
  }

  .quick-facts,
  .gallery-grid,
  .price-grid,
  .intro,
  .feature-band,
  .weather-section,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .gallery-group .gallery-grid,
  .gallery-grid-compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-group-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .gallery-group-heading h3 {
    text-align: left;
  }

  .weather-widget {
    justify-self: stretch;
    max-width: none;
  }

  .legal-contact {
    position: static;
  }

  .quick-facts article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-facts article:last-child {
    border-bottom: 0;
  }

  .feature-band {
    min-height: auto;
  }

  .site-footer,
  .site-footer div {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 68px;
    padding: 10px 14px;
  }

  .brand img {
    width: 84px;
  }

  .site-nav {
    left: 14px;
    right: 14px;
  }

  .hero {
    min-height: 720px;
    align-items: end;
  }

  .hero-media {
    object-position: 38% center;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(8, 22, 28, 0.82), rgba(8, 22, 28, 0.38) 54%, rgba(8, 22, 28, 0.14)),
      linear-gradient(90deg, rgba(8, 22, 28, 0.45), transparent);
  }

  .hero-content {
    width: min(100% - 28px, var(--max));
    padding: 120px 0 94px;
  }

  .hero h1 {
    max-width: 340px;
    font-size: 2.75rem;
    line-height: 0.98;
  }

  .hero p:not(.eyebrow) {
    max-width: 330px;
    margin-top: 18px;
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .section {
    width: min(100% - 28px, var(--max));
  }

  .quick-facts {
    width: min(100% - 28px, var(--max));
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: -42px;
  }

  .quick-facts article {
    min-height: 94px;
    padding: 18px 16px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-facts article:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .quick-facts article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .quick-facts strong {
    font-size: 1.35rem;
  }

  .quick-facts span {
    font-size: 0.9rem;
  }

  .section {
    padding: 66px 0;
  }

  .intro,
  .weather-section {
    gap: 22px;
  }

  .section-copy h2,
  .section-heading h2,
  .feature-copy h2,
  .weather-copy h2 {
    font-size: 2.15rem;
    line-height: 1.05;
  }

  .intro-grid,
  .section-heading p:not(.eyebrow),
  .feature-copy p:not(.eyebrow),
  .weather-copy p:not(.eyebrow) {
    font-size: 1rem;
  }

  .weather-widget {
    padding: 16px;
  }

  .weather-widget iframe {
    width: 300px;
    height: 250px;
  }

  .cookie-window {
    align-items: end;
    padding: 12px;
  }

  .cookie-actions {
    display: grid;
  }

  .footer-link-button {
    display: block;
    margin: 8px 0 0;
  }

  .feature-image img {
    min-height: 260px;
    max-height: 320px;
  }

  .feature-copy {
    padding: 38px 18px 46px;
  }

  .gallery-grid,
  .price-grid {
    gap: 14px;
  }

  .gallery-group .gallery-grid,
  .gallery-grid-compact {
    grid-template-columns: 1fr;
  }

  .gallery-intro {
    margin-bottom: 28px;
    font-size: 1rem;
  }

  .gallery-stack {
    gap: 34px;
  }

  .price-grid {
    margin: 24px 0;
  }

  .price-card {
    padding: 22px;
  }

  .price-card strong {
    font-size: 1.65rem;
  }

  .contact-band {
    min-height: auto;
    padding: 72px 14px;
  }

  .contact-form-wrap {
    padding: 0;
  }

  .contact-form-wrap h2 {
    margin-bottom: 42px;
    font-size: 2.7rem;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-submit {
    min-height: 52px;
  }

  .page-hero {
    min-height: 360px;
    padding: 122px 14px 56px;
  }

  .page-hero h1 {
    font-size: 2.75rem;
  }

  .page-hero p:not(.eyebrow) {
    font-size: 1rem;
  }

  .legal-layout {
    width: min(100% - 28px, var(--max));
    padding: 58px 0;
  }

  .legal-contact,
  .legal-content article {
    padding: 22px;
  }

  .site-footer {
    gap: 14px;
  }
}
