:root {
  --bg: #faf6f3;
  --surface: #ffffff;
  --surface-alt: #f2e9e4;
  --text: #241417;
  --text-muted: #63494e;
  --border: rgba(36, 20, 23, 0.12);
  --accent: #7b2233;
  --accent-2: #b8860b;
  --secondary: #3d1f26;
  --on-accent: #ffffff;
  --dark-band: #2b1219;
  --radius: 4px;
  --radius-btn: 0px;
  --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.06);
  --font-heading: 'Century Gothic', 'Apple Gothic', 'Segoe UI', sans-serif;
  --font-body: Verdana, Geneva, sans-serif;
  --content-width: 1140px;
  --section-pad: 96px;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  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: 2px;
}

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.5px;
  line-height: 1.2;
  color: var(--text);
  margin: 0 0 0.6em;
}

h1 {
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.12;
}

h2 {
  font-size: clamp(26px, 4vw, 40px);
}

h3 {
  font-size: clamp(18px, 2.2vw, 24px);
}

p {
  margin: 0 0 1em;
}

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

ul,
ol {
  margin: 0 0 1em;
  padding-left: 1.25em;
}

.container {
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 24px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--on-accent);
  padding: 12px 22px;
  border-radius: var(--radius-btn);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  min-height: var(--header-h);
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 24px;
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.3px;
  white-space: nowrap;
}

.nav__brand img {
  width: 36px;
  height: 48px;
  object-fit: contain;
}

.nav__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__links a {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

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

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

.nav__contact {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid var(--accent);
  padding: 8px 14px;
  border-radius: var(--radius-btn);
}

.nav__contact:hover,
.nav__contact[aria-current="page"] {
  background: var(--accent);
  color: var(--on-accent);
}

.nav__toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  width: 44px;
  height: 44px;
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav__toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
}

.site-main {
  min-height: 50vh;
}

.section {
  padding: var(--section-pad) 0;
  border-bottom: 1px solid var(--border);
}

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

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

.page-hero {
  padding: 72px 0 64px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.page-hero__inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 24px;
}

.page-hero__intro {
  max-width: 62ch;
  margin-left: 0;
  margin-right: auto;
  color: var(--text-muted);
  font-size: 17px;
}

.hero {
  position: relative;
  padding: 80px 0 120px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  overflow: visible;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px 48px;
  align-items: start;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 24px;
}

.hero__title {
  grid-column: 1 / -1;
  max-width: 16ch;
  margin: 0;
  justify-self: start;
}

.hero__copy {
  grid-column: 1 / 2;
  padding-left: min(12vw, 140px);
  color: var(--text-muted);
  font-size: 17px;
  max-width: 42ch;
}

.hero__notice {
  grid-column: 1 / 2;
  padding-left: min(12vw, 140px);
  margin-top: 28px;
  font-size: 12px;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 48ch;
}

.hero__media {
  grid-column: 2 / 3;
  grid-row: 2 / 4;
  justify-self: end;
  align-self: end;
  width: min(340px, 100%);
  margin-bottom: -80px;
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.hero__media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.hero__media:hover img {
  transform: scale(1.02);
}

.cat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 24px;
}

.cat-card {
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: var(--radius);
  overflow: visible;
}

.cat-card__img-wrap {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  aspect-ratio: 4 / 5;
}

.cat-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.cat-card:hover .cat-card__img-wrap img {
  transform: scale(1.02);
}

