:root {
  --bg: #f7f9fa;
  --surface: #ffffff;
  --surface-alt: #eaeff2;
  --text: #15202a;
  --text-muted: #4c5c68;
  --border: rgba(21, 32, 42, 0.12);
  --accent: #2b6a8f;
  --accent-2: #93714a;
  --secondary: #1f3242;
  --on-accent: #ffffff;
  --deep: #122029;
  --radius: 14px;
  --radius-btn: 2px;
  --font-heading: Optima, Candara, "Segoe UI", sans-serif;
  --font-body: Georgia, serif;
  --max: 1400px;
  --section-pad: 136px;
  --header-h: 120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.8;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--secondary);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 300;
  letter-spacing: -1.4px;
  line-height: 1.15;
  color: var(--text);
}

h1 {
  font-size: clamp(46px, 8vw, 90px);
  line-height: 1.0;
}

h2 {
  font-size: clamp(30px, 5.2vw, 52px);
}

h3 {
  font-size: clamp(22px, 3vw, 32px);
}

p {
  margin-bottom: 1.1em;
}

p:last-child {
  margin-bottom: 0;
}

.kicker {
  display: block;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 1rem;
}

.wrap {
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
}

.wrap--narrow {
  width: min(100% - 48px, 820px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--on-accent);
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: var(--radius-btn);
  padding: 0.9rem 1.6rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--on-accent);
}

.btn--ghost {
  background: transparent;
  color: var(--accent);
  border-color: var(--border);
}

.btn--ghost:hover {
  background: var(--surface-alt);
  color: var(--secondary);
  border-color: var(--secondary);
}

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--accent);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.btn-text:hover {
  color: var(--secondary);
}

.btn-text::after {
  content: "→";
  font-size: 1.1em;
}

.site-header {
  position: relative;
  z-index: 100;
  background: transparent;
  padding: 28px 0 0;
}

.site-header__inner {
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
}

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-decoration: none;
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding-bottom: 20px;
}

.brand img {
  width: 44px;
  height: 46px;
  object-fit: contain;
}

.brand__name {
  letter-spacing: 0.22em;
}

.nav-rule {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 0;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 18px 0 22px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 28px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-muted);
  padding: 4px 0;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a[aria-current="page"] {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.nav-toggle {
  display: none;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  background: var(--surface);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--text);
}

.hero-offset {
  position: relative;
  min-height: 78vh;
  display: grid;
  grid-template-columns: 1fr;
  margin-bottom: 0;
}

.hero-offset__media {
  grid-column: 1;
  grid-row: 1;
  width: 66.666%;
  margin-left: auto;
  min-height: 78vh;
}

.hero-offset__media img {
  width: 100%;
  height: 100%;
  min-height: 78vh;
  object-fit: cover;
}

.hero-offset__panel {
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  width: min(560px, calc(100% - 48px));
  margin-left: max(24px, calc((100% - var(--max)) / 2 + 24px));
  background: var(--surface);
  padding: clamp(40px, 6vw, 72px) clamp(28px, 4vw, 56px);
  position: relative;
  z-index: 2;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.hero-offset__panel .independence {
  margin-top: 1.75rem;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 36em;
}

.section {
  padding: var(--section-pad) 0;
}

.section--alt {
  background: var(--surface-alt);
}

.section__lead {
  max-width: 40em;
  color: var(--text-muted);
  margin-bottom: 3rem;
}

.page-title {
  padding: 72px 0 48px;
}

.page-title h1 {
  margin-bottom: 1rem;
}

.page-title p {
  max-width: 40em;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.cat-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 420px;
  border-top: 1px solid var(--border);
}

.cat-band:last-child {
  border-bottom: 1px solid var(--border);
}

.cat-band__media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.cat-band__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 6vw, 80px);
  background: var(--surface);
}

.cat-band--flip .cat-band__media {
  order: 2;
}

