:root {
  --navy: #071b2f;
  --navy-deep: #041326;
  --ocean: #0e3a5d;
  --gold: #d4a64a;
  --gold-light: #f1c76a;
  --white: #ffffff;
  --light: #f8fafc;
  --text: #243447;
  --muted: #647184;
  --radius: 20px;
  --shadow: 0 24px 60px rgba(4, 19, 38, 0.16);
  --nav-height: 86px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--light);
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  text-decoration: none;
}

.site-container {
  max-width: 1320px;
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 18px;
  z-index: 2000;
  padding: 10px 18px;
  border-radius: 8px;
  color: var(--navy);
  background: var(--gold-light);
  font-weight: 700;
}

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

.navbar {
  min-height: var(--nav-height);
  padding: 10px 0;
  background: rgba(4, 15, 38, 0.92);
  transition: min-height 0.3s ease, padding 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
  min-height: 70px;
  padding: 4px 0;
  background: rgba(4, 19, 38, 0.98);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(15px);
}

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

.brand:hover,
.brand:focus {
  color: var(--white);
}

.brand img {
  width: 48px;
  height: 52px;
  object-fit: cover;
  object-position: center;
  border-radius: 6px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  text-transform: uppercase;
}

.brand-copy strong {
  color: var(--white);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.07em;
}

.brand-copy small {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.navbar-nav {
  gap: 30px;
}

.navbar .nav-link {
  position: relative;
  padding: 12px 4px !important;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.navbar .nav-link::after {
  position: absolute;
  right: 4px;
  bottom: 5px;
  left: 4px;
  height: 2px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus,
.navbar .nav-link.active {
  color: var(--gold-light);
}

.navbar .nav-link:hover::after,
.navbar .nav-link:focus::after,
.navbar .nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.navbar-toggler {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  font-size: 26px;
  line-height: 1;
  box-shadow: none !important;
}

.btn {
  position: relative;
  z-index: 1;
  min-height: 48px;
  padding: 13px 25px;
  overflow: hidden;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  line-height: 20px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.btn i {
  margin-left: 9px;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-gold {
  border: 1px solid var(--gold-light);
  color: #071629;
  background: linear-gradient(135deg, var(--gold-light), #e2ae4c);
  box-shadow: 0 10px 24px rgba(212, 166, 74, 0.22);
}

.btn-gold:hover,
.btn-gold:focus {
  border-color: #ffd780;
  color: #071629;
  background: #ffd477;
  box-shadow: 0 13px 30px rgba(212, 166, 74, 0.33);
}

.nav-book {
  min-width: 144px;
  min-height: 45px;
  padding: 12px 20px;
}

.nav-book i {
  margin-right: 7px;
  margin-left: 0;
  font-size: 15px;
}

.btn-outline-light {
  min-width: 164px;
  border-width: 1.5px;
  color: var(--white);
  background: rgba(1, 13, 31, 0.16);
}

.btn-outline-light:hover,
.btn-outline-light:focus {
  border-color: var(--white);
  color: var(--navy);
  background: var(--white);
}

.btn-navy {
  min-width: 230px;
  color: var(--white);
  background: var(--navy-deep);
  box-shadow: 0 10px 24px rgba(4, 19, 38, 0.16);
}

.btn-navy:hover,
.btn-navy:focus {
  color: var(--white);
  background: var(--ocean);
  box-shadow: 0 14px 30px rgba(4, 19, 38, 0.24);
}

.ripple {
  position: absolute;
  z-index: -1;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0);
  animation: ripple 0.7s ease-out;
}

@keyframes ripple {
  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(30);
  }
}

.hero-section {
  position: relative;
  display: flex;
  min-height: 100svh;
  padding-top: var(--nav-height);
  overflow: hidden;
  color: var(--white);
  background-color: var(--ocean);
  background-image: url("assets/hero.jpg");
  background-position: center center;
  background-size: cover;
  isolation: isolate;
}

.hero-overlay {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 20, 44, 0.96) 0%, rgba(3, 25, 52, 0.82) 35%, rgba(4, 33, 62, 0.24) 72%, rgba(4, 26, 48, 0.13) 100%),
    linear-gradient(0deg, rgba(3, 20, 44, 0.72) 0%, transparent 43%);
}

.hero-inner {
  position: relative;
  display: flex;
  flex: 1;
  align-items: center;
  padding-top: 56px;
  padding-bottom: 190px;
}

.hero-copy {
  width: min(610px, 51%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 13px;
  color: var(--gold-light);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.hero-copy h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(44px, 4.5vw, 62px);
  font-weight: 800;
  line-height: 1.03;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  text-shadow: 0 8px 28px rgba(1, 12, 28, 0.2);
}

.gold-mark {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 98px;
  margin: 20px 0 17px;
  color: var(--gold-light);
}

.gold-mark span {
  width: 62px;
  height: 2px;
  background: var(--gold-light);
}

.gold-mark i {
  font-size: 16px;
}

.hero-lead {
  max-width: 470px;
  margin: 0 0 25px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 17px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.feature-panel {
  position: absolute;
  right: 12px;
  bottom: 32px;
  left: 12px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 118px;
  padding: 18px 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  background: rgba(4, 25, 50, 0.74);
  box-shadow: 0 24px 46px rgba(0, 8, 24, 0.26);
  backdrop-filter: blur(15px);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
  padding: 8px 25px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.feature-item:last-child {
  border-right: 0;
}

.feature-icon {
  display: grid;
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  color: var(--gold-light);
  font-size: 36px;
  line-height: 1;
  place-items: center;
}

.feature-icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.24));
}

.feature-icon svg {
  width: 58px;
  height: 58px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.18));
}

