:root {
  --ink: #0a1f2c;
  --navy: #0d2c3e;
  --navy-2: #123b50;
  --sea: #1c8193;
  --sea-light: #75c4cf;
  --sand: #e2b968;
  --foam: #f5f8f7;
  --mist: #e6f0f2;
  --white: #ffffff;
  --muted: #5d6f78;
  --line: rgba(13, 44, 62, 0.13);
  --shadow: 0 22px 60px rgba(8, 31, 44, 0.14);
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 34px;
  --content: 1180px;
  --header-height: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--foam);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--sand);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 18px;
  top: -80px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--sand);
  color: var(--ink);
  font-weight: 800;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 18px;
}

.container {
  width: min(calc(100% - 40px), var(--content));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 40px), 780px);
  margin-inline: auto;
}

.announcement {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.82rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.announcement-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 36px;
  gap: 20px;
}

.announcement a {
  color: var(--sand);
  font-weight: 800;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(13, 44, 62, 0.96);
  color: var(--white);
  backdrop-filter: blur(15px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
  flex-shrink: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(226, 185, 104, 0.62);
  border-radius: 50%;
  color: var(--sand);
  font-family: Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.brand-name {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.17rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.05;
  text-transform: uppercase;
}

.brand-tagline {
  display: block;
  margin-top: 4px;
  color: var(--sea-light);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 26px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-link {
  position: relative;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.91rem;
  font-weight: 700;
  text-decoration: none;
}

.nav-link::after {
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--sand);
  content: "";
  transition: right 0.2s ease;
}

.nav-link:hover::after,
.nav-link[aria-current="page"]::after {
  right: 0;
}

.nav-cta {
  padding: 11px 17px;
  border-radius: 999px;
  background: var(--sand);
  color: var(--ink);
  font-size: 0.87rem;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: transparent;
  color: white;
  cursor: pointer;
}

.menu-button span,
.menu-button::before,
.menu-button::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  content: "";
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-button[aria-expanded="true"] span {
  opacity: 0;
}

.menu-button[aria-expanded="true"]::before {
  transform: translateY(7px) rotate(45deg);
}

.menu-button[aria-expanded="true"]::after {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 15%, rgba(28, 129, 147, 0.32), transparent 36%),
    linear-gradient(135deg, #071a27 0%, #0d2c3e 58%, #11475d 100%);
  color: var(--white);
}

.hero::after {
  position: absolute;
  right: -130px;
  bottom: -210px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(117, 196, 207, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 64px rgba(117, 196, 207, 0.035), 0 0 0 128px rgba(117, 196, 207, 0.025);
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(430px, 0.97fr);
  align-items: center;
  gap: 70px;
  min-height: 680px;
  padding-block: 74px 86px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--sea-light);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 2px;
  background: var(--sand);
  content: "";
}

.hero h1,
.page-hero h1 {
  margin: 0;
  max-width: 760px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.85rem, 5.9vw, 5.35rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.hero h1 em {
  color: var(--sand);
  font-style: normal;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 680px;
  margin: 25px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.08rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--sand);
  color: var(--ink);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.button-dark {
  background: var(--navy);
  color: var(--white);
}

.button-outline {
  border-color: var(--navy);
  color: var(--navy);
}

.hero-prices {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
}

.hero-prices strong {
  color: var(--white);
}

.hero-media {
  position: relative;
}

.hero-photo {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 160px 22px 22px 22px;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.35);
}

.hero-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  left: -42px;
  bottom: 34px;
  width: 174px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 18px;
  background: rgba(245, 248, 247, 0.95);
  box-shadow: var(--shadow);
  color: var(--ink);
}

.hero-badge strong {
  display: block;
  color: var(--sea);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1;
}

.hero-badge span {
  display: block;
  margin-top: 5px;
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

.trust-strip {
  position: relative;
  z-index: 3;
  margin-top: -34px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.trust-item {
  padding: 24px 26px;
}

.trust-item + .trust-item {
  border-left: 1px solid var(--line);
}

.trust-item strong {
  display: block;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  line-height: 1.1;
}

.trust-item span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.35;
  text-transform: uppercase;
}

.section {
  padding-block: 105px;
}

.section-tight {
  padding-block: 78px;
}

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

.section-dark {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.section-dark p {
  color: rgba(255, 255, 255, 0.76);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.55fr);
  align-items: end;
  gap: 60px;
  margin-bottom: 48px;
}

.section-heading h2,
.split-copy h2,
.cta-panel h2,
.contact-card h2 {
  margin: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 4vw, 3.85rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.section-dark .section-heading h2,
.section-dark .split-copy h2,
.cta-panel h2 {
  color: var(--white);
}

.section-heading > p {
  margin: 0;
  color: var(--muted);
}

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

.trip-card {
  position: relative;
  overflow: hidden;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 32px rgba(8, 31, 44, 0.07);
}

.trip-card.featured {
  border-color: rgba(28, 129, 147, 0.35);
  background: linear-gradient(145deg, #0c2d3e, #14536a);
  color: var(--white);
}

.trip-card.featured p,
.trip-card.featured li {
  color: rgba(255, 255, 255, 0.75);
}

.card-label {
  margin: 0 0 14px;
  color: var(--sea);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.featured .card-label {
  color: var(--sea-light);
}

.trip-card h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.15rem;
  font-weight: 500;
  line-height: 1.1;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 18px 0;
}

.price strong {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.15rem;
  line-height: 1;
}

.featured .price strong {
  color: var(--sand);
}

.price span {
  color: var(--muted);
  font-size: 0.85rem;
}

.featured .price span {
  color: rgba(255, 255, 255, 0.66);
}

.check-list,
.plain-list {
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
}

.check-list li,
.plain-list li {
  position: relative;
  margin-top: 10px;
  padding-left: 25px;
  color: var(--muted);
}

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

.featured .check-list li::before {
  color: var(--sand);
}

.plain-list li::before {
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sea);
  content: "";
}

.split {
  display: grid;
  grid-template-columns: minmax(360px, 0.85fr) minmax(0, 1fr);
  align-items: center;
  gap: 76px;
}

.split.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.85fr);
}

.split.reverse .split-media {
  order: 2;
}

.split-media {
  position: relative;
}

.image-frame {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

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

.image-frame.portrait img {
  aspect-ratio: 4 / 5;
}

.image-note {
  position: absolute;
  right: -30px;
  bottom: -30px;
  max-width: 240px;
  padding: 22px;
  border-radius: var(--radius-sm);
  background: var(--sand);
  box-shadow: var(--shadow);
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 850;
  line-height: 1.45;
}

.split-copy > p {
  color: var(--muted);
}

.split-copy .lead {
  color: var(--ink);
  font-size: 1.12rem;
}

.section-dark .split-copy .lead {
  color: rgba(255, 255, 255, 0.86);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: var(--sea);
  font-weight: 900;
  text-decoration: none;
}

.section-dark .text-link {
  color: var(--sand);
}

.text-link::after {
  content: "→";
  transition: transform 0.2s ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

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

.feature-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.feature-number {
  color: var(--sea);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1;
}

.feature-card h3 {
  margin: 14px 0 8px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-template-rows: 250px 250px;
  grid-auto-rows: 250px;
  gap: 14px;
}

.gallery-hint {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.94rem;
}

.gallery-grid figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 16px;
  background: var(--mist);
  cursor: zoom-in;
}

.gallery-grid figure:first-child {
  grid-row: 1 / 3;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.035);
}

.gallery-grid figure:focus-visible {
  outline: 3px solid var(--sand);
  outline-offset: 3px;
}

.gallery-grid figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 30px 16px 13px;
  background: linear-gradient(transparent, rgba(7, 26, 39, 0.82));
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
}

