:root {
  --ink: #2d2d2d;
  --ink-soft: #6b4a3d;
  --sea: #82292a;
  --sea-dark: #5b1d1d;
  --sun: #e0c59d;
  --sand: #f2e3cc;
  --card: #ffffff;
  --line: #d8c2a2;
  --ok: #5a7e48;
  --danger: #82292a;
  --radius: 18px;
  --shadow: 0 12px 30px rgba(66, 34, 18, 0.16);
  --maxw: 1400px;
  --section-maxw: 1400px;
  --header-shrink: 1;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
  overflow-anchor: none;
}

body {
  font-family: "Lora", Georgia, serif;
  color: var(--ink);
  background: #f0ddbf;
  line-height: 1.58;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

a {
  color: var(--sea);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

p {
  margin: 0 0 1rem;
}

ul,
ol {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
}

h1,
h2,
h3,
h4 {
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.15;
  margin: 0 0 0.8rem;
}

h1 {
  font-size: clamp(2rem, 4.8vw, 3.5rem);
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.3rem);
}

h3 {
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
}

small,
.meta,
.kicker {
  color: var(--ink-soft);
}

.skip-link {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
  padding: 10px 12px;
  z-index: 999;
  background: #fff;
  border-radius: 10px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 140;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.brand img {
  width: 205px;
  max-width: 50vw;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.35));
}

.nav-toggle {
  display: none;
  margin-left: auto;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 225, 190, 0.65);
  background: rgba(67, 25, 25, 0.9);
  color: #fff;
  border-radius: 9px;
  padding: 0;
  cursor: pointer;
}

.nav-toggle-icon {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
}

.nav-toggle-bar {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-drawer-head,
.nav-drawer-foot,
.nav-overlay {
  display: none;
}

.nav-drawer-close {
  border: 1px solid rgba(93, 59, 38, 0.28);
  background: #fff7ea;
  color: #3b271c;
  border-radius: 8px;
  padding: 0.2rem 0.5rem;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
}

.mobile-drawer__body {
  min-height: 0;
}

.nav {
  margin-left: auto;
  align-self: flex-end;
  margin-top: 0;
  margin-right: 0.65rem;
  padding-right: 0.95rem;
  margin-bottom: 0;
}

.nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: flex-end;
  gap: calc(0.44rem - 0.18rem * var(--header-shrink));
}

.nav a,
.nav .sub-toggle {
  color: #fff;
  border-radius: 8px;
  padding: calc(0.62rem - 0.27rem * var(--header-shrink)) calc(0.9rem - 0.34rem * var(--header-shrink));
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  text-decoration: none;
  border: 1px solid rgba(255, 225, 190, 0.58);
  background: rgba(67, 25, 25, 0.9);
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 3px 8px rgba(49, 16, 16, 0.24);
}

.nav a:hover,
.nav .sub-toggle:hover,
.nav a[data-active="true"] {
  background: rgba(130, 41, 42, 0.98);
  border-color: rgba(255, 225, 190, 0.76);
  color: #fff;
  text-decoration: none;
}

.nav .cta {
  background: linear-gradient(180deg, #d64034 0%, #a71f1b 100%);
  color: #fff;
  border: 1px solid rgba(255, 224, 184, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 9px 20px rgba(91, 29, 29, 0.44);
  font-weight: 800;
  letter-spacing: 0.35px;
  text-transform: none;
  padding: calc(0.7rem - 0.27rem * var(--header-shrink)) calc(1.05rem - 0.34rem * var(--header-shrink));
}

.nav .cta:hover {
  background: linear-gradient(180deg, #e35346 0%, #b52b26 100%);
  border-color: #ffe6c4;
  color: #fff;
}

.nav-call {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.08rem;
  min-height: 44px;
  flex: 0 0 auto;
  white-space: nowrap;
  margin-top: 0;
  margin-left: clamp(1rem, 1.8vw, 1.4rem);
  padding: calc(0.34rem - 0.12rem * var(--header-shrink)) calc(0.62rem - 0.2rem * var(--header-shrink));
  border-radius: 8px;
  border: 1px solid #d7bb97;
  background: #f2e3cc;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.62), 0 3px 8px rgba(82, 44, 24, 0.18);
}

.nav-call-kicker {
  margin: 0;
  color: #6e4d3d;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.1;
}

.nav-call-link {
  color: #4d1c1d;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.15;
  text-decoration: none;
  white-space: nowrap;
}

.nav-call-link:hover,
.nav-call-link:focus-visible {
  color: #5f2223;
  text-decoration: underline;
}

.has-sub {
  position: relative;
  padding-bottom: 8px;
  margin-bottom: -8px;
}

.has-sub::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 10px;
}

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 0.4rem;
  display: none;
  z-index: 15;
}

.submenu a {
  display: block;
  color: #2b1b15;
  background: #fffaf2;
  border: 1px solid #ead3b6;
  border-radius: 8px;
  padding: 0.55rem 0.65rem;
  font-weight: 600;
}

.submenu a:hover {
  background: #f3dfc4;
  color: #2b1b15;
}

.has-sub:hover .submenu,
.has-sub:focus-within .submenu,
.has-sub[data-open="true"] .submenu {
  display: block;
}

.page {
  width: min(var(--maxw), 94vw);
  margin: 1.25rem auto 1.8rem;
  flex: 1 0 auto;
}

.legacy-masthead {
  width: 100%;
  max-width: none;
  margin: 0;
}

.legacy-masthead-inner {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
  justify-content: space-between;
  min-height: calc(166px - 84px * var(--header-shrink));
  padding: calc(0.28rem - 0.12rem * var(--header-shrink)) calc(1rem - 0.38rem * var(--header-shrink)) 0.78rem;
  background: linear-gradient(95deg, #2e7fc7 0%, #b7d9ef 46%, #e8f3f9 100%);
  border: 0;
  border-radius: 0;
  overflow: visible;
  box-shadow: 0 calc(7px - 2px * var(--header-shrink)) calc(18px - 4px * var(--header-shrink))
    rgba(52, 14, 14, 0.22);
}

.legacy-rotate-wrap {
  padding: 0;
  display: block;
  background: transparent;
}

.legacy-rotate-frame {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  border-radius: 0;
  overflow: hidden;
  border: 0;
  box-shadow: none;
}

.legacy-rotate-img {
  width: 100%;
  height: auto;
  max-height: 176px;
  object-fit: contain;
  transition: opacity 0.26s ease;
  opacity: 1;
}

.legacy-rotate-img.is-fading {
  opacity: 0.15;
}

.legacy-logo-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  gap: clamp(0.45rem, 1vw, 0.78rem);
  flex-wrap: nowrap;
  flex: 0 0 auto;
  padding-left: 0.85rem;
  margin-left: 0.5rem;
  margin-bottom: 0;
  background: transparent;
}

.legacy-logo-link {
  display: inline-flex;
  align-items: center;
}

.legacy-logo {
  width: auto;
  max-width: min(calc(46vw - 18vw * var(--header-shrink)), calc(560px - 242px * var(--header-shrink)));
  max-height: calc(156px - 82px * var(--header-shrink));
  object-fit: contain;
  filter: drop-shadow(0 2px 1px rgba(255, 255, 255, 0.8));
}

.masthead-book-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  padding: 0.5rem 0.66rem;
  border-radius: 9px;
  background: var(--sun);
  color: #3f2014;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.2px;
  text-transform: none;
  box-shadow: 0 6px 14px rgba(91, 29, 29, 0.32);
}