.feature-item h2 {
  margin: 0 0 4px;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
}

.feature-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  line-height: 1.5;
}

.section-pad {
  padding: 82px 0;
}

.about-section,
.contact-section {
  position: relative;
  background:
    radial-gradient(circle at 50% 20%, rgba(212, 166, 74, 0.05), transparent 32%),
    var(--light);
}

.about-section.section-pad {
  padding: 72px 0;
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 10px;
  color: #bc8932;
  font-size: 15px;
  letter-spacing: 0.04em;
}

.section-kicker::after {
  width: 50px;
  height: 1.5px;
  content: "";
  background: #bc8932;
}

.section-kicker.centered {
  justify-content: center;
}

.section-kicker.centered::before {
  width: 50px;
  height: 1.5px;
  content: "";
  background: #bc8932;
}

.section-title {
  margin: 0 0 20px;
  color: #071836;
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.16;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.section-copy {
  max-width: 580px;
  margin: 0 0 30px;
  color: #455468;
  font-size: 16px;
  line-height: 1.75;
}

.about-image-wrap {
  position: relative;
  width: min(100%, 620px);
  margin-left: auto;
  overflow: hidden;
  border: 1px solid rgba(8, 33, 62, 0.08);
  border-radius: 18px;
  background: #dbeaf4;
  box-shadow: 0 22px 55px rgba(4, 19, 38, 0.15);
}

.about-image-wrap::after {
  position: absolute;
  inset: 0;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: inherit;
  pointer-events: none;
}

.about-image-wrap img {
  width: 100%;
  height: 420px;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center 48%;
  transition: transform 0.8s ease;
}

.about-image-wrap:hover img {
  transform: scale(1.035);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 610px;
  margin: 34px 0 36px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
  padding-right: 20px;
  border-right: 1px solid #dde3e9;
}

.stat-item:not(:first-child) {
  padding-left: 20px;
}

.stat-item:last-child {
  border-right: 0;
}

.stat-item > i {
  flex: 0 0 auto;
  color: #d19a3c;
  font-size: 31px;
}

.stat-item strong,
.stat-item small {
  display: block;
}

.stat-item strong {
  color: #071836;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.stat-item small {
  margin-top: 7px;
  color: #526072;
  font-size: 9px;
  font-weight: 600;
  line-height: 1.3;
  text-transform: uppercase;
}

.album-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 50%, rgba(255, 255, 255, 0.34), transparent 50%),
    linear-gradient(135deg, var(--navy-deep) 0%, var(--ocean) 100%);
}

.album-section.section-pad {
  padding: 66px 0 70px;
}

.album-heading {
  margin-bottom: 22px;
  text-align: center;
}

.album-heading .section-kicker {
  margin-bottom: 0;
  color: var(--white);
  font-size: 14px;
}

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

.album-collection {
  min-width: 0;
}

.album-feature {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border: 1px solid rgba(8, 33, 62, 0.1);
  border-radius: 16px;
  background: var(--navy);
  box-shadow: 0 20px 48px rgba(4, 19, 38, 0.16);
  isolation: isolate;
}

.album-featured-image {
  position: absolute;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: opacity 0.25s ease, transform 0.75s cubic-bezier(0.2, 0.72, 0.2, 1);
}