.cat-band--flip .cat-band__body {
  order: 1;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split__media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.quote-led {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}

.quote-led__pull {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 300;
  letter-spacing: -1.2px;
  line-height: 1.25;
  color: var(--accent);
  margin-bottom: 2.5rem;
}

.quote-led__body {
  max-width: 38em;
  margin-inline: auto;
  color: var(--text-muted);
  text-align: left;
}

.closing-cta {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: start;
}

.closing-cta__panel {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  background: var(--surface);
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
}

.testimonials {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.testimonials__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 28px 24px;
  background: var(--surface);
}

.testimonial p {
  color: var(--text);
  margin-bottom: 1rem;
}

.testimonial cite {
  font-family: var(--font-heading);
  font-style: normal;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 2.5rem;
}

.amenity-tile {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  background: var(--surface);
}

.amenity-tile h3 {
  font-size: 18px;
  letter-spacing: -0.5px;
  margin-bottom: 0.6rem;
}

.amenity-tile p {
  font-size: 15px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.65;
}

.shore-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}

.shore-row {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}

.shore-row__thumb {
  width: 120px;
  height: 120px;
  border-radius: var(--radius);
  overflow: hidden;
}

.shore-row__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shore-row__body {
  text-align: center;
}

.shore-row__body .kicker {
  margin-bottom: 0.5rem;
}

.shore-row__body h2 {
  font-size: clamp(22px, 3vw, 32px);
  margin-bottom: 0.35rem;
}

.shore-row__body p {
  color: var(--text-muted);
  margin: 0 auto;
  max-width: 36em;
  font-size: 16px;
}

.shore-row__meta {
  display: block;
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 0.65rem;
}

.editor-band {
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}

.editor-band:first-of-type {
  border-top: 1px solid var(--border);
}

.editor-band__media img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 36px;
}

.editor-band__body {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
}

.editor-band__body h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  margin-bottom: 0.75rem;
}

.accent-rule {
  width: 64px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto 1.25rem;
  border: 0;
}

.editor-band__body p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.editor-band__meta {
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 0.75rem;
}

.premier-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 32px;
}

.premier-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
}

.premier-card__media img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: var(--radius);
}

.premier-card__body {
  padding: 28px 8px 8px;
}

.premier-card__body h2 {
  font-size: clamp(22px, 2.5vw, 30px);
  margin-bottom: 0.75rem;
}

.premier-card .accent-rule {
  margin: 0 0 1rem;
}

.premier-card__body p {
  color: var(--text-muted);
  margin-bottom: 0;
  font-size: 16px;
}

.premier-card__meta {
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 0.5rem;
}

.premier-card > .btn-text {
  margin: 1.25rem 8px 8px;
  align-self: flex-start;
}

.premier-card--flip .premier-card__body {
  padding-top: 8px;
  padding-bottom: 16px;
}

.premier-card--flip .premier-card__media {
  margin-top: 8px;
}

.catalog-close {
  margin-top: 72px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
  max-width: 40em;
  color: var(--text-muted);
}

.editorial-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}

.editorial-band:first-of-type {
  border-top: 1px solid var(--border);
}

.editorial-band--flip .editorial-band__copy {
  order: 2;
}

.editorial-band--flip .editorial-band__media {
  order: 1;
}

.editorial-band__media img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
}

.editorial-band h2 {
  margin-bottom: 1.5rem;
}

.editorial-band p {
  color: var(--text-muted);
}

.contact-intro {
  max-width: 36em;
  margin: 0 auto 40px;
  text-align: center;
  color: var(--text-muted);
}