.masthead-book-btn:hover {
  background: #f2dec0;
  text-decoration: none;
}

.page-main {
  min-width: 0;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  background: #faf7f0;
  border: 1px solid #ead9bd;
  border-radius: 20px;
  box-shadow: 0 10px 24px rgba(66, 34, 18, 0.08);
  padding: 0.9rem 1.1rem 1.35rem;
}

.page-home .page {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-inline: clamp(12px, 2vw, 28px);
  background: #faf7f0;
}

.page-home .page-main {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: #faf7f0;
}

body.page-home {
  background: #faf7f0;
}

.page-home .home-hero-row {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.page-home .hero-feature {
  border-radius: 0;
  border-top: 0;
  border-left: 0;
  border-right: 0;
}

.page-home .hero-feature-media {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.page-home .hero-feature-content {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

@media (min-width: 861px) {
  .page-home .hero-feature-content {
    padding-left: clamp(28px, 5.2vw, 96px);
    padding-right: clamp(28px, 5.2vw, 96px);
  }
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding-inline: clamp(16px, 3vw, 40px);
}

.page-home .home-quick > .container,
.page-home .home-accolade > .container,
.page-home .home-fleet > .container,
.page-home .home-services > .container,
.page-home .home-countup > .container,
.page-home .home-recent-groups > .container,
.page-home .home-gallery > .container,
.page-home .home-trust > .container,
.page-home .reviews-section > .container {
  max-width: none;
  padding-inline: clamp(28px, 5.2vw, 96px);
}

.page-home .home-quick,
.page-home .home-accolade,
.page-home .home-fleet,
.page-home .home-services,
.page-home .home-countup,
.page-home .home-recent-groups,
.page-home .home-gallery,
.page-home .home-trust {
  background: #faf7f0;
}

.page-home .home-trust {
  background: linear-gradient(180deg, #f8eee0 0%, #f2e4cf 100%);
}

.page-home .home-trust > .container {
  padding-inline: clamp(20px, 3.6vw, 64px);
}

.home-species-split {
  background: transparent;
  padding-block: clamp(12px, 2.5vh, 24px);
  margin: 0;
}

.home-species-split__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 320px;
  align-items: stretch;
  margin: 0;
  background: linear-gradient(180deg, #f8eee0 0%, #f2e4cf 100%);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

.home-species-split__media {
  min-height: 100%;
  max-height: 380px;
}

.home-species-split__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-species-split__content {
  padding: clamp(24px, 3vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(248, 238, 224, 0.72);
}

.home-species-split__content p {
  color: #4f3729;
}

.home-species-split__list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.home-species-split__list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.home-species-split__note {
  margin-bottom: 0;
}

.page-home .band {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.page-home .reviews-section {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.band {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  padding-block: clamp(3rem, 5.8vw, 4.2rem);
}

.band--light {
  background: #f8f4eb;
}

.band--paper {
  background: transparent;
}

.band--white {
  background: #fff;
}

.reviews-section {
  margin-top: 0;
  margin-bottom: 0;
  position: relative;
  background-color: #2b3f5f;
  background-image:
    linear-gradient(180deg, rgba(26, 37, 58, 0.45) 0%, rgba(27, 20, 32, 0.62) 100%),
    url("../images/reviews-bridge-sunset.webp");
  background-size: 175% auto;
  background-position: center 44%;
  background-repeat: no-repeat;
  border: 0;
  border-bottom: 0;
  border-radius: 0;
  padding: clamp(2.2rem, 4.8vw, 4rem) 0;
  box-shadow: none;
}

.reviews-head {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1.05rem;
  margin-bottom: 2.25rem;
  flex-wrap: wrap;
}

.reviews-section h2 {
  margin: 0;
  font-size: clamp(1.7rem, 2.7vw, 2.2rem);
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: #fff3df;
  text-align: center;
  text-shadow: 0 1px 3px rgba(8, 10, 17, 0.45);
}

.reviews-carousel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  grid-template-areas:
    "prev viewport next"
    ". dots .";
  align-items: center;
  column-gap: 1.25rem;
  row-gap: 1.25rem;
}

.reviews-carousel-viewport {
  grid-area: viewport;
  overflow: hidden;
}

.reviews-carousel-track {
  display: flex;
  margin: 0 -0.62rem;
  transition: transform 0.5s ease;
  will-change: transform;
}

.review-slide {
  flex: 0 0 33.3333%;
  min-width: 0;
  box-sizing: border-box;
  padding: 0 0.62rem;
  display: flex;
  align-items: stretch;
}

.reviews-carousel-btn {
  border: 1px solid #cfb186;
  background: #fff;
  color: #6c2a22;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  font-size: 2rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 5px 12px rgba(66, 34, 18, 0.14);
}

.reviews-carousel-btn:hover {
  background: #faefdd;
}

.reviews-carousel-btn[data-reviews-prev] {
  grid-area: prev;
}

.reviews-carousel-btn[data-reviews-next] {
  grid-area: next;
}

.reviews-carousel-dots {
  grid-area: dots;
  display: flex;
  justify-content: center;
  gap: 0.72rem;
}

.reviews-dot {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  border: 0;
  background: #c7b293;
  padding: 0;
  cursor: pointer;
}

.reviews-dot[aria-current="true"] {
  background: #8d1f26;
}

.site-review {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  background: #fff;
  border: 1px solid #ead8be;
  border-radius: 16px;
  padding: 1.12rem 1.16rem;
  min-height: 19rem;
  box-shadow: 0 8px 18px rgba(66, 34, 18, 0.11);
  width: 100%;
  flex: 1;
}

.site-review-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.site-review-stars {
  color: #e2a824;
  font-size: 1.12rem;
  letter-spacing: 0.06em;
  font-weight: 700;
  order: 2;
  text-align: right;
}

.site-review-source {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: clamp(21px, 2.25vw, 30px);
  flex: 0 0 auto;
  order: 1;
}

.site-review-source img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 2px 4px rgba(6, 9, 14, 0.25));
}

.site-review p {
  margin: 0;
  font-size: 1.14rem;
  line-height: 1.52;
}

.site-review cite {
  font-style: normal;
  font-size: 0.98rem;
  font-weight: 700;
}

.hero {
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  overflow: visible;
  box-shadow: none;
}

.hero-grid {
  display: block;
  padding: clamp(1.2rem, 3vw, 2rem);
}

.hero-feature {
  border-radius: 18px;
  border: 1px solid #cfbc9d;
  overflow: hidden;
  background: #1f3348;
  box-shadow: 0 14px 26px rgba(43, 20, 9, 0.2);
}

.hero-feature .hero-grid {
  padding: 0;
}

.hero-feature-media {
  position: relative;
  min-height: clamp(340px, 47vw, 560px);
  background-color: #2f4b6b;
  background-image:
    linear-gradient(118deg, rgba(8, 15, 28, 0.16) 0%, rgba(8, 15, 28, 0.38) 100%),
    var(--hero-image);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: stretch;
}

.hero-feature-content {
  width: 100%;
  margin: 0;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  padding: clamp(1.5rem, 4.2vw, 4.2rem) clamp(1.2rem, 5.2vw, 6.2rem) clamp(1.5rem, 4vw, 3.4rem);
}

.hero-copy-card {
  width: min(62%, 820px);
  max-width: 64ch;
  margin: 0;
  background: linear-gradient(135deg, rgba(10, 24, 41, 0.56), rgba(10, 24, 41, 0.33));
  border: 1px solid rgba(229, 239, 255, 0.34);
  border-radius: 16px;
  padding: clamp(1.25rem, 2.3vw, 2rem) clamp(1.3rem, 2.5vw, 2.15rem);
  box-shadow: 0 12px 26px rgba(5, 9, 18, 0.34);
  backdrop-filter: blur(2px);
  display: flex;
  flex-direction: column;
  gap: clamp(0.9rem, 1.7vw, 1.3rem);
}

.hero-feature h1 {
  color: #fff;
  font-size: clamp(2.25rem, 4.6vw, 3.9rem);
  font-weight: 700;
  line-height: 1.02;
  text-shadow: 0 3px 14px rgba(3, 8, 18, 0.92);
  margin: 0;
}

.hero-subline {
  color: rgba(245, 247, 250, 0.95);
  font-size: clamp(1.02rem, 1.55vw, 1.32rem);
  font-style: normal;
  font-weight: 600;
  line-height: 1.4;
  max-width: 52ch;
  margin: 0;
  text-shadow: 0 2px 9px rgba(3, 8, 18, 0.88);
}

.hero-feature .hero-subline {
  color: rgba(245, 247, 250, 0.93);
}

.hero-feature-actions {
  align-items: center;
  justify-content: flex-start;
  gap: 0.7rem;
  margin-top: 0.2rem;
}

.hero-feature .btn {
  min-width: clamp(220px, 22vw, 280px);
  width: auto;
  padding: 0.82rem 1.35rem;
  text-align: center;
  font-size: 1rem;
  border-radius: 12px;
  letter-spacing: 0.01em;
}

.hero-feature .btn-primary {
  background: linear-gradient(180deg, #c72a24, #a61413);
  color: #fff;
  border: 1px solid rgba(100, 12, 10, 0.88);
  box-shadow: 0 8px 18px rgba(76, 14, 13, 0.3);
}

.hero-feature .btn-primary:hover {
  background: linear-gradient(180deg, #cf332d, #b21d1b);
}

.hero-feature .btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.hero-feature .btn-outline {
  background: #fff;
  color: #1d2230;
  border: 1px solid #d6d6d6;
}

.hero-feature .btn-outline:hover {
  background: #f4f4f4;
}

.home-accolade {
  margin-top: clamp(0.7rem, 1.8vw, 1.25rem);
  margin-bottom: clamp(0.55rem, 1.4vw, 0.95rem);
  padding: clamp(1.15rem, 2.3vw, 1.6rem) 0 clamp(1.35rem, 2.7vw, 1.9rem);
  border-top: 0;
  border-bottom: 0;
  position: relative;
}

.home-accolade-inner {
  width: 100%;
  max-width: min(980px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.8rem, 1.8vw, 1.2rem);
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.home-accolade img {
  width: clamp(56px, 7.4vw, 78px);
  height: auto;
  flex: 0 0 auto;
}

.home-accolade p {
  margin: 0;
  color: #1b2740;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.2rem, 2.3vw, 1.72rem);
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  letter-spacing: 0.01em;
}

.home-accolade strong {
  color: #9b1f24;
}

.hero-content {
  position: relative;
}

.hero .kicker {
  color: var(--sea);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 700;
}

.hero p {
  color: var(--ink);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.btn {
  border-radius: 11px;
  padding: 0.66rem 0.95rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-block;
}

.btn-primary {
  background: var(--sun);
  color: #1e1401;
}

.btn-primary:hover {
  background: #f2dec0;
  text-decoration: none;
}

.btn-outline {
  border-color: #d5b082;
  color: #3a1d13;
  background: #f7ead6;
}

.btn-outline:hover {
  background: #f0dcc1;
  text-decoration: none;
}

.floating-book-now {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 230;
  background: #5b332e;
  color: #fff;
  border: 1px solid rgba(255, 225, 190, 0.58);
  border-radius: 999px;
  padding: 0.7rem 0.95rem;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.12px;
  line-height: 1;
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 6px 18px rgba(42, 22, 14, 0.28);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

body.show-floating-book .floating-book-now {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.floating-book-now:hover,
.floating-book-now:focus-visible {
  color: #fff;
  background: #6a3d37;
  text-decoration: none;
}

.floating-book-now:focus-visible {
  outline: 2px solid #fff4df;
  outline-offset: 2px;
}

.hero-media {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(240, 205, 160, 0.38);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.24);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0.25rem;
  background: rgba(33, 18, 18, 0.22);
}

.hero-media-inline {
  width: 100%;
  margin: 0.75rem 0 0;
}

.hero-rotate-img {
  width: min(100%, 224px);
  height: auto;
  max-height: 318px;
  object-fit: contain;
  border-radius: 12px;
  transition: opacity 0.26s ease;
  opacity: 1;
  margin: 0 auto;
}

.hero-rotate-img.is-fading {
  opacity: 0.15;
}

.hero-static-img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  border-radius: 12px;
  margin: 0 auto;
}

.hero-lead {
  margin-top: 0.9rem;
}

.panel,
.card,
.notice,
.quote,
.table-wrap,
.form-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1rem, 2.2vw, 1.4rem);
  box-shadow: 0 6px 20px rgba(66, 34, 18, 0.09);
}

.section {
  margin-top: 1rem;
}

.home-quick {
  margin-top: 0;
  margin-bottom: 0;
  padding: clamp(0.75rem, 1.7vw, 1.15rem) 0 0;
  border-top: 0;
  border-bottom: 0;
}

.home-quick-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.2vw, 1.45rem);
}

.home-quick-item {
  background: #fff;
  border: 1px solid #e5d5be;
  border-radius: 14px;
  margin-top: clamp(0.25rem, 0.7vw, 0.5rem);
  padding: clamp(1.35rem, 2.5vw, 1.75rem) 1rem 1.18rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.52rem;
}

.home-quick-icon {
  width: clamp(48px, 4.8vw, 62px);
  height: clamp(48px, 4.8vw, 62px);
  color: var(--sea);
  display: grid;
  place-items: center;
}

.home-quick-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-quick-item-title {
  margin: 0;
  color: #392317;
  font-size: clamp(1.14rem, 1.55vw, 1.24rem);
  font-weight: 700;
  line-height: 1.1;
}

.home-quick-item p {
  margin: 0;
  color: #4e382b;
  font-size: clamp(0.92rem, 1.08vw, 1rem);
  line-height: 1.5;
  max-width: 34ch;
}

.home-open {
  margin-top: 0;
  padding: 0;
  border-top: 0;
}

.home-hero-row {
  display: block;
}

.home-fleet {
  margin-top: clamp(0.45rem, 1.1vw, 0.75rem);
  margin-bottom: clamp(1rem, 2.2vw, 1.6rem);
  padding: clamp(1.25rem, 2.8vw, 1.9rem) 0 clamp(2rem, 4vw, 2.8rem);
  border: 0;
  border-bottom: 0;
  border-radius: 0;
  position: relative;
}

.home-fleet-head {
  text-align: center;
  margin: 0 auto clamp(1.55rem, 2.6vw, 2.2rem);
  max-width: 560px;
}

.home-fleet-head h2 {
  margin: 0;
  color: #2f2118;
  font-size: clamp(1.9rem, 3vw, 2.55rem);
  line-height: 1.06;
}

.home-fleet-head h2::after {
  content: none;
}

.home-fleet-head p {
  margin: 0.65rem 0 0;
  color: #6f584a;
  font-size: clamp(0.98rem, 1.3vw, 1.1rem);
}

.home-fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.5rem, 2.6vw, 2rem);
}

.home-fleet-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(13, 20, 32, 0.08);
  color: inherit;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.home-fleet-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 28px rgba(13, 20, 32, 0.18);
  border-color: rgba(130, 41, 42, 0.28);
  text-decoration: none;
}

.home-fleet-card:focus-visible {
  outline: 2px solid var(--sea);
  outline-offset: 2px;
}

.home-fleet-card-media {
  height: clamp(170px, 14vw, 214px);
  overflow: hidden;
  background: #eef3f8;
}

.home-fleet-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.26s ease;
}

.home-fleet-card:hover img {
  transform: scale(1.04);
}

.home-fleet-card-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.48rem;
  min-height: 162px;
}