.cat-card__panel {
  position: relative;
  margin: -28% 16px 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 22px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cat-card:hover .cat-card__panel {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.cat-card__panel h2 {
  font-size: clamp(22px, 3vw, 28px);
  margin-bottom: 8px;
}

.cat-card__panel p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 14px;
}

.cat-card__link {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}

.testimonials {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 24px;
}

.testimonials__head {
  margin-bottom: 48px;
  max-width: 40ch;
}

.quote-stack {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px 40px;
}

.quote-item {
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}

.quote-item:last-child {
  border-bottom: none;
}

.quote-item blockquote {
  margin: 0;
  font-size: 18px;
  line-height: 1.65;
  color: var(--text);
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.3px;
}

.quote-item cite {
  display: block;
  margin-top: 14px;
  font-style: normal;
  font-size: 13px;
  color: var(--text-muted);
}

.closing-cta {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 24px;
  align-items: start;
}

.closing-cta__copy h2 {
  margin-bottom: 16px;
}

.closing-cta__copy p {
  color: var(--text-muted);
}

.closing-cta__panel {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius);
  padding: 28px 24px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.accordion {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 24px;
}

.accordion__intro {
  margin-bottom: 40px;
  max-width: 48ch;
}

.accordion__item {
  border: 1px solid var(--border);
  border-bottom: none;
  background: var(--surface);
}

.accordion__item:first-child {
  border-radius: var(--radius) var(--radius) 0 0;
}

.accordion__item:last-child {
  border-bottom: 1px solid var(--border);
  border-radius: 0 0 var(--radius) var(--radius);
}

.accordion__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  background: transparent;
  border: none;
  padding: 20px 24px;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.3px;
  color: var(--text);
}

.accordion__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
}