.contact-panel {
  max-width: 560px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  padding: clamp(32px, 5vw, 48px);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
  color: var(--secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  padding: 0.75rem 0.9rem;
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

.agree-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 1.5rem 0;
}

.agree-row input {
  margin-top: 5px;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.agree-row label {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-muted);
}

.form-error {
  display: none;
  font-size: 14px;
  color: #8b2e2e;
  margin-top: 0.4rem;
}

.form-error.is-visible {
  display: block;
}

.contact-email-line {
  text-align: center;
  margin-top: 36px;
  color: var(--text-muted);
}

.contact-email-line a {
  font-family: var(--font-heading);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 300;
  letter-spacing: -0.5px;
  text-decoration: none;
  color: var(--accent);
}

.confirm-panel {
  text-align: center;
}

.confirm-panel h2 {
  font-size: clamp(26px, 4vw, 36px);
  margin-bottom: 1rem;
}

.confirm-panel p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.confirm-panel .ref {
  font-family: var(--font-heading);
  font-size: 18px;
  letter-spacing: 0.12em;
  color: var(--secondary);
  margin: 1.5rem 0;
}

.page-pad {
  padding-bottom: var(--section-pad);
}

.legal-body {
  padding-bottom: var(--section-pad);
}

.legal-body .page-title {
  padding-left: 0;
  padding-right: 0;
}

.legal-body h1 {
  font-size: clamp(36px, 6vw, 64px);
  margin-bottom: 0.75rem;
}

.legal-body > p:first-of-type {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.legal-body h2 {
  font-size: clamp(22px, 3vw, 30px);
  margin: 2.5rem 0 1rem;
}

.legal-body h3 {
  font-size: 20px;
  margin: 1.75rem 0 0.75rem;
}

.legal-body p,
.legal-body li {
  color: var(--text-muted);
}

.legal-body ul {
  margin: 0 0 1.25rem 1.25rem;
}

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.sitemap-group h2 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 1.25rem;
}

.sitemap-group ul {
  list-style: none;
}

.sitemap-group li {
  margin-bottom: 0.65rem;
}

.sitemap-group a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 16px;
}

.sitemap-group a:hover {
  color: var(--accent);
}

.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 72px 0 0;
  margin-top: 0;
}

.site-footer__inner {
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
  text-align: center;
}

.site-footer .independence {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 48em;
  margin: 0 auto 40px;
}

.site-footer .brand {
  padding-bottom: 24px;
}

.footer-blurb {
  max-width: 36em;
  margin: 0 auto 36px;
  color: var(--text-muted);
  font-size: 16px;
}

.footer-about {
  max-width: 36em;
  margin: 0 auto 40px;
  color: var(--text-muted);
  font-size: 15px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 0;
  list-style: none;
  margin-bottom: 40px;
  max-width: 900px;
  margin-inline: auto;
}

.footer-links li {
  display: inline-flex;
  align-items: center;
}

.footer-links li:not(:last-child)::after {
  content: "·";
  margin: 0 12px;
  color: var(--text-muted);
}