.home-fleet-card h3 {
  margin: 0;
  color: #211813;
  font-size: clamp(1.2rem, 1.5vw, 1.4rem);
  line-height: 1.1;
}

.home-fleet-card p {
  margin: 0;
  color: #59483e;
  font-size: 0.95rem;
  line-height: 1.5;
}

.home-fleet-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--sea);
  font-size: 0.93rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
}

.home-fleet-cta::after {
  content: "→";
  line-height: 1;
}

.home-fleet-card:hover .home-fleet-cta {
  color: var(--sea-dark);
}

.home-services {
  margin-top: clamp(0.45rem, 1.1vw, 0.75rem);
  margin-bottom: clamp(0.55rem, 1.4vw, 0.95rem);
  padding: 0 0 clamp(1.15rem, 2.3vw, 1.65rem);
  border-top: 0;
  border-bottom: 0;
  position: relative;
}

.home-services h2 {
  margin-bottom: 0.95rem;
  text-align: center;
}

.home-services-layout {
  display: grid;
  gap: 0.62rem;
}

.home-services-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.72rem;
  align-items: stretch;
}

.home-service-card {
  display: grid;
  grid-template-columns: minmax(112px, 138px) minmax(0, 1fr);
  gap: 0.72rem;
  align-items: stretch;
  margin: clamp(0.16rem, 0.5vw, 0.36rem);
  background: #f9f2e5;
  border: 1px solid #d8c2a2;
  border-radius: 14px;
  color: #3a2417;
  padding: 0.78rem 0.86rem;
  min-height: 128px;
}