.album-featured-image.is-switching {
  opacity: 0.35;
}

.album-feature:hover .album-featured-image {
  transform: scale(1.035);
}

.album-feature-overlay {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 19, 41, 0.95) 0%, rgba(3, 23, 48, 0.78) 42%, rgba(3, 24, 48, 0.14) 78%),
    linear-gradient(0deg, rgba(2, 15, 34, 0.46), transparent 60%);
}

.album-copy {
  display: flex;
  width: min(300px, 56%);
  min-height: 330px;
  padding: 38px 0 32px 32px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  color: var(--white);
}

.album-copy h2 {
  margin: 0;
  color: var(--white);
  font-size: 23px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.album-mark {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 13px 0 15px;
  color: var(--gold-light);
  font-size: 11px;
}

.album-mark b {
  display: block;
  width: 45px;
  height: 2px;
  background: var(--gold-light);
}

.album-copy p {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  line-height: 1.65;
}

.album-open {
  min-height: 42px;
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 6px;
  color: var(--white);
  background: rgba(3, 20, 43, 0.3);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.035em;
  backdrop-filter: blur(7px);
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.album-open i {
  margin-left: 8px;
}

.album-open:hover,
.album-open:focus-visible {
  border-color: var(--gold-light);
  color: var(--navy);
  background: var(--gold-light);
  outline: none;
  transform: translateY(-2px);
}

.album-thumbnails {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(62px, 1fr);
  gap: 8px;
  margin-top: 11px;
  overflow-x: auto;
  padding-bottom: 3px;
  scrollbar-width: thin;
  scrollbar-color: rgba(14, 58, 93, 0.3) transparent;
}

.album-thumbnail {
  position: relative;
  min-width: 0;
  height: 74px;
  padding: 0;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 8px;
  background: var(--navy);
  box-shadow: 0 7px 16px rgba(4, 19, 38, 0.1);
  opacity: 0.78;
  transition: border-color 0.25s ease, opacity 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.album-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.album-thumbnail:hover,
.album-thumbnail:focus-visible,
.album-thumbnail.active {
  border-color: var(--gold);
  opacity: 1;
  outline: none;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(4, 19, 38, 0.16);
}

.booking-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(55, 128, 178, 0.1), transparent 30%),
    radial-gradient(circle at 88% 82%, rgba(212, 166, 74, 0.1), transparent 28%),
    #f2f6f9;
}

.booking-section.section-pad {
  padding: 78px 0;
}

.booking-shell {
  position: relative;
  display: grid;
  overflow: hidden;
  padding: 46px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 42%),
    linear-gradient(135deg, #06182c 0%, #0a3355 64%, #0e4a75 100%);
  box-shadow: 0 28px 70px rgba(4, 19, 38, 0.2);
  grid-template-columns: minmax(260px, 0.76fr) minmax(0, 1.45fr);
  gap: 42px;
  isolation: isolate;
}

.booking-shell::before,
.booking-shell::after {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.booking-shell::before {
  top: -180px;
  right: -100px;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 0 0 45px rgba(255, 255, 255, 0.025), 0 0 0 90px rgba(255, 255, 255, 0.018);
}

.booking-shell::after {
  bottom: -140px;
  left: 25%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(212, 166, 74, 0.14), transparent 68%);
}

.booking-intro,
.booking-options {
  position: relative;
  z-index: 1;
}

.booking-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.booking-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 15px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.booking-kicker i {
  font-size: 15px;
}

.booking-intro h2 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: clamp(32px, 3.3vw, 47px);
  font-weight: 700;
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: -0.025em;
}

.booking-intro > p {
  max-width: 410px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.75;
}

.booking-assurance {
  display: flex;
  max-width: 390px;
  margin-top: 24px;
  padding-top: 19px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  line-height: 1.5;
}

.booking-assurance i {
  flex: 0 0 auto;
  color: var(--gold-light);
  font-size: 15px;
}

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