.booking-checklist {
  max-width: 860px;
  margin: 44px auto 0;
  padding: 30px;
  border-left: 4px solid var(--ocean);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--mist);
}

.booking-checklist h3 {
  margin: 8px 0 10px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.booking-checklist p:last-child {
  margin: 0;
  color: var(--muted);
}

.gallery-lightbox {
  width: min(1100px, calc(100vw - 32px));
  max-width: none;
  padding: 18px 64px;
  border: 0;
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: var(--white);
}

.gallery-lightbox::backdrop {
  background: rgba(3, 17, 26, 0.82);
}

.gallery-lightbox figure {
  display: grid;
  gap: 10px;
  margin: 0;
}

.gallery-lightbox img {
  display: block;
  width: 100%;
  max-height: min(72vh, 760px);
  object-fit: contain;
}

.gallery-lightbox figcaption {
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
}

.lightbox-close,
.lightbox-control {
  position: absolute;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.lightbox-close {
  top: 8px;
  right: 14px;
  font-size: 2.4rem;
  line-height: 1;
}

.lightbox-control {
  top: 50%;
  padding: 10px;
  font-size: 2rem;
  transform: translateY(-50%);
}

.lightbox-control.previous { left: 12px; }
.lightbox-control.next { right: 12px; }

@media (max-width: 640px) {
  .gallery-lightbox {
    width: calc(100vw - 20px);
    padding: 14px 42px;
  }

  .lightbox-control.previous { left: 0; }
  .lightbox-control.next { right: 0; }

  .booking-checklist {
    padding: 24px;
  }
}

.cta-band {
  padding-block: 88px;
  background: linear-gradient(135deg, var(--sea), var(--navy-2));
  color: var(--white);
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 48px;
}

.cta-panel p {
  max-width: 720px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.cta-panel .cta-actions {
  justify-content: flex-end;
  margin: 0;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: 105px 112px;
  background: linear-gradient(135deg, #081e2b, #114b61);
  color: var(--white);
}

.page-hero::after {
  position: absolute;
  top: -160px;
  right: -100px;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(117, 196, 207, 0.22);
  border-radius: 50%;
  content: "";
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 890px;
}

.page-hero h1 {
  font-size: clamp(2.8rem, 5.7vw, 4.9rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

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

.detail-card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.detail-card h2,
.detail-card h3 {
  margin-top: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
}

.detail-card h2 {
  font-size: 2rem;
}

.detail-card h3 {
  font-size: 1.35rem;
}

.notice {
  padding: 24px 28px;
  border-left: 5px solid var(--sand);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: #fff7e7;
}

.notice strong {
  color: var(--navy);
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.94rem;
}

.spec-table th,
.spec-table td {
  padding: 15px 4px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.spec-table th {
  width: 38%;
  color: var(--navy);
}

.spec-table td {
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.faq-item summary {
  position: relative;
  padding: 22px 60px 22px 24px;
  color: var(--navy);
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  color: var(--sea);
  content: "+";
  font-size: 1.5rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-answer {
  padding: 0 24px 24px;
  color: var(--muted);
}

.faq-answer p {
  margin: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1.3fr);
  align-items: start;
  gap: 28px;
}

.contact-card,
.form-card {
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 35px rgba(8, 31, 44, 0.06);
}

.contact-card h2 {
  font-size: 2.4rem;
}

.contact-list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.contact-list span {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.contact-list a,
.contact-list strong {
  display: inline-block;
  margin-top: 3px;
  color: var(--navy);
  font-weight: 850;
  text-decoration: none;
}

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

.field {
  display: grid;
  gap: 7px;
}

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

.field label {
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 900;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #c9d7dc;
  border-radius: 10px;
  background: #fbfdfd;
  color: var(--ink);
  padding: 13px 14px;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--sea);
  outline: 3px solid rgba(28, 129, 147, 0.14);
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 22px;
}

.form-actions button {
  cursor: pointer;
}

.form-status {
  min-height: 26px;
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-status.success {
  color: #0e6d43;
}

.form-status.error {
  color: #a33232;
}

.site-footer {
  background: #061721;
  color: rgba(255, 255, 255, 0.72);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 70px;
  padding-block: 72px 46px;
}

.footer-brand p {
  max-width: 480px;
  margin-top: 20px;
}

.footer-heading {
  margin: 0 0 18px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.78rem;
}

.mobile-actions {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1040px) {
  :root {
    --header-height: 74px;
  }

  .menu-button {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: calc(36px + var(--header-height)) 0 auto;
    max-height: 0;
    overflow: hidden;
    background: var(--navy);
    transition: max-height 0.25s ease;
  }

  .site-nav.open {
    max-height: calc(100vh - 110px);
    overflow-y: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .nav-list {
    display: grid;
    gap: 0;
    width: min(calc(100% - 40px), var(--content));
    margin-inline: auto;
    padding-block: 16px 28px;
  }

  .nav-link,
  .nav-cta {
    display: block;
    padding: 14px 2px;
  }

  .nav-link::after {
    display: none;
  }

  .nav-cta {
    margin-top: 8px;
    text-align: center;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 45px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .split,
  .split.reverse {
    gap: 50px;
  }

  .image-note {
    right: 18px;
  }
}

@media (max-width: 820px) {
  body {
    padding-bottom: 70px;
    font-size: 16px;
  }

  .announcement-inner {
    justify-content: center;
  }

  .announcement-inner span:last-child {
    display: none;
  }

  .brand-name {
    font-size: 1rem;
  }

  .brand-tagline {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 46px;
    padding-block: 66px 88px;
  }

  .hero h1,
  .page-hero h1 {
    max-width: 680px;
  }

  .hero-media {
    width: min(100%, 610px);
  }

  .hero-photo {
    border-radius: 120px 20px 20px 20px;
  }

  .hero-photo img {
    aspect-ratio: 5 / 4;
  }

  .hero-badge {
    left: auto;
    right: 18px;
    bottom: -28px;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item + .trust-item {
    border-left: 0;
  }

  .trust-item:nth-child(even) {
    border-left: 1px solid var(--line);
  }

  .trust-item:nth-child(n+3) {
    border-top: 1px solid var(--line);
  }

  .section {
    padding-block: 78px;
  }

  .trip-grid,
  .split,
  .split.reverse,
  .detail-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .split.reverse .split-media {
    order: 0;
  }

  .split-media {
    width: min(100%, 650px);
  }

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

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 300px 230px 230px;
  }

  .gallery-grid figure:first-child {
    grid-column: 1 / -1;
    grid-row: auto;
  }

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

  .cta-panel .cta-actions {
    justify-content: flex-start;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .mobile-actions {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 110;
    display: grid;
    grid-template-columns: 0.9fr 0.9fr 1.35fr;
    min-height: 66px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    background: var(--ink);
    box-shadow: 0 -10px 30px rgba(7, 26, 39, 0.25);
  }

  .mobile-actions a {
    display: grid;
    place-items: center;
    padding: 8px;
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 900;
    text-align: center;
    text-decoration: none;
  }

  .mobile-actions a + a {
    border-left: 1px solid rgba(255, 255, 255, 0.15);
  }

  .mobile-actions a:last-child {
    background: var(--sand);
    color: var(--ink);
  }
}

@media (max-width: 560px) {
  .container,
  .narrow {
    width: min(calc(100% - 28px), var(--content));
  }

  .announcement {
    font-size: 0.69rem;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-name {
    max-width: 190px;
    font-size: 0.88rem;
  }

  .hero-grid {
    min-height: auto;
    padding-top: 53px;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 14vw, 4rem);
  }

  .hero-actions .button,
  .cta-actions .button {
    width: 100%;
  }

  .hero-photo {
    border-radius: 80px 16px 16px 16px;
  }

  .hero-photo img {
    aspect-ratio: 1 / 1;
  }

  .hero-badge {
    right: 12px;
    width: 145px;
    padding: 14px;
  }

  .trust-item {
    padding: 20px 16px;
  }

  .trust-item strong {
    font-size: 1.25rem;
  }

  .trip-card,
  .detail-card,
  .contact-card,
  .form-card {
    padding: 26px 22px;
  }

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

  .field.full {
    grid-column: auto;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 280px);
  }

  .gallery-grid figure:first-child {
    grid-column: auto;
  }

  .image-note {
    position: relative;
    right: auto;
    bottom: auto;
    max-width: none;
    margin: -28px 18px 0;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-brand {
    grid-column: auto;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