.home-service-thumb {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 108px;
  border-radius: 10px;
  border: 1px solid #d6bf9f;
  box-shadow: 0 4px 10px rgba(66, 34, 18, 0.1);
  object-fit: cover;
}

.home-service-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.home-service-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.08rem;
  line-height: 1.2;
}

.home-service-card p {
  margin: 0;
  font-size: 0.95rem;
  color: #4b362b;
  line-height: 1.45;
}

.home-services-actions {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
}

.home-services-actions .btn {
  min-width: clamp(280px, 34vw, 460px);
  padding: 0.92rem clamp(2rem, 5vw, 3rem);
  border-radius: 13px;
  font-size: clamp(1.02rem, 1.4vw, 1.2rem);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.home-countup {
  margin-top: 0;
  margin-bottom: clamp(1rem, 2.2vw, 1.6rem);
  padding: clamp(0.95rem, 2vw, 1.35rem) 0 clamp(1.3rem, 2.8vw, 2rem);
  border-top: 0;
  border-bottom: 0;
  background: transparent;
}

.page-home .home-countup {
  background: linear-gradient(180deg, #f3e8d6 0%, #ecdcc5 100%);
  border-top: 1px solid #dec6a5;
  border-bottom: 1px solid #dec6a5;
}

.page-home .home-fleet {
  background: linear-gradient(180deg, #f3e8d6 0%, #ecdcc5 100%);
  border-top: 1px solid #dec6a5;
  border-bottom: 1px solid #dec6a5;
}

.home-countup h2 {
  margin-bottom: clamp(1.6rem, 3vw, 2.45rem);
  text-align: center;
  font-size: clamp(1.62rem, 2.6vw, 2.3rem);
  letter-spacing: 0.01em;
  color: #3a271c;
}

.home-countup-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  align-items: stretch;
}

.home-countup-item {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0.6rem clamp(0.85rem, 2.2vw, 1.85rem);
  text-align: center;
}

.home-countup-item + .home-countup-item {
  border-left: 0;
}

.home-countup-value {
  margin: 0 0 0.55rem;
  color: #8d1f26;
  font-family: "Avenir Next", "Segoe UI", "Trebuchet MS", sans-serif;
  font-size: clamp(2.55rem, 4.85vw, 3.62rem);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: 0.015em;
}

.home-countup-value [data-countup] {
  display: inline-flex;
  align-items: baseline;
  gap: 0.04em;
}

.home-countup-value .countup-number {
  display: inline-block;
}

.home-countup-value .countup-suffix {
  display: inline-block;
  font-size: 0.56em;
  font-weight: 600;
  color: var(--ink-soft);
  transform: translateY(-0.16em);
}

.home-countup-label {
  margin: 0;
  color: #4b3427;
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.4;
}

.home-recent-groups {
  margin-top: 0;
  margin-bottom: clamp(0.9rem, 2vw, 1.4rem);
  padding: clamp(1rem, 2.1vw, 1.5rem) 0 clamp(1.2rem, 2.4vw, 1.8rem);
}

.home-recent-groups h2 {
  margin: 0;
  text-align: center;
}

.home-recent-groups > .container > p {
  margin: 0.55rem auto 0;
  max-width: 720px;
  text-align: center;
  color: #4c372b;
}

.home-recent-groups-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 1rem;
}

.home-recent-groups-item {
  display: block;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(69, 42, 28, 0.12);
  background: #fff;
  box-shadow: 0 10px 24px rgba(48, 31, 22, 0.09);
  transition: box-shadow 0.22s ease;
}

.home-recent-groups-item img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.22s ease;
}

.home-recent-groups-item:hover,
.home-recent-groups-item:focus-visible {
  box-shadow: 0 14px 28px rgba(48, 31, 22, 0.14);
}

.home-recent-groups-item:hover img,
.home-recent-groups-item:focus-visible img {
  transform: scale(1.02);
}

.home-gallery {
  margin-top: 0;
  margin-bottom: clamp(0.9rem, 2vw, 1.4rem);
  padding: clamp(1rem, 2.1vw, 1.5rem) 0 clamp(1.2rem, 2.4vw, 1.8rem);
}