.accordion__icon::before,
.accordion__icon::after {
  content: "";
  position: absolute;
  background: var(--accent);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.accordion__icon::before {
  width: 14px;
  height: 2px;
}

.accordion__icon::after {
  width: 2px;
  height: 14px;
  transition: opacity 0.2s ease;
}

.accordion__item.is-open .accordion__icon::after {
  opacity: 0;
}

.accordion__panel {
  display: none;
  padding: 0 24px 22px;
  color: var(--text-muted);
  max-width: 62ch;
}

.accordion__item.is-open .accordion__panel {
  display: block;
}

.amenities {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 24px;
}

.amenities__intro {
  margin-bottom: 48px;
  max-width: 48ch;
}

.amenities__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.amenity-block {
  border-top: 2px solid var(--accent);
  padding-top: 20px;
}

.amenity-block h3 {
  margin-bottom: 10px;
}

.amenity-block p {
  color: var(--text-muted);
  font-size: 15px;
}

.arrival {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 24px;
}

.arrival__intro {
  margin-bottom: 48px;
  max-width: 48ch;
}

.arrival__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.arrival-card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 28px 24px 24px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.arrival-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.arrival-card__num {
  position: absolute;
  top: 8px;
  right: 16px;
  font-family: var(--font-heading);
  font-size: 72px;
  font-weight: 600;
  line-height: 1;
  color: var(--border);
  pointer-events: none;
}

.arrival-card h3 {
  position: relative;
  margin-bottom: 10px;
}

.arrival-card p {
  position: relative;
  color: var(--text-muted);
  font-size: 15px;
}

.offer-list {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 24px 64px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.offer-row {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 28px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 20px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.offer-row:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.offer-row__thumb {
  width: 96px;
  height: 96px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  flex-shrink: 0;
}

.offer-row__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.offer-row:hover .offer-row__thumb img {
  transform: scale(1.02);
}

.offer-row__body {
  text-align: center;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.offer-row__meta {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.offer-row__body h2 {
  font-size: clamp(20px, 2.5vw, 26px);
  margin-bottom: 8px;
}

.offer-row__body p {
  color: var(--text-muted);
  font-size: 15px;
  margin: 0;
  max-width: 52ch;
}

.offer-row__action {
  align-self: stretch;
  display: flex;
  align-items: center;
  padding-left: 24px;
  border-left: 1px solid var(--border);
}

.offer-row .btn {
  white-space: nowrap;
}

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

.shore-band:last-of-type {
  border-bottom: none;
}

.shore-band__inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 24px;
}

.shore-band__photo {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-bottom: 28px;
  aspect-ratio: 21 / 9;
}

.shore-band__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.shore-band:hover .shore-band__photo img {
  transform: scale(1.02);
}

.shore-band__content {
  text-align: center;
  max-width: 58ch;
  margin: 0 auto;
}

.shore-band__content .kicker {
  margin-bottom: 10px;
}

.shore-band__content h2 {
  margin-bottom: 12px;
}

.shore-band__content p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.catalog-close {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 48px 24px 96px;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
}

.prose {
  max-width: 70ch;
  margin: 0 auto;
  padding: 72px 24px 96px;
}

.prose section {
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}

.prose section:first-of-type {
  padding-top: 0;
}

.prose section:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.prose h2 {
  margin-bottom: 18px;
}

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

.insights {
  max-width: 70ch;
  margin: 0 auto;
  padding: 72px 24px 96px;
}

.insights__block {
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}

.insights__block:first-of-type {
  padding-top: 0;
}

.insights__block:last-of-type {
  border-bottom: none;
}

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

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

.contact-wrap {
  max-width: 640px;
  margin: 0 auto;
  padding: 72px 24px 96px;
  text-align: center;
}

.contact-wrap > p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

.contact-email {
  display: inline-block;
  margin-bottom: 36px;
  font-family: var(--font-heading);
  font-weight: 600;
}

.contact-form {
  text-align: left;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
}

.form-field {
  margin-bottom: 20px;
}

.form-field label {
  display: block;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
}

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

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

.form-agree {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
}

.form-agree input {
  margin-top: 4px;
  flex-shrink: 0;
}

.form-agree label {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

.form-error {
  display: none;
  color: var(--accent);
  font-size: 13px;
  margin-bottom: 16px;
}

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

.form-actions {
  margin-top: 8px;
}

.form-actions .btn {
  width: 100%;
}

.contact-confirm {
  text-align: left;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
}

.contact-confirm h2 {
  font-size: clamp(22px, 3vw, 28px);
}

.contact-confirm p {
  color: var(--text-muted);
}

.section-lead {
  margin-bottom: 48px;
}

.lede {
  color: var(--text-muted);
  max-width: 48ch;
}

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

.shore-band__meta {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.page-hero__inner--center {
  text-align: center;
}

.page-hero__inner--center .page-hero__intro {
  margin-left: auto;
  margin-right: auto;
}

.confirm-actions {
  margin-top: 24px;
}

.cookie-settings-wrap {
  margin-top: 36px;
}

.legal-body {
  max-width: 70ch;
  margin: 0 auto;
  padding: 72px 24px 96px;
}

.legal-body h1 {
  margin-bottom: 8px;
}

.legal-body > p:first-of-type {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 32px;
}

.legal-body h2 {
  font-size: clamp(20px, 2.5vw, 26px);
  margin-top: 36px;
  margin-bottom: 12px;
}

.legal-body h3 {
  margin-top: 24px;
  margin-bottom: 8px;
}

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

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 48px 24px 96px;
}

.sitemap-group h2 {
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 10px;
}

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

.sitemap-group li {
  margin-bottom: 10px;
}

.sitemap-group a {
  font-family: var(--font-heading);
  font-weight: 600;
  text-decoration: none;
  color: var(--text);
}

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

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

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 24px 48px;
  align-items: flex-start;
}

.footer-brand {
  max-width: 360px;
  flex-shrink: 0;
}

.footer-brand__lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 16px;
}

.footer-brand__lockup img {
  width: 32px;
  height: 42px;
  object-fit: contain;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.footer-brand a[href^="mailto"] {
  font-size: 14px;
  font-family: var(--font-heading);
  font-weight: 600;
  text-decoration: none;
}

.footer-groups {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 140px;
}

.footer-group a,
.footer-group button {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-align: left;
}

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

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 28px 24px 40px;
  text-align: center;
  max-width: var(--content-width);
  margin: 0 auto;
}

.footer-notice {
  font-size: 12px;
  color: var(--text-muted);
  max-width: 62ch;
  margin: 0 auto 16px;
  line-height: 1.55;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  margin-bottom: 14px;
}

.footer-legal a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  font-family: var(--font-heading);
}

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

.footer-copy {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.footer-requisites {
  font-size: 12px;
  color: var(--text-muted);
  opacity: 0.85;
}

.consent {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
  width: min(380px, calc(100vw - 32px));
  background: var(--surface);
  border-radius: 12px;
  box-shadow: 0 16px 48px rgba(36, 20, 23, 0.18);
  padding: 22px 20px 18px;
  display: none;
}

.consent.is-visible {
  display: block;
}

.consent__title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.3px;
  margin: 0 0 10px;
  color: var(--text);
}

.consent__text {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0 0 8px;
}

.consent__text a {
  color: var(--accent);
}

.consent__manage {
  display: block;
  width: 100%;
  background: none;
  border: none;
  padding: 10px 0;
  margin: 4px 0 8px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  cursor: pointer;
  text-align: left;
}

.consent__cats {
  display: none;
  overflow: hidden;
  margin-bottom: 12px;
}

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

.consent__cat {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
}

.consent__cat strong {
  display: block;
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 13px;
  margin-bottom: 2px;
}

.consent__cat input {
  margin-top: 3px;
}

.consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.consent__actions .btn {
  flex: 1 1 auto;
  padding: 10px 12px;
  font-size: 13px;
}

.consent__actions .btn--accept {
  order: -1;
  flex: 1 1 100%;
}

.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;
}

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

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

  .hero__copy,
  .hero__notice {
    padding-left: 48px;
  }

  .footer-top {
    flex-direction: column;
  }

  .footer-groups {
    justify-content: flex-start;
  }
}