.booking-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 300px;
  overflow: hidden;
  padding: 29px 27px 25px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 19px;
  flex-direction: column;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 40px rgba(1, 13, 31, 0.18);
  backdrop-filter: blur(15px);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.booking-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.booking-card-availability::before {
  background: linear-gradient(90deg, #286b9e, #6eb2df);
}

.booking-card:hover,
.booking-card:focus-visible {
  border-color: rgba(241, 199, 106, 0.88);
  color: var(--navy);
  outline: none;
  box-shadow: 0 24px 48px rgba(1, 13, 31, 0.25);
  transform: translateY(-6px);
}

.booking-card-number {
  position: absolute;
  top: 22px;
  right: 24px;
  color: rgba(7, 27, 47, 0.17);
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
}

.booking-card-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  border: 1px solid rgba(212, 166, 74, 0.28);
  border-radius: 15px;
  color: #a66f19;
  background: linear-gradient(145deg, #fff8e9, #f5e4ba);
  font-size: 23px;
  place-items: center;
  box-shadow: 0 10px 22px rgba(212, 166, 74, 0.16);
}

.booking-card-availability .booking-card-icon {
  border-color: rgba(40, 107, 158, 0.2);
  color: #175981;
  background: linear-gradient(145deg, #edf8ff, #d5eaf7);
  box-shadow: 0 10px 22px rgba(40, 107, 158, 0.14);
}

.booking-card-label {
  margin-bottom: 7px;
  color: #a66f19;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.booking-card-availability .booking-card-label {
  color: #286b9e;
}

.booking-card h3 {
  max-width: 230px;
  margin: 0 0 11px;
  color: #071b34;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
}

.booking-card > p {
  margin: 0 0 22px;
  color: #566476;
  font-size: 12px;
  line-height: 1.65;
}

.booking-card-cta {
  display: flex;
  margin-top: auto;
  padding-top: 17px;
  border-top: 1px solid rgba(7, 27, 47, 0.1);
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: #0b2947;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.035em;
}

.booking-card-cta i {
  display: grid;
  flex: 0 0 auto;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  color: var(--white);
  background: var(--navy);
  font-size: 13px;
  place-items: center;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.booking-card:hover .booking-card-cta i,
.booking-card:focus-visible .booking-card-cta i {
  color: var(--navy);
  background: var(--gold-light);
  transform: rotate(8deg);
}

.gallery-section {
  position: relative;
  overflow: hidden;
  background: #041c39;
  isolation: isolate;
}

.gallery-section.section-pad {
  padding: 64px 0 56px;
}

.gallery-pattern {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.28;
  background-image:
    radial-gradient(ellipse at 12% 15%, transparent 0 22%, rgba(90, 139, 176, 0.28) 22.5% 23%, transparent 23.5%),
    radial-gradient(ellipse at 85% 74%, transparent 0 27%, rgba(90, 139, 176, 0.22) 27.5% 28%, transparent 28.5%),
    repeating-radial-gradient(ellipse at 64% 20%, transparent 0 32px, rgba(91, 140, 178, 0.12) 33px 34px);
}

.gallery-heading {
  margin-bottom: 24px;
  text-align: center;
}

.gallery-heading .section-title {
  margin-bottom: 0;
  font-size: clamp(32px, 3vw, 42px);
  letter-spacing: -0.025em;
}

.gallery-shell {
  max-width: 1400px;
  padding-right: 24px;
  padding-left: 24px;
}

.gallery-stage {
  position: relative;
  padding: 0 52px;
}

.gallery-track {
  display: grid;
  grid-template-columns: none;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 48px) / 5);
  gap: 12px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

.gallery-card {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: var(--ocean);
  box-shadow: 0 14px 34px rgba(0, 8, 24, 0.28);
  scroll-snap-align: center;
}

.gallery-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(1, 13, 29, 0.8), transparent 45%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.gallery-card img {
  width: 100%;
  height: clamp(220px, 15vw, 270px);
  aspect-ratio: auto;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.72, 0.2, 1);
}

.gallery-card:nth-child(1) img,
.gallery-card:nth-child(2) img,
.gallery-card:nth-child(3) img {
  object-position: center 38%;
}

.gallery-card:nth-child(4) img,
.gallery-card:nth-child(5) img,
.gallery-card:nth-child(6) img,
.gallery-card:nth-child(8) img {
  object-position: center 48%;
}

.gallery-card:nth-child(7) img {
  object-position: center 62%;
}

.gallery-view {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: grid;
  width: 54px;
  height: 54px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  color: var(--white);
  background: rgba(3, 20, 43, 0.72);
  box-shadow: 0 10px 28px rgba(0, 8, 24, 0.3);
  opacity: 0;
  place-items: center;
  transform: translate(-50%, -50%) scale(0.72);
  backdrop-filter: blur(10px);
  transition: opacity 0.28s ease, transform 0.28s ease, color 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.gallery-view i {
  font-size: 22px;
  line-height: 1;
}

.gallery-view:hover,
.gallery-view:focus-visible {
  border-color: var(--gold-light);
  color: var(--navy);
  background: var(--gold-light);
  outline: none;
  transform: translate(-50%, -50%) scale(1.08);
}

.gallery-card:hover .gallery-view,
.gallery-card:focus-within .gallery-view {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.gallery-card figcaption {
  position: absolute;
  z-index: 1;
  right: 15px;
  bottom: 13px;
  left: 15px;
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.gallery-card:hover img {
  transform: scale(1.08);
}

.gallery-card:hover::after,
.gallery-card:focus-within::after,
.gallery-card:hover figcaption {
  opacity: 1;
}

.gallery-card:hover figcaption {
  transform: translateY(0);
}

.gallery-lightbox .modal-dialog {
  width: min(1100px, calc(100vw - 32px));
  max-width: 1100px;
  margin-right: auto;
  margin-left: auto;
}

.gallery-lightbox .modal-content {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(3, 15, 32, 0.97);
  box-shadow: 0 34px 90px rgba(0, 5, 16, 0.62);
}

.gallery-lightbox .lightbox-media {
  position: relative;
  display: grid;
  min-height: 260px;
  max-height: 80vh;
  overflow: hidden;
  background: #020c1b;
  place-items: center;
}

.gallery-lightbox .lightbox-media img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: contain;
}

.gallery-lightbox .btn-close {
  position: absolute;
  z-index: 5;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  background-color: rgba(3, 20, 43, 0.7);
  background-size: 12px;
  box-shadow: none;
  opacity: 0.92;
  backdrop-filter: blur(8px);
}

.gallery-lightbox .btn-close:hover,
.gallery-lightbox .btn-close:focus {
  border-color: var(--gold-light);
  background-color: rgba(3, 20, 43, 0.94);
  opacity: 1;
}

.lightbox-caption {
  padding: 16px 24px;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.modal-backdrop.show {
  opacity: 0.86;
}

.album-viewer .modal-dialog {
  width: min(1180px, calc(100vw - 32px));
  max-width: 1180px;
  max-height: calc(100vh - 32px);
  margin-right: auto;
  margin-left: auto;
}

.album-viewer .modal-content {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: #f5f8fb;
  box-shadow: 0 34px 90px rgba(0, 5, 16, 0.58);
}

.album-viewer .modal-header {
  position: relative;
  padding: 19px 76px 19px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  background: linear-gradient(120deg, #04162e, #0b3156);
}

.album-viewer .modal-header span {
  display: block;
  margin-bottom: 3px;
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.album-viewer .modal-title {
  color: var(--white);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}

.album-viewer .btn-close {
  position: absolute;
  top: 50%;
  right: 24px;
  margin: 0;
  box-shadow: none;
  opacity: 0.85;
  transform: translateY(-50%);
}

.album-viewer .btn-close:hover,
.album-viewer .btn-close:focus {
  opacity: 1;
}

.album-viewer .modal-body {
  padding: 0;
  background: #020c1b;
}

.album-slider {
  position: relative;
  display: grid;
  min-height: 520px;
  grid-template-columns: 64px minmax(0, 1fr) 64px;
  align-items: center;
}

.album-slide-frame {
  display: grid;
  height: min(68vh, 680px);
  min-height: 420px;
  overflow: hidden;
  place-items: center;
}

.album-slide-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.2s ease, transform 0.35s ease;
}

.album-slide-frame img.is-changing {
  opacity: 0;
  transform: scale(0.985);
}

.album-slide-arrow {
  position: relative;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 50%;
  color: var(--white);
  background: rgba(7, 31, 58, 0.7);
  place-self: center;
  place-items: center;
  backdrop-filter: blur(8px);
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.album-slide-arrow:hover,
.album-slide-arrow:focus-visible {
  border-color: var(--gold-light);
  color: var(--navy);
  background: var(--gold-light);
  outline: none;
  transform: scale(1.07);
}

.album-slide-details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 24px 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: var(--white);
}

.album-slide-details p {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.album-slide-details span {
  flex: 0 0 auto;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 600;
}

.album-slide-dots {
  display: flex;
  min-height: 27px;
  padding: 7px 24px 12px;
  justify-content: center;
  gap: 8px;
}

.album-slide-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.35);
  transition: width 0.25s ease, background 0.25s ease;
}

.album-slide-dot.active {
  width: 22px;
  background: var(--gold-light);
}

.gallery-arrow {
  position: absolute;
  z-index: 5;
  top: 50%;
  display: grid;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  color: var(--white);
  background: rgba(3, 20, 43, 0.5);
  place-items: center;
  transform: translateY(-50%);
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.gallery-arrow:hover,
.gallery-arrow:focus {
  color: var(--navy);
  background: var(--gold-light);
  transform: translateY(-50%) scale(1.06);
}

.gallery-arrow.prev {
  left: 0;
}

.gallery-arrow.next {
  right: 0;
}

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}

.gallery-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
  transition: width 0.25s ease, border-radius 0.25s ease, background 0.25s ease;
}

.gallery-dot.active {
  width: 22px;
  border-radius: 10px;
  background: var(--gold-light);
}

.contact-section {
  background-color: #fff;
}

.contact-intro {
  margin-bottom: 0;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 0;
  padding: 6px 0 6px 34px;
  border-left: 1px solid #e1e6eb;
  font-style: normal;
}

.contact-list a,
.contact-list > span {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #142440;
  font-size: 13px;
  font-weight: 500;
  transition: color 0.25s ease;
}

.contact-list a:hover {
  color: #b57e25;
}

.contact-icon {
  display: grid;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border: 1.5px solid #0c2446;
  border-radius: 50%;
  color: #0c2446;
  font-size: 16px;
  place-items: center;
}

.contact-card {
  padding: 28px 26px 22px;
  border-radius: 13px;
  background: linear-gradient(145deg, #071b38, #0b2d53);
  box-shadow: var(--shadow);
}

.contact-card h3 {
  margin: 0 0 17px;
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.form-control {
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid rgba(8, 33, 62, 0.15);
  border-radius: 6px;
  color: var(--text);
  background: #f9fbfd;
  font-size: 13px;
  box-shadow: inset 0 1px 2px rgba(2, 16, 34, 0.06);
}

.form-control::placeholder {
  color: #8b95a5;
}

.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 0.2rem rgba(212, 166, 74, 0.18);
}

textarea.form-control {
  min-height: 90px;
  resize: vertical;
}

.contact-card .mb-3 {
  margin-bottom: 8px !important;
}

.contact-card .btn {
  min-height: 43px;
  padding: 10px 18px;
}

.invalid-feedback {
  color: #ffb7b7;
  font-size: 11px;
}

.form-status {
  min-height: 18px;
  margin: 8px 0 0;
  color: #d7ecdf;
  font-size: 11px;
  text-align: center;
}

.site-footer {
  padding: 28px 0;
  color: rgba(255, 255, 255, 0.64);
  background: linear-gradient(110deg, #03152c, #071e3b);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}

.footer-brand {
  justify-self: start;
}

.footer-inner > p {
  margin: 0;
  font-size: 11px;
  text-align: center;
}

.social-links {
  display: flex;
  justify-self: end;
  gap: 12px;
}

.social-links a {
  display: grid;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.84);
  font-size: 15px;
  place-items: center;
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.social-links a:hover,
.social-links a:focus {
  border-color: var(--gold-light);
  color: var(--navy);
  background: var(--gold-light);
  transform: translateY(-3px);
}

.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.2, 0.75, 0.2, 1);
}

.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1199.98px) {
  .hero-copy {
    width: min(580px, 58%);
  }

  .feature-item {
    gap: 11px;
    padding: 8px 16px;
  }

  .feature-icon {
    width: 46px;
    height: 46px;
    font-size: 30px;
  }

  .feature-icon img {
    width: 44px;
    height: 44px;
  }

  .feature-item h2 {
    font-size: 12px;
  }

  .stats-grid {
    grid-template-columns: repeat(3, auto);
  }

  .about-image-wrap {
    width: min(100%, 560px);
  }

  .about-image-wrap img {
    height: 380px;
  }

  .gallery-track {
    grid-auto-columns: calc((100% - 36px) / 4);
  }

  .gallery-card img {
    height: 240px;
  }

  .contact-list {
    padding-left: 30px;
  }
}

@media (max-width: 991.98px) {
  :root {
    --nav-height: 76px;
  }

  .navbar {
    min-height: var(--nav-height);
    background: rgba(4, 19, 38, 0.98);
  }

  .navbar-collapse {
    position: absolute;
    top: 100%;
    right: 12px;
    left: 12px;
    padding: 18px 22px 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0 0 16px 16px;
    background: rgba(4, 19, 38, 0.985);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.24);
  }

  .navbar-nav {
    gap: 0;
    margin-bottom: 14px;
  }

  .navbar .nav-link {
    padding: 11px 4px !important;
  }

  .navbar .nav-link::after {
    right: auto;
    width: 34px;
  }

  .nav-book {
    width: 100%;
  }

  .hero-section {
    min-height: auto;
  }

  .hero-inner {
    min-height: 900px;
    padding-top: 70px;
    padding-bottom: 345px;
  }

  .hero-copy {
    width: 68%;
  }

  .hero-copy h1 {
    font-size: 50px;
  }

  .feature-panel {
    grid-template-columns: repeat(2, 1fr);
    min-height: 250px;
  }

  .feature-item:nth-child(2) {
    border-right: 0;
  }

  .feature-item:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .section-pad {
    padding: 72px 0;
  }

  .about-image-wrap {
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
  }

  .about-image-wrap img {
    height: 390px;
  }

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

  .album-feature {
    min-height: 350px;
  }

  .album-copy {
    min-height: 350px;
  }

  .gallery-track {
    grid-auto-columns: calc((100% - 20px) / 3);
  }

  .gallery-card img {
    height: 235px;
  }

  .contact-list {
    padding-left: 0;
    border-left: 0;
  }

  .contact-card {
    max-width: 680px;
    margin: 0 auto;
  }
}

@media (max-width: 767.98px) {
  .brand-copy strong {
    font-size: 16px;
  }

  .hero-section {
    background-position: 62% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(3, 20, 44, 0.97) 0%, rgba(3, 25, 52, 0.77) 80%, rgba(4, 26, 48, 0.5) 100%),
      linear-gradient(0deg, rgba(3, 20, 44, 0.8) 0%, transparent 60%);
  }

  .hero-inner {
    min-height: 940px;
    padding-top: 60px;
    padding-bottom: 480px;
  }

  .hero-copy {
    align-self: flex-start;
    width: 100%;
  }

  .eyebrow {
    font-size: 14px;
  }

  .hero-copy h1 {
    font-size: clamp(36px, 10vw, 46px);
  }

  .hero-lead {
    font-size: 15px;
  }

  .feature-panel {
    grid-template-columns: 1fr;
    min-height: 420px;
    padding: 12px 20px;
  }

  .feature-item {
    padding: 12px 8px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .feature-item:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .feature-item:last-child {
    border-bottom: 0;
  }

  .section-pad {
    padding: 62px 0;
  }

  .section-title {
    font-size: 36px;
  }

  .section-copy {
    font-size: 15px;
  }

  .about-section.section-pad {
    padding: 52px 0 58px;
  }

  .about-section .row {
    --bs-gutter-y: 2.25rem;
  }

  .about-section .section-kicker {
    margin-bottom: 12px;
    font-size: 13px;
    letter-spacing: 0.08em;
  }

  .about-section .section-title {
    margin-bottom: 18px;
    font-size: clamp(31px, 8.5vw, 38px);
    line-height: 1.12;
    letter-spacing: -0.035em;
  }

  .about-section .section-copy {
    margin-bottom: 0;
    font-size: 14.5px;
    line-height: 1.75;
  }

  .stats-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin: 28px 0 26px;
    padding: 14px 8px;
    border: 1px solid rgba(8, 33, 62, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 18px 44px rgba(7, 27, 47, 0.09);
    backdrop-filter: blur(10px);
  }

  .stat-item,
  .stat-item:not(:first-child) {
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    min-width: 0;
    padding: 9px 5px;
    border-right: 1px solid rgba(7, 27, 47, 0.1);
    border-bottom: 0;
    text-align: center;
  }

  .stat-item:last-child {
    border-right: 0;
    border-bottom: 0;
  }

  .stat-item > i {
    font-size: 27px;
  }

  .stat-item strong {
    font-size: 20px;
  }

  .stat-item small {
    margin-top: 6px;
    font-size: 7.5px;
    line-height: 1.3;
    letter-spacing: 0.035em;
  }

  .about-section .btn-navy {
    display: flex;
    width: 100%;
    min-width: 0;
    align-items: center;
    justify-content: center;
  }

  .about-image-wrap {
    border-radius: 16px;
  }

  .about-image-wrap img {
    height: 280px;
    object-position: center 50%;
  }

  .album-section.section-pad {
    padding: 52px 0 56px;
  }

  .album-grid {
    gap: 28px;
  }

  .album-feature,
  .album-copy {
    min-height: 315px;
  }

  .album-feature-overlay {
    background:
      linear-gradient(90deg, rgba(3, 19, 41, 0.94) 0%, rgba(3, 23, 48, 0.72) 58%, rgba(3, 24, 48, 0.15) 100%),
      linear-gradient(0deg, rgba(2, 15, 34, 0.5), transparent 65%);
  }

  .album-copy {
    width: min(300px, 70%);
    padding-left: 24px;
  }

  .album-copy h2 {
    font-size: 20px;
  }

  .album-thumbnail {
    height: 66px;
  }

  .album-slider {
    min-height: 420px;
    grid-template-columns: 50px minmax(0, 1fr) 50px;
  }

  .album-slide-frame {
    height: 58vh;
    min-height: 360px;
  }

  .gallery-stage {
    padding: 0 46px;
  }

  .gallery-track {
    grid-auto-columns: calc((100% - 10px) / 2);
  }

  .gallery-card img {
    height: 225px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 22px;
  }

  .footer-brand,
  .social-links {
    justify-self: center;
  }
}

@media (max-width: 479.98px) {
  .brand img {
    width: 41px;
    height: 45px;
  }

  .brand-copy strong {
    font-size: 14px;
  }

  .brand-copy small {
    font-size: 8px;
  }

  .hero-inner {
    min-height: 970px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

  .about-section .section-title {
    font-size: 30px;
  }

  .about-image-wrap img {
    height: 230px;
  }

  .album-feature,
  .album-copy {
    min-height: 300px;
  }

  .album-copy {
    width: 78%;
    padding: 28px 0 26px 20px;
  }

  .album-copy p {
    font-size: 11px;
  }

  .album-thumbnails {
    grid-auto-columns: 88px;
  }

  .album-viewer .modal-dialog {
    width: calc(100vw - 18px);
  }

  .album-viewer .modal-header {
    padding: 16px 60px 16px 18px;
  }

  .album-viewer .btn-close {
    right: 18px;
  }

  .album-viewer .modal-title {
    font-size: 18px;
  }

  .album-slider {
    min-height: 360px;
    grid-template-columns: 42px minmax(0, 1fr) 42px;
  }

  .album-slide-frame {
    height: 52vh;
    min-height: 300px;
  }

  .album-slide-arrow {
    width: 34px;
    height: 34px;
  }

  .album-slide-details {
    padding-right: 16px;
    padding-left: 16px;
  }

  .stats-grid {
    padding: 12px 4px;
  }

  .stat-item,
  .stat-item:not(:first-child) {
    padding: 8px 3px;
  }

  .stat-item > i {
    font-size: 24px;
  }

  .stat-item strong {
    font-size: 18px;
  }

  .stat-item small {
    font-size: 7px;
  }

  .gallery-stage {
    padding: 0 38px;
  }

  .gallery-track {
    grid-auto-columns: 100%;
  }

  .gallery-card img {
    height: 300px;
  }

  .gallery-arrow {
    width: 34px;
    height: 34px;
  }

  .gallery-lightbox .modal-dialog {
    width: calc(100vw - 20px);
  }

  .gallery-lightbox .lightbox-media,
  .gallery-lightbox .lightbox-media img {
    max-height: 76vh;
  }

  .section-title {
    font-size: 32px;
  }

  .contact-card {
    padding: 24px 18px 18px;
  }
}

@media (max-width: 991.98px) {
  .booking-shell {
    padding: 38px;
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .booking-intro > p,
  .booking-assurance {
    max-width: 620px;
  }
}

@media (max-width: 767.98px) {
  .booking-section.section-pad {
    padding: 58px 0;
  }

  .booking-shell {
    padding: 29px;
    border-radius: 23px;
    gap: 28px;
  }

  .booking-intro h2 {
    font-size: clamp(31px, 9vw, 40px);
  }

  .booking-options {
    grid-template-columns: 1fr;
  }

  .booking-card {
    min-height: 278px;
  }
}

@media (max-width: 479.98px) {
  .booking-shell {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .booking-intro h2 {
    font-size: 30px;
  }

  .booking-card {
    min-height: 270px;
    padding: 25px 22px 22px;
  }
}

@media (hover: none) {
  .gallery-view {
    top: 14px;
    right: 14px;
    left: auto;
    width: 42px;
    height: 42px;
    opacity: 1;
    transform: none;
  }

  .gallery-view:hover,
  .gallery-view:focus-visible,
  .gallery-card:hover .gallery-view,
  .gallery-card:focus-within .gallery-view {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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