.home-gallery-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  margin-bottom: 0.8rem;
  text-align: center;
}

.home-gallery-head h2 {
  margin: 0;
}

.home-gallery-head a {
  font-weight: 700;
  color: #6f2a22;
}

.gallery-grid.home-gallery-grid {
  display: grid !important;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.home-gallery-grid a,
.home-gallery-tile {
  border-radius: 14px;
  border: 1px solid #d9c5a5;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(66, 34, 18, 0.1);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  position: relative;
  isolation: isolate;
}

.home-gallery-grid img {
  display: block;
  aspect-ratio: 4 / 3;
  transition: transform 0.28s ease, filter 0.28s ease;
}

.home-gallery-tile::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(180deg, rgba(58, 20, 22, 0) 0%, rgba(111, 42, 34, 0.9) 100%);
  z-index: 1;
  pointer-events: none;
}

.home-gallery-label {
  position: absolute;
  left: 0.65rem;
  right: 0.65rem;
  bottom: 0.55rem;
  color: #fff;
  font-size: 0.93rem;
  font-weight: 700;
  line-height: 1.25;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.45);
  z-index: 2;
}

.home-gallery-grid a:hover,
.home-gallery-grid a:focus-visible {
  transform: scale(1.01);
  box-shadow: 0 12px 24px rgba(66, 34, 18, 0.16);
}

.home-gallery-grid a:hover img,
.home-gallery-grid a:focus-visible img {
  transform: scale(1.02);
  filter: brightness(0.95);
}

.home-trust {
  margin-top: clamp(0.95rem, 2.1vw, 1.6rem);
  margin-bottom: 0;
  padding: clamp(1.75rem, 3.2vw, 2.6rem) 0 clamp(1.1rem, 2.2vw, 1.65rem);
  background: linear-gradient(180deg, #f8eee0 0%, #f2e4cf 100%);
  border-top: 1px solid #d2b18b;
  border-bottom: 1px solid rgba(107, 31, 31, 0.24);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.page-home .home-species-split + .home-trust,
.page-home .home-seo-band + .home-trust {
  margin-top: 0;
  padding-top: clamp(1.2rem, 2.2vw, 1.8rem);
  border-top-color: rgba(122, 90, 66, 0.24);
}

.home-trust-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(1.35rem, 3vw, 2.5rem);
  align-items: start;
}

.home-trust-copy {
  width: min(100%, 1120px);
  margin: 0 auto;
}

.home-trust-copy h2 {
  margin-bottom: 0.5rem;
  text-align: center;
}

.home-trust-subhead {
  margin: 0 auto;
  max-width: 700px;
  color: #4c372b;
  line-height: 1.5;
  text-align: center;
}

.home-trust-features {
  margin-top: 1.45rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
}

.home-trust-feature {
  border: 1px solid #dbc3a3;
  border-radius: 12px;
  background: #fbf3e6;
  box-shadow: 0 6px 14px rgba(66, 34, 18, 0.08);
  padding: 1rem 0.95rem;
}

.home-trust-feature h3 {
  margin: 0 0 0.4rem;
  font-size: 1.08rem;
  font-weight: 700;
  color: #2f1e15;
  line-height: 1.2;
}

.home-trust-feature p {
  margin: 0;
  color: #4a3529;
  line-height: 1.45;
}

.home-final-cta-actions {
  margin-top: 0.8rem;
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.home-trust-cta-divider {
  margin: 1.05rem auto 0;
  width: min(100%, 760px);
  border-top: 1px solid #d8bc98;
}

.home-trust-cta {
  margin-top: clamp(2.1rem, 4.2vw, 3rem);
  padding-top: clamp(1.35rem, 2.8vw, 2rem);
  border-top: 1px solid rgba(122, 90, 66, 0.32);
  text-align: center;
}

.home-trust-cta h3 {
  margin: 0 0 0.38rem;
  font-size: clamp(1.38rem, 1.95vw, 1.7rem);
  color: #2f1e15;
  line-height: 1.15;
}

.home-trust-cta p {
  margin: 0;
  color: #4b3427;
}

.home-trust-media {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.78rem;
}

.home-trust-kicker {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6f4a3b;
}

.home-trust-logos {
  width: min(100%, 420px);
}

.home-trust-logo {
  display: block;
  width: 100%;
  height: auto;
}

.home-open-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 1.2rem;
  align-items: start;
}

.home-checklist {
  margin: 0.85rem 0 1rem;
}

.home-checklist li {
  margin-bottom: 0.35rem;
}

.captains-cta-center {
  text-align: center;
  margin-top: 1.5rem;
}

.home-seo-band {
  position: relative;
  margin: 0;
  margin-bottom: 0;
  padding-block: clamp(100px, 14vh, 160px);
  background-image: url("/assets/images/WaterCanvasBackground.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.home-seo-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  pointer-events: none;
}

.home-seo-band .container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding-inline: clamp(20px, 3.6vw, 64px);
}

.home-seo-band__card {
  width: min(100%, 820px);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: clamp(32px, 5vw, 64px);
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.home-seo-band__eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
  opacity: 0.7;
  color: #4a3529;
}

.home-seo-band h2 {
  margin: 0 0 16px;
  color: #2f1e15;
}

.home-seo-band p {
  margin: 0;
  color: #333;
  font-size: clamp(1.03rem, 1.12vw, 1.1rem);
  line-height: 1.72;
}

.page-home .home-species-split + .home-seo-band {
  margin-top: 0;
}

.page-home .site-footer {
  margin-top: 0;
}

.home-final-cta {
  position: relative;
  z-index: 0;
  clear: both;
  margin: 0;
  padding: clamp(1.3rem, 2.8vw, 2.15rem) 0 clamp(1.45rem, 3vw, 2.3rem);
  background: linear-gradient(180deg, #f4e7d3 0%, #efdebf 100%);
  border-top: 1px solid #d8bc98;
}

.home-final-cta .home-trust-copy {
  width: min(100%, 980px);
  margin: 0 auto;
}

.home-final-cta .home-trust-cta-divider {
  margin-top: 0;
}

.home-seo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  align-items: start;
}

.home-seo-col h2 {
  margin-bottom: 0.5rem;
}

.home-seo-col p:last-child {
  margin-bottom: 0;
}

.home-open-media {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.home-open-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.home-feature {
  margin-top: 0;
  padding: 0;
  border-top: 0;
}

.home-feature-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.grid {
  display: grid;
  gap: 0.9rem;
}

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

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

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

.card h3 {
  margin-bottom: 0.5rem;
}

.card p:last-child,
.panel p:last-child,
.notice p:last-child,
.quote p:last-child {
  margin-bottom: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 0.6rem;
}

.gallery-grid a {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  display: block;
}

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

.gallery-grid a:hover img {
  transform: scale(1.03);
}

body.lightbox-open {
  overflow: hidden;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.25rem;
  background: rgba(0, 0, 0, 0.82);
}

.gallery-lightbox[hidden] {
  display: none;
}

.gallery-lightbox__image {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 10px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.35);
}

.gallery-lightbox__close,
.gallery-lightbox__nav {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  background: rgba(0, 0, 0, 0.55);
  border-radius: 999px;
  cursor: pointer;
  font-family: "Lora", Georgia, serif;
}

.gallery-lightbox__close {
  top: 1.1rem;
  right: 1.1rem;
  padding: 0.38rem 0.8rem;
  font-size: 0.9rem;
  font-weight: 700;
}

.gallery-lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  width: 2.4rem;
  height: 2.4rem;
  font-size: 1.2rem;
  line-height: 1;
}