.footer-links a {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-email {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 300;
  letter-spacing: -0.6px;
  text-decoration: none;
  color: var(--accent);
  margin-bottom: 48px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
}

.footer-bottom__right {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  align-items: center;
}

.footer-bottom a,
.footer-bottom button {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.footer-bottom a:hover,
.footer-bottom button:hover {
  color: var(--accent);
}

.consent {
  position: fixed;
  z-index: 1000;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  pointer-events: none;
}

.consent__sheet {
  pointer-events: auto;
  background: rgba(247, 249, 250, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  border-radius: var(--radius) var(--radius) 0 0;
  padding: 24px 22px 20px;
  max-width: 100%;
  color: var(--text);
}

.consent__copy {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.consent__actions .btn {
  flex: 1 1 auto;
  min-width: 140px;
}

.consent__manage,
.consent__back {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  background: none;
  border: none;
  color: var(--accent);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 8px 4px;
}

.consent__policy {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  color: var(--text-muted);
}

.consent__cats {
  display: none;
}

.consent__cats.is-open {
  display: block;
}

.consent__main.is-hidden {
  display: none;
}

.consent__cat {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.consent__cat:last-of-type {
  border-bottom: none;
  margin-bottom: 12px;
}

.consent__cat h3 {
  font-size: 15px;
  letter-spacing: -0.3px;
  margin-bottom: 0.25rem;
}

.consent__cat p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

.consent__toggle {
  position: relative;
  width: 44px;
  height: 26px;
  flex-shrink: 0;
}

.consent__toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.consent__toggle span {
  position: absolute;
  inset: 0;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s;
}

.consent__toggle span::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: var(--text-muted);
  border-radius: 2px;
  transition: transform 0.2s, background 0.2s;
}

.consent__toggle input:checked + span {
  background: var(--accent);
  border-color: var(--accent);
}

.consent__toggle input:checked + span::after {
  transform: translateX(16px);
  background: var(--on-accent);
}

.consent__toggle input:disabled + span {
  opacity: 0.7;
  cursor: not-allowed;
  background: var(--secondary);
  border-color: var(--secondary);
}

.consent__toggle input:disabled + span::after {
  background: var(--on-accent);
}

.consent__save-row {
  margin-top: 8px;
}

@media (min-width: 900px) {
  .consent {
    left: auto;
    right: 24px;
    bottom: 24px;
    padding: 0;
    width: 400px;
  }

  .consent__sheet {
    border-radius: var(--radius);
  }
}

@media (max-width: 1024px) {
  .amenity-grid {
    grid-template-columns: 1fr 1fr;
  }

  .premier-grid {
    gap: 40px 24px;
  }

  .split {
    gap: 40px;
  }
}

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

  .nav-row {
    justify-content: flex-end;
    min-height: 56px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 12px 0;
    z-index: 200;
  }

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

  .nav-links li {
    border-bottom: 1px solid var(--border);
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-links a {
    display: block;
    padding: 14px 20px;
    letter-spacing: 0.12em;
  }

  .hero-offset {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  .hero-offset__media {
    width: 100%;
    margin: 0;
    min-height: 0;
    order: 1;
  }

  .hero-offset__media img {
    min-height: 280px;
    max-height: 48vh;
  }

  .hero-offset__panel {
    width: 100%;
    margin: 0;
    border-radius: 0;
    border-left: none;
    border-right: none;
    order: 2;
  }

  .cat-band {
    grid-template-columns: 1fr;
  }

  .cat-band--flip .cat-band__media,
  .cat-band--flip .cat-band__body {
    order: unset;
  }

  .cat-band__media {
    order: 1;
  }

  .cat-band__body {
    order: 2;
  }

  .cat-band__media img {
    min-height: 260px;
  }

  .split,
  .closing-cta,
  .testimonials,
  .editorial-band {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .editorial-band--flip .editorial-band__copy,
  .editorial-band--flip .editorial-band__media {
    order: unset;
  }

  .editorial-band__media {
    order: 1;
  }

  .editorial-band__copy {
    order: 2;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 88px;
  }

  .wrap,
  .wrap--narrow,
  .site-header__inner,
  .site-footer__inner {
    width: min(100% - 32px, var(--max));
  }

  .shore-row {
    grid-template-columns: 96px 1fr;
    gap: 20px;
  }

  .shore-row__thumb {
    width: 96px;
    height: 96px;
  }

  .shore-row__action {
    grid-column: 1 / -1;
    justify-self: center;
  }

  .shore-row__body {
    text-align: left;
  }

  .premier-grid {
    grid-template-columns: 1fr;
  }

  .sitemap-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  :root {
    --section-pad: 72px;
  }

  body {
    font-size: 16px;
  }

  .brand {
    font-size: 14px;
    letter-spacing: 0.12em;
    gap: 10px;
  }

  .brand img {
    width: 36px;
    height: 37px;
  }

  .amenity-grid {
    grid-template-columns: 1fr;
  }

  .shore-row {
    grid-template-columns: 1fr;
  }

  .shore-row__thumb {
    width: 100%;
    height: 200px;
  }

  .consent__actions .btn {
    min-width: 100%;
  }
}