@media (max-width: 900px) {
  .nav {
    grid-template-columns: 1fr auto;
  }

  .nav__toggle {
    display: inline-flex;
  }

  .nav__links {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 12px 24px 20px;
    gap: 0;
  }

  .nav__links.is-open {
    display: flex;
  }

  .nav__links a {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
  }

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

  .nav__contact {
    display: none;
  }

  .nav__links .nav__contact-mobile {
    display: block;
    margin-top: 8px;
    text-align: center;
    border: 1px solid var(--accent);
    padding: 12px;
    color: var(--accent);
  }

  .nav__links .nav__contact-mobile[aria-current="page"] {
    background: var(--accent);
    color: var(--on-accent);
  }
}

@media (min-width: 901px) {
  .nav__links .nav__contact-mobile {
    display: none;
  }
}

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

  .hero {
    padding: 56px 0 100px;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero__title {
    max-width: none;
  }

  .hero__copy,
  .hero__notice {
    padding-left: 0;
    grid-column: 1;
  }

  .hero__media {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
    width: min(280px, 70vw);
    margin-bottom: -60px;
  }

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

  .closing-cta {
    grid-template-columns: 1fr;
  }

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

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

  .offer-row {
    grid-template-columns: 80px 1fr;
    gap: 16px;
  }

  .offer-row__thumb {
    width: 80px;
    height: 80px;
  }

  .offer-row__body {
    text-align: left;
    align-items: flex-start;
    grid-column: 2;
    border-bottom: 1px solid var(--border);
    padding-bottom: 14px;
  }

  .offer-row__action {
    grid-column: 1 / -1;
    justify-content: stretch;
    padding-left: 0;
    padding-top: 4px;
    border-left: none;
  }

  .offer-row__action .btn {
    width: 100%;
  }

  .quote-stack {
    padding: 8px 20px;
  }

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

  .shore-band__photo {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 600px) {
  .consent__actions {
    flex-direction: column;
  }

  .consent__actions .btn {
    width: 100%;
  }

  .consent__actions .btn--accept {
    order: 0;
  }
}

@media (max-width: 640px) {
  .consent {
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: none;
    border-radius: 12px 12px 0 0;
  }
}

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

  .container,
  .page-hero__inner,
  .hero__grid,
  .cat-grid,
  .testimonials,
  .closing-cta,
  .accordion,
  .amenities,
  .arrival,
  .offer-list,
  .shore-band__inner,
  .catalog-close,
  .footer-top {
    padding-left: 16px;
    padding-right: 16px;
  }

  .nav {
    padding: 0 16px;
  }

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

  .offer-row__thumb {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
  }

  .offer-row__body {
    grid-column: 1;
  }
}