.gallery-lightbox__nav--prev {
  left: 1.1rem;
}

.gallery-lightbox__nav--next {
  right: 1.1rem;
}

@media (max-width: 640px) {
  .gallery-lightbox {
    padding: 1rem;
  }

  .gallery-lightbox__nav {
    width: 2.1rem;
    height: 2.1rem;
  }
}

.album-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.9rem;
}

.album-card {
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 8px 22px rgba(66, 34, 18, 0.12);
}

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

.album-card .meta {
  padding: 0.7rem 0.75rem;
}

.page-photo-gallery-index .album-grid {
  gap: 0.75rem;
}

.page-photo-gallery-index .album-card .meta {
  padding: 0.62rem 0.68rem;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.93rem;
}

th,
td {
  border-bottom: 1px solid #d8c2a2;
  text-align: left;
  vertical-align: top;
  padding: 0.65rem 0.55rem;
}

th {
  color: #fff;
  background: #a93537;
}

.callout {
  border-left: 4px solid var(--sun);
  padding-left: 0.8rem;
}

.badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  padding: 0.2rem 0.46rem;
  border-radius: 8px;
  background: #f4ead8;
  color: var(--sea-dark);
}

.badge-warning {
  background: #f0debf;
  color: var(--sea-dark);
}

.alert {
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
  margin: 0 0 0.9rem;
}

.alert-info {
  background: #f7ebd8;
  border: 1px solid #e3c9a0;
}

.alert-warning {
  background: #f2dfbf;
  border: 1px solid #d8bb8d;
}

.alert-danger {
  background: #f7d8da;
  border: 1px solid #d5a2a6;
}

blockquote {
  margin: 0;
  font-size: 1rem;
}

cite {
  font-style: normal;
  font-weight: 700;
  color: var(--ink-soft);
}

form {
  display: grid;
  gap: 0.75rem;
}

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

label {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 0.28rem;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid #ccb08a;
  background: #fff;
  color: #2d2d2d;
  border-radius: 11px;
  padding: 0.58rem 0.68rem;
  font: inherit;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.form-note {
  font-size: 0.82rem;
  color: #5c4334;
}

iframe {
  width: 100%;
  min-height: 460px;
  border: 0;
  border-radius: 14px;
}

.site-footer {
  margin-top: auto;
  background: var(--footer-burgundy, #6b1f1f);
  color: #fff;
  flex: 0 0 auto;
  min-height: clamp(180px, 22vh, 260px);
}

.site-footer__inner {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-block: 1.45rem 1.15rem;
  padding-inline: clamp(24px, 4vw, 64px);
}

.site-footer a {
  color: #fff;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  column-gap: clamp(24px, 6vw, 72px);
  row-gap: 1rem;
  align-items: stretch;
}

.site-footer__column h4 {
  margin: 0 0 0.5rem;
}

.footer-business {
  display: flex;
  flex-direction: column;
  height: 100%;
  align-items: flex-start;
  justify-self: center;
  width: min(100%, 680px);
  max-width: 680px;
  padding-top: clamp(10px, 2vh, 28px);
  text-align: left;
  text-wrap: pretty;
}

.footer-business h4 {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.footer-links {
  justify-self: start;
  text-align: left;
}

.footer-links ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.24rem;
}

.footer-links a {
  display: inline-block;
  padding: 0.16rem 0;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  align-self: stretch;
  justify-self: end;
  align-items: flex-end;
  text-align: right;
}

.footer-contact p {
  margin: 0;
}

.footer-contact a,
.footer-contact a:visited {
  color: #fff;
}

.footer-featured {
  margin-top: auto;
  margin-right: clamp(56px, 6vw, 96px);
  width: min(100%, 360px);
  padding-top: 0.8rem;
  align-self: flex-end;
  text-align: right;
}

.footer-featured .home-trust-logos {
  margin-left: auto;
}

.footer-contact .home-trust-kicker {
  color: #fff;
}

.site-footer-meta {
  display: block;
  width: 100%;
  margin-top: auto;
  align-self: center;
  text-align: center;
  color: #fff;
}

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

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

@media (max-width: 1024px) {
  .legacy-masthead-inner {
    min-height: 144px;
    padding: 0.78rem 0.88rem 0.92rem;
  }

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

  .home-open-grid,
  .home-trust-grid {
    grid-template-columns: 1fr;
  }

  .home-trust-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.05rem;
  }

  .hero-feature-media {
    min-height: clamp(280px, 52vw, 430px);
  }

  .hero-feature-content {
    padding: clamp(1.05rem, 3vw, 2.2rem) clamp(0.9rem, 3.4vw, 2.4rem) clamp(1.05rem, 2.8vw, 1.85rem);
  }

  .hero-copy-card {
    width: min(72%, 760px);
  }

  .hero-feature .btn {
    min-width: 220px;
  }

  .reviews-carousel-btn {
    width: 2rem;
    height: 2rem;
    font-size: 1.2rem;
  }

  .home-fleet-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

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

  .nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    border: 0;
    padding: 0;
    background: rgba(19, 11, 7, 0.42);
    opacity: 0;
    pointer-events: none;
    z-index: 240;
    transition: opacity 0.22s ease;
  }

  body.nav-drawer-open {
    overflow: hidden;
  }

  body.nav-drawer-open .nav-overlay {
    opacity: 1;
    pointer-events: auto;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(86vw, 360px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    margin: 0;
    padding: 0;
    background: var(--sand);
    box-shadow: -18px 0 34px rgba(42, 22, 14, 0.25);
    transform: translateX(100%);
    transition: transform 0.24s ease;
    z-index: 260;
    align-self: auto;
  }

  .nav[data-open="true"] {
    transform: translateX(0);
  }

  .mobile-drawer__body {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
    margin: 0;
  }

  .nav ul > li {
    border-bottom: 1px solid rgba(117, 81, 56, 0.22);
  }

  /* Mobile drawer: keep parent row backgrounds consistent (no sticky open color). */
  .mobile-drawer .nav > li,
  .mobile-drawer .nav > li.has-sub,
  .mobile-drawer .nav > li.has-sub[data-open="true"],
  .mobile-drawer .nav > li.has-sub.open,
  .mobile-drawer .mobile-drawer__body > ul > li,
  .mobile-drawer .mobile-drawer__body > ul > li.has-sub,
  .mobile-drawer .mobile-drawer__body > ul > li.has-sub[data-open="true"],
  .mobile-drawer .mobile-drawer__body > ul > li.has-sub.open {
    background-color: #e8ddc9 !important;
  }

  .mobile-drawer .mobile-drawer__body > ul > li > a,
  .mobile-drawer .mobile-drawer__body > ul > li > .sub-link,
  .mobile-drawer .mobile-drawer__body > ul > li > .sub-toggle {
    background: transparent !important;
  }

  .has-sub {
    position: static;
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .has-sub::after {
    display: none;
  }

  .nav .has-sub:hover > .submenu,
  .nav .has-sub:focus-within > .submenu {
    display: none;
  }

  .nav a,
  .nav .sub-toggle,
  .nav .sub-link {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    color: #2f1f15;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    padding: 0.88rem 1rem;
    cursor: pointer;
  }

  .nav a:hover,
  .nav .sub-toggle:hover,
  .nav .sub-link:hover,
  .nav a[data-active="true"] {
    color: #2f1f15;
    background: rgba(130, 41, 42, 0.08);
    border-color: transparent;
    text-decoration: none;
  }

  .nav .cta {
    background: rgba(130, 41, 42, 0.12);
    color: #3d2218;
    border: 0;
    box-shadow: none;
    font-weight: 800;
    text-transform: none;
    padding: 0.88rem 1rem;
  }

  /* Mobile drawer: Book Now highlight (desktop-burgundy). */
  .mobile-drawer .nav > li.book-now,
  .mobile-drawer .mobile-drawer__body > ul > li.book-now {
    background: #5b332e !important;
  }

  .mobile-drawer .nav > li.book-now > a,
  .mobile-drawer .mobile-drawer__body > ul > li.book-now > a {
    color: #fff !important;
    font-weight: 700;
  }

  .mobile-drawer .nav > li.book-now > a:active,
  .mobile-drawer .mobile-drawer__body > ul > li.book-now > a:active {
    opacity: 0.92;
  }

  .nav .has-sub > .sub-link::after,
  .nav .has-sub > .sub-toggle::after {
    content: "";
    width: 8px;
    height: 8px;
    border-right: 2px solid #6c4b3b;
    border-bottom: 2px solid #6c4b3b;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
    margin-left: 0.6rem;
    flex: 0 0 auto;
  }

  .nav .has-sub[data-open="true"] > .sub-link::after,
  .nav .has-sub[data-open="true"] > .sub-toggle::after {
    transform: rotate(225deg);
    margin-top: 4px;
  }

  .submenu {
    position: static;
    display: none;
    min-width: 0;
    margin-top: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    padding: 0;
  }

  .nav .has-sub[data-open="true"] > .submenu {
    display: block;
  }

  .submenu a {
    border: 0;
    border-radius: 0;
    background: transparent;
    border-top: 1px solid rgba(117, 81, 56, 0.18);
    color: #3f2a1e;
    font-weight: 600;
    padding: 0.76rem 1rem 0.76rem 1.55rem;
  }

  .submenu a:hover {
    background: rgba(130, 41, 42, 0.08);
    color: #3f2a1e;
  }

  .nav-drawer-foot {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    margin-top: auto;
    border-top: 1px solid rgba(117, 81, 56, 0.28);
    background: #ecdcc5;
    flex: 0 0 auto;
    padding: 0.5rem 0.65rem;
    z-index: 1;
  }

  .nav-drawer-close-bottom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    min-width: 120px;
    border: 1px solid rgba(117, 81, 56, 0.35);
    border-radius: 8px;
    background: #e3cfab;
    color: #3f2a1e;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    text-align: center;
    padding: 0.8rem 1.15rem;
    line-height: 1.2;
  }

  .nav-drawer-close-bottom:hover {
    background: #ddc69f;
  }

  .floating-book-now {
    right: 16px;
    bottom: calc(16px + env(safe-area-inset-bottom));
    font-size: 0.9rem;
    padding: 0.66rem 0.9rem;
  }

}

@media (max-width: 820px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
    row-gap: 24px;
  }

  .footer-links,
  .footer-business,
  .footer-contact {
    justify-self: stretch;
    text-align: left;
    align-items: flex-start;
  }

  .footer-links ul {
    justify-items: start;
    gap: 0.36rem;
  }

  .footer-links a,
  .footer-contact a {
    padding: 0.22rem 0;
    line-height: 1.45;
  }

  .footer-contact p {
    margin: 0.12rem 0;
  }

  .footer-featured {
    margin-top: 0.72rem;
    margin-right: 0;
    align-self: flex-start;
    margin-inline: 0;
    text-align: left;
  }

  .footer-featured .home-trust-logos {
    margin-left: 0;
  }

  .home-species-split__grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .home-species-split__media {
    height: 220px;
  }

  .home-species-split__content {
    padding: clamp(24px, 6vw, 40px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .floating-book-now {
    transition: none;
  }
}

@media (max-width: 860px) {
  :root {
    --header-shrink: 1;
  }

  .legacy-masthead-inner {
    min-height: 0;
    padding: 0.62rem 0.72rem 0.82rem;
    flex-wrap: wrap;
  }

  .legacy-rotate-wrap {
    display: none;
  }

  .legacy-logo-wrap {
    width: calc(100% - 56px);
    display: flex;
    align-items: center;
    gap: 0.45rem;
    flex-wrap: wrap;
    padding-left: 0;
    margin-left: 0;
    margin-bottom: 0;
  }

  .legacy-logo {
    width: min(62vw, 300px);
    max-height: 96px;
  }

  .nav-call {
    min-height: 0;
    margin-top: 0;
    margin-left: 0.42rem;
    padding: 0.28rem 0.5rem;
  }

  .nav-call-kicker {
    font-size: 0.52rem;
    letter-spacing: 0.07em;
  }

  .nav-call-link {
    font-size: 0.8rem;
  }

  .masthead-book-btn {
    font-size: 0.9rem;
    padding: 0.5rem 0.66rem;
  }

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

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

  .hero-feature .hero-grid {
    display: flex;
    flex-direction: column;
  }

  .hero-feature-media {
    min-height: clamp(220px, 52vw, 320px);
    background-image:
      linear-gradient(118deg, rgba(8, 15, 28, 0.16) 0%, rgba(8, 15, 28, 0.38) 100%),
      var(--hero-image);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
  }

  .hero-feature-content {
    padding: clamp(3.8rem, 17vw, 6.2rem) 0 0;
    align-items: flex-end;
  }

  .hero-copy-card {
    width: 100%;
    max-width: none;
    min-height: 0;
    align-self: flex-end;
    border-radius: 0 0 14px 14px;
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
    border-top: 1px solid rgba(229, 239, 255, 0.22);
    background: #132b45;
    box-shadow: none;
    backdrop-filter: none;
    padding: 1.05rem 1rem 1.25rem;
    gap: 0.82rem;
  }

  .hero-feature h1 {
    font-size: clamp(1.7rem, 7.1vw, 2.35rem);
  }

  .hero-subline {
    font-size: clamp(0.96rem, 3.8vw, 1.08rem);
  }

  .band {
    padding-block: clamp(2.2rem, 8vw, 3rem);
  }

  .home-accolade {
    margin-top: 0.5rem;
    margin-bottom: 0.45rem;
    padding: 0.7rem 0 0.8rem;
  }

  .home-accolade-inner {
    gap: 0.65rem;
    padding: 0.62rem 0.75rem;
  }

  .home-accolade p {
    font-size: clamp(1.05rem, 4.6vw, 1.32rem);
  }

  .reviews-head {
    align-items: center;
  }

  .reviews-section {
    margin-top: 0;
    margin-bottom: 0;
    padding: 1.6rem 0 1.9rem;
    background-size: cover;
    background-position: center;
  }

  .reviews-carousel {
    column-gap: 0.55rem;
    row-gap: 0.78rem;
  }

  .reviews-carousel-track {
    margin: 0;
  }

  .reviews-carousel-btn {
    width: 2.55rem;
    height: 2.55rem;
    font-size: 1.6rem;
  }

  .review-slide {
    flex-basis: 100%;
    padding: 0;
  }

  .site-review {
    min-height: 12.2rem;
    padding: 1.12rem 1.08rem;
  }

  .site-review p {
    font-size: 1.02rem;
  }

  .site-review cite {
    font-size: 0.88rem;
  }

  .home-fleet {
    margin-bottom: 0.8rem;
    padding: 1rem 0 1.6rem;
  }

  .home-services {
    margin-bottom: 0.45rem;
    padding: 0 0 0.8rem;
  }

  .home-trust {
    margin-bottom: 0.6rem;
    padding: 1.2rem 0 1.35rem;
  }

  .home-trust-grid {
    gap: 1rem;
  }

  .home-trust-media {
    align-items: flex-start;
  }

  .home-trust-logos {
    width: min(100%, 360px);
  }

  .home-services-actions .btn {
    width: min(100%, 420px);
    min-width: 0;
  }

  .home-fleet-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .home-fleet-card-media {
    height: clamp(190px, 52vw, 260px);
  }

  .home-services-layout {
    grid-template-columns: 1fr;
    gap: 0.62rem;
  }

  .home-services-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .home-service-card {
    grid-template-columns: minmax(92px, 118px) minmax(0, 1fr);
    margin: 0.22rem;
    min-height: 112px;
    padding: 0.68rem 0.74rem;
  }

  .home-service-thumb {
    min-height: 92px;
  }

  .home-countup {
    margin-bottom: 0.8rem;
    padding: 0 0 1rem;
  }

  .home-countup-grid {
    grid-template-columns: 1fr;
  }

  .home-countup-item {
    padding: 1rem 0.35rem;
  }

  .home-countup-item + .home-countup-item {
    border-left: 0;
    border-top: 0;
  }

  .home-countup-value {
    margin-bottom: 0.42rem;
  }

  .home-countup-label {
    font-size: 0.95rem;
  }

  .home-gallery-head {
    flex-direction: column;
    align-items: center;
    margin-bottom: 0.7rem;
  }

  .home-quick {
    padding: 0.6rem 0 0;
  }

  .home-quick-inner {
    grid-template-columns: 1fr;
    gap: 0.72rem;
  }

  .home-quick-item {
    margin-top: 0.2rem;
    padding: 1.15rem 0.85rem 1rem;
    gap: 0.45rem;
  }

  .page-home .home-fleet,
  .page-home .home-services,
  .page-home .home-countup,
  .page-home .home-recent-groups,
  .page-home .home-gallery,
  .page-home .home-species-split,
  .page-home .home-trust,
  .page-home .home-seo-band {
    margin-bottom: 0;
    padding-top: clamp(1.35rem, 4.8vw, 1.9rem);
    padding-bottom: clamp(1.35rem, 4.8vw, 1.9rem);
  }

  .page-home .home-fleet {
    padding-top: clamp(1.7rem, 6.2vw, 2.35rem);
    padding-bottom: clamp(1.65rem, 6vw, 2.25rem);
  }

  .page-home .home-trust {
    padding-top: clamp(1.75rem, 6.4vw, 2.4rem);
    padding-bottom: clamp(1.1rem, 4.2vw, 1.6rem);
  }

  .page-home .home-seo-band {
    padding-top: clamp(72px, 12vh, 110px);
    padding-bottom: clamp(72px, 12vh, 110px);
  }

  .grid-3,
  .grid-2,
  .grid-4,
  form .row {
    grid-template-columns: 1fr;
  }
}

.booking-trip-summary-card {
  margin-top: 0.75rem;
  padding: 0.8rem;
  border: 1px solid #e4d5bf;
  border-radius: 10px;
  background: #fbf7ef;
  box-shadow: 0 8px 20px rgba(34, 34, 34, 0.07);
}

.booking-trip-summary-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

.booking-trip-summary-list {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.28rem;
}

.booking-trip-summary-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.65rem;
  align-items: baseline;
}

.booking-trip-summary-row dt,
.booking-trip-summary-row dd {
  margin: 0;
  font-size: 0.89rem;
  line-height: 1.3;
}

.booking-trip-summary-row dt {
  color: #6b4a3d;
}

.booking-trip-summary-row dd {
  color: #2f241d;
  font-weight: 600;
  text-align: right;
}

.booking-trip-summary-row-money dd {
  font-variant-numeric: tabular-nums;
}

.booking-trip-summary-row-strong dt,
.booking-trip-summary-row-strong dd {
  font-weight: 700;
  color: #432920;
}

.booking-trip-summary-value {
  transition: opacity 150ms ease, transform 150ms ease;
}

.booking-trip-summary-value.is-updating {
  opacity: 0.7;
  transform: scale(0.985);
}

.booking-trip-summary-saving,
.booking-trip-summary-promo-note,
.booking-trip-summary-due-note {
  margin: 0.5rem 0 0;
  font-size: 0.82rem;
  line-height: 1.35;
  color: #5f483f;
}

.booking-trip-summary-saving {
  font-weight: 700;
  color: #315f3a;
}

.booking-trip-summary-promo-note {
  padding: 0.42rem 0.5rem;
  border: 1px solid #e1d0b3;
  border-radius: 8px;
  background: #f7efde;
}

@media (max-width: 900px) {
  .home-recent-groups-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .home-seo-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media (max-width: 600px) {
  .gallery-grid.home-gallery-grid {
    grid-template-columns: 1fr;
  }

  .home-trust-features {
    grid-template-columns: 1fr;
    gap: 0.9rem;
    margin-top: 1.1rem;
  }
}

@media (max-width: 700px) {
  .hero-feature-media {
    display: block;
    min-height: 0;
    background-image: none;
  }

  .hero-feature-media::before {
    content: "";
    display: block;
    min-height: clamp(220px, 62vw, 320px);
    background-image:
      linear-gradient(118deg, rgba(8, 15, 28, 0.16) 0%, rgba(8, 15, 28, 0.38) 100%),
      var(--hero-image);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
  }

  .hero-feature-content {
    display: block;
    padding: 0;
  }

  .hero-copy-card {
    position: static;
    margin: 0;
    width: 100%;
    max-width: none;
    border-radius: 0;
    border: 1px solid #e6d4b8;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    background: var(--sand);
    box-shadow: none;
    backdrop-filter: none;
    padding: 1rem 1rem 1.2rem;
  }

  .hero-feature h1 {
    color: var(--ink);
    text-shadow: none;
  }

  .hero-feature .hero-subline {
    color: #4d3a2f;
    text-shadow: none;
  }

  .home-trust-cta-divider {
    margin-top: 1.4rem;
  }

  .home-trust-cta {
    margin-top: clamp(2.5rem, 8vw, 3rem);
  }
}
