:root {
  --cts-sun: #ab460e;
  --cts-sun-dark: #77300a;
  --cts-ink: #202020;
  --cts-muted: #626262;
  --cts-line: #e7ddd6;
  --cts-cream: #fffaf6;
  --cts-sand: #f3eadf;
  --cts-white: #ffffff;
  --cts-shadow: 0 20px 55px rgba(51, 38, 27, 0.13);
  --cts-radius: 8px;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
}

.cts-site {
  color: var(--cts-ink);
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.65;
  background: var(--cts-white);
  overflow-x: hidden;
}

.cts-site * {
  box-sizing: border-box;
}

.cts-site a {
  color: inherit;
}

.cts-topbar {
  background: var(--cts-sun);
  color: var(--cts-white);
  font-size: 14px;
  letter-spacing: 0;
}

.cts-topbar-inner,
.cts-header-inner,
.cts-section-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.cts-topbar-inner {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cts-header {
  background: var(--cts-white);
  border-bottom: 1px solid var(--cts-line);
}

.cts-header-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cts-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  text-decoration: none;
}

.cts-logo img {
  width: 92px;
  height: auto;
  display: block;
}

.cts-logo-text strong {
  display: block;
  font-family: Raleway, Arial, sans-serif;
  font-size: 22px;
  line-height: 1.15;
  color: var(--cts-sun);
}

.cts-logo-text span {
  display: block;
  font-size: 13px;
  color: var(--cts-muted);
}

.cts-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  flex-wrap: wrap;
  font-family: Raleway, Arial, sans-serif;
  font-size: 14px;
}

.cts-nav a {
  color: var(--cts-ink);
  text-decoration: none;
}

.cts-nav a:hover,
.cts-nav a:focus {
  color: var(--cts-sun);
}

.cts-nav .cts-nav-cta {
  border: 1px solid var(--cts-sun);
  border-radius: 4px;
  color: var(--cts-sun);
  background: transparent;
  padding: 8px 12px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.cts-button,
.cts-form button,
.cts-link-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--cts-sun);
  border-radius: 4px;
  background: var(--cts-sun);
  color: var(--cts-white);
  padding: 12px 22px;
  font-family: Raleway, Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

button.cts-button,
button.cts-ghost-button,
button.cts-link-button {
  font-family: Raleway, Arial, sans-serif;
}

.cts-button:hover,
.cts-form button:hover,
.cts-link-button:hover {
  background: var(--cts-sun-dark);
  border-color: var(--cts-sun-dark);
  box-shadow: 0 12px 28px rgba(171, 70, 14, 0.25);
  transform: translateY(-2px);
}

.cts-nav .cts-nav-cta:hover,
.cts-nav .cts-nav-cta:focus-visible {
  background: var(--cts-sun);
  color: var(--cts-white);
  box-shadow: 0 10px 24px rgba(171, 70, 14, 0.18);
  transform: translateY(-1px);
}

.cts-ghost-button,
.cts-text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  color: var(--cts-sun);
  font-family: Raleway, Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.cts-ghost-button {
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 4px;
  background: transparent;
  color: var(--cts-white);
  padding: 12px 22px;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.cts-ghost-button.light {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--cts-white);
}

.cts-ghost-button:hover,
.cts-ghost-button:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--cts-white);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  transform: translateY(-2px);
}

.cts-text-link {
  min-height: auto;
  border-bottom: 1px solid currentColor;
}

.cts-hero {
  position: relative;
  min-height: 590px;
  display: grid;
  align-items: center;
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.18) 56%, rgba(0, 0, 0, 0.06)),
    url("/assets/background-poster.jpg");
  background-size: cover;
  background-position: center;
  color: var(--cts-white);
}

.cts-video-hero {
  overflow: hidden;
}

.cts-hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.cts-video-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.34) 58%, rgba(0, 0, 0, 0.12)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.02) 48%);
  pointer-events: none;
  animation: ctsOverlayBreathe 8s ease-in-out infinite alternate;
}

.cts-video-hero .cts-section-inner {
  position: relative;
  z-index: 2;
}

.cts-hero-improved {
  min-height: 600px;
}

.cts-hero-content {
  max-width: 720px;
  padding: 76px 0;
}

.cts-hero-content > * {
  animation: ctsHeroRise 720ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.cts-hero-content > *:nth-child(2) {
  animation-delay: 90ms;
}

.cts-hero-content > *:nth-child(3) {
  animation-delay: 180ms;
}

.cts-hero-content > *:nth-child(4) {
  animation-delay: 270ms;
}

.cts-hero-content > *:nth-child(5) {
  animation-delay: 360ms;
}

.cts-kicker {
  margin: 0 0 16px;
  font-family: Raleway, Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.cts-hero h1,
.cts-page-hero h1,
.cts-section h2 {
  font-family: Raleway, Arial, sans-serif;
  letter-spacing: 0;
  line-height: 1.1;
}

.cts-hero h1 {
  max-width: 760px;
  margin: 0 0 22px;
  font-size: clamp(38px, 5.4vw, 64px);
  font-weight: 700;
}

.cts-hero p {
  max-width: 620px;
  margin: 0 0 28px;
  font-size: 22px;
}

.cts-hero-actions,
.cts-inline-actions,
.cts-cta-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.cts-hero-proof {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.cts-hero-proof span {
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.28);
  padding: 8px 10px;
  font-family: Raleway, Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.cts-section {
  padding: 76px 0;
}

.cts-section.is-sand {
  background: var(--cts-cream);
}

.cts-section.is-dark {
  background: #1f1b18;
  color: var(--cts-white);
}

.cts-page-hero {
  padding: 74px 0;
  background: var(--cts-cream);
  border-bottom: 1px solid var(--cts-line);
  text-align: center;
}

.cts-page-hero h1 {
  margin: 0;
  color: var(--cts-sun);
  font-size: clamp(36px, 6vw, 62px);
}

.cts-section h2 {
  margin: 0 0 26px;
  color: var(--cts-sun);
  font-size: clamp(30px, 4.2vw, 48px);
}

.cts-section h3 {
  margin: 0 0 10px;
  color: var(--cts-sun);
  font-family: Raleway, Arial, sans-serif;
  font-size: 24px;
}

.cts-section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.cts-section-heading-row h2,
.cts-section-heading-row p {
  margin-bottom: 0;
}

.cts-section p {
  margin: 0 0 18px;
}

.cts-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  align-items: center;
}

.cts-grid.is-top {
  align-items: start;
}

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

.cts-card,
.cts-price,
.cts-form-card {
  background: var(--cts-white);
  border: 1px solid var(--cts-line);
  border-radius: var(--cts-radius);
  box-shadow: var(--cts-shadow);
  padding: 28px;
  transition: border-color 180ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.cts-card:hover,
.cts-price:hover,
.cts-form-card:hover {
  border-color: rgba(171, 70, 14, 0.28);
  box-shadow: 0 24px 62px rgba(51, 38, 27, 0.17);
  transform: translateY(-3px);
}

.cts-card img,
.cts-media img {
  width: 100%;
  display: block;
  border-radius: var(--cts-radius);
}

.cts-card h3,
.cts-price h3 {
  color: var(--cts-sun);
}

.cts-media {
  position: relative;
}

.cts-media-stack {
  display: grid;
  gap: 14px;
}

.cts-mini-panel {
  display: grid;
  gap: 4px;
  border-left: 4px solid var(--cts-sun);
  border-radius: 4px;
  background: var(--cts-white);
  box-shadow: var(--cts-shadow);
  padding: 18px;
}

.cts-mini-panel strong {
  color: var(--cts-sun);
  font-family: Raleway, Arial, sans-serif;
}

.cts-mini-panel span {
  color: var(--cts-muted);
  font-size: 15px;
}

.cts-media img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 700ms ease, filter 320ms ease;
}

.cts-media:hover img,
.cts-card:hover img {
  filter: saturate(1.06);
  transform: scale(1.015);
}

.cts-media.is-wide img {
  aspect-ratio: 16 / 9;
}

.cts-trip-cards .cts-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.cts-feature-list,
.cts-faq-list,
.cts-trip-list,
.cts-legal-list {
  display: grid;
  gap: 18px;
}

.cts-feature-list ul,
.cts-faq-list ul,
.cts-trip-list ul,
.cts-legal-list ul,
.cts-amenities {
  margin: 10px 0 0 22px;
  padding: 0;
}

.cts-price-list {
  display: grid;
  gap: 18px;
}

.cts-proof-grid,
.cts-price-mini,
.cts-seo-grid,
.cts-review-links {
  display: grid;
  gap: 16px;
}

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

.cts-proof-grid div,
.cts-price-mini span,
.cts-seo-grid a,
.cts-review-links a {
  display: grid;
  gap: 6px;
  border: 1px solid var(--cts-line);
  border-radius: var(--cts-radius);
  background: var(--cts-white);
  padding: 22px;
  box-shadow: 0 10px 30px rgba(51, 38, 27, 0.08);
}

.cts-proof-grid strong,
.cts-price-mini strong,
.cts-seo-grid strong {
  color: var(--cts-sun);
  font-family: Raleway, Arial, sans-serif;
}

.cts-proof-grid span,
.cts-seo-grid span {
  color: var(--cts-muted);
  font-size: 15px;
  line-height: 1.45;
}

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

.cts-seo-grid a,
.cts-review-links a {
  color: inherit;
  text-decoration: none;
}

.cts-price-mini {
  margin: 20px 0;
}

.cts-price {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px 20px;
  align-items: center;
}

.cts-price h3,
.cts-price p {
  margin: 0;
}

.cts-price strong {
  color: var(--cts-sun);
  font-family: Raleway, Arial, sans-serif;
  font-size: 28px;
}

.cts-note {
  color: var(--cts-muted);
  font-size: 15px;
}

.cts-cta-band h2 {
  color: var(--cts-white);
}

.cts-cta-band p {
  color: rgba(255, 255, 255, 0.82);
}

.cts-cta-actions {
  justify-content: flex-end;
}

.cts-form-card h2,
.cts-form-card h3 {
  margin-top: 0;
}

.cts-form {
  display: grid;
  gap: 14px;
}

.cts-form label {
  display: grid;
  gap: 6px;
  min-width: 0;
  color: var(--cts-muted);
  font-size: 14px;
}

.cts-form input,
.cts-form select,
.cts-form textarea {
  width: 100%;
  min-width: 0;
  min-height: 46px;
  border: 1px solid #d9ccc3;
  border-radius: 4px;
  padding: 11px 12px;
  font: inherit;
  color: var(--cts-ink);
  background: var(--cts-white);
  transition: border-color 170ms ease, box-shadow 170ms ease, transform 170ms ease;
}

.cts-form input:focus,
.cts-form select:focus,
.cts-form textarea:focus {
  outline: none;
  border-color: var(--cts-sun);
  box-shadow: 0 0 0 4px rgba(171, 70, 14, 0.12);
}

.cts-form.cts-form-attempted input:invalid,
.cts-form.cts-form-attempted select:invalid,
.cts-form.cts-form-attempted textarea:invalid {
  border-color: #b5401c;
}

.cts-form.cts-form-shake {
  animation: ctsFormShake 220ms ease;
}

.cts-form button[disabled] {
  cursor: progress;
  opacity: 0.68;
  transform: none;
}

.cts-hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.cts-form textarea {
  min-height: 120px;
  resize: vertical;
}

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

.cts-form small {
  color: var(--cts-muted);
  font-size: 12px;
  line-height: 1.45;
}

.cts-form-reassurance {
  margin-top: -4px;
  color: #6f5a49;
}

.cts-form-status {
  min-height: 18px;
  color: var(--cts-sun);
  font-size: 13px;
  font-weight: 700;
}

.cts-contact-block {
  display: grid;
  gap: 10px;
  color: var(--cts-muted);
}

.cts-contact-block strong {
  color: var(--cts-ink);
}

.cts-booking-prompt {
  display: grid;
  align-content: start;
  gap: 16px;
}

.cts-booking-prompt h3,
.cts-booking-modal h2 {
  margin: 0;
  font-family: Raleway, Arial, sans-serif;
  line-height: 1.15;
}

.cts-booking-prompt p,
.cts-booking-prompt ul {
  margin: 0;
}

.cts-booking-prompt ul {
  display: grid;
  gap: 8px;
  padding-left: 20px;
  color: var(--cts-muted);
  font-size: 16px;
  line-height: 1.45;
}

.cts-trip-presets {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.cts-trip-presets button {
  min-height: 40px;
  border: 1px solid #d9ccc3;
  border-radius: 999px;
  padding: 8px 10px;
  background: #fff8f2;
  color: var(--cts-ink);
  font: 700 13px/1.2 Raleway, Arial, sans-serif;
  cursor: pointer;
  transition: background-color 170ms ease, border-color 170ms ease, color 170ms ease, box-shadow 170ms ease, transform 170ms ease;
}

.cts-trip-presets button:hover,
.cts-trip-presets button:focus-visible,
.cts-trip-presets button.is-selected {
  border-color: var(--cts-sun);
  background: var(--cts-sun);
  color: var(--cts-white);
  box-shadow: 0 10px 24px rgba(171, 70, 14, 0.18);
  transform: translateY(-1px);
}

.cts-booking-modal-shell {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  color: var(--cts-ink);
  font-family: "Source Sans 3", "Source Sans Pro", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.5;
}

.cts-booking-modal-shell,
.cts-booking-modal-shell *,
.cts-sticky-booking {
  box-sizing: border-box;
}

.cts-booking-modal-shell.is-open {
  display: flex;
}

.cts-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 13, 11, 0.72);
}

.cts-booking-modal-shell.is-open .cts-modal-backdrop {
  animation: ctsFadeIn 220ms ease both;
}

.cts-booking-modal {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 760px;
  max-height: min(92vh, 860px);
  overflow: auto;
  border-radius: var(--cts-radius);
  background: var(--cts-white);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
}

.cts-booking-modal-shell.is-open .cts-booking-modal {
  animation: ctsModalIn 260ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.cts-modal-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--cts-line);
  padding: 26px 80px 20px 28px;
}

.cts-modal-header > div {
  flex: 1 1 auto;
  min-width: 0;
}

.cts-modal-header p {
  margin: 8px 0 0;
  color: var(--cts-muted);
  font-size: 16px;
  line-height: 1.45;
}

.cts-modal-close {
  position: absolute;
  top: 24px;
  right: 28px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--cts-sun);
  border-radius: 999px;
  background: var(--cts-sun);
  color: var(--cts-white);
  cursor: pointer;
  font-size: 0;
  line-height: 1;
}

.cts-modal-close::before {
  content: "x";
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.cts-modal-body {
  padding: 24px 28px 28px;
}

.cts-modal-body .cts-form {
  display: grid;
  gap: 14px;
}

.cts-modal-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.cts-modal-actions .cts-text-link {
  color: var(--cts-sun);
}

.cts-sticky-booking {
  position: fixed;
  right: 18px;
  bottom: 78px;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid var(--cts-sun);
  border-radius: 999px;
  background: var(--cts-white);
  color: var(--cts-sun);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
  padding: 12px 18px;
  font-family: Raleway, Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  animation: ctsStickyPulse 4.8s ease-in-out infinite;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.cts-sticky-booking:hover,
.cts-sticky-booking:focus-visible {
  background: var(--cts-sun);
  color: var(--cts-white);
  box-shadow: 0 16px 40px rgba(171, 70, 14, 0.3);
  transform: translateY(-2px);
  animation-play-state: paused;
}

body.cts-modal-open {
  overflow: hidden;
}

.cts-footer {
  padding: 38px 0;
  border-top: 1px solid var(--cts-line);
  text-align: center;
  color: var(--cts-muted);
  background: var(--cts-white);
}

.cts-footer nav {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 14px;
  font-size: 14px;
}

.cts-footer a {
  color: var(--cts-sun);
  text-decoration: none;
}

.cts-sticky-call {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  background: var(--cts-sun);
  color: var(--cts-white);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.24);
  padding: 12px 18px;
  font-family: Raleway, Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.cts-sticky-call:hover,
.cts-sticky-call:focus-visible {
  background: var(--cts-sun-dark);
  box-shadow: 0 16px 40px rgba(171, 70, 14, 0.28);
  transform: translateY(-2px);
}

.cts-mobile-header-actions {
  display: none;
}

.cts-mobile-book,
.cts-mobile-menu-toggle {
  min-height: 40px;
  border-radius: 4px;
  font-family: Raleway, Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.cts-mobile-book {
  border: 1px solid var(--cts-sun);
  background: var(--cts-sun);
  color: var(--cts-white);
  padding: 8px 12px;
}

.cts-mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--cts-line);
  background: var(--cts-white);
  color: var(--cts-ink);
  padding: 8px 10px;
}

.cts-mobile-menu-icon {
  display: grid;
  gap: 3px;
  width: 15px;
}

.cts-mobile-menu-icon span {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.cts-header-inner.is-mobile-nav-open .cts-mobile-menu-icon span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.cts-header-inner.is-mobile-nav-open .cts-mobile-menu-icon span:nth-child(2) {
  opacity: 0;
}

.cts-header-inner.is-mobile-nav-open .cts-mobile-menu-icon span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.cts-motion-ready .cts-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms ease, transform 620ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: calc(var(--cts-reveal-delay, 0) * 80ms);
}

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

.cts-motion-ready .cts-card.cts-reveal.is-visible:hover,
.cts-motion-ready .cts-price.cts-reveal.is-visible:hover,
.cts-motion-ready .cts-form-card.cts-reveal.is-visible:hover {
  transform: translateY(-3px);
}

@keyframes ctsHeroRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ctsOverlayBreathe {
  from {
    opacity: 0.92;
  }
  to {
    opacity: 1;
  }
}

@keyframes ctsFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes ctsModalIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes ctsFormShake {
  0%,
  100% {
    transform: translateX(0);
  }
  35% {
    transform: translateX(-5px);
  }
  70% {
    transform: translateX(5px);
  }
}

@keyframes ctsStickyPulse {
  0%,
  72%,
  100% {
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
  }
  82% {
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18), 0 0 0 9px rgba(171, 70, 14, 0.12);
  }
}

@media (max-width: 840px) {
  .cts-header-inner,
  .cts-topbar-inner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 14px 0;
  }

  .cts-logo {
    justify-content: center;
  }

  .cts-nav {
    justify-content: center;
    gap: 14px;
  }

  .cts-nav .cts-nav-cta {
    padding: 7px 10px;
  }

  .cts-hero {
    min-height: 560px;
    background-position: center;
  }

  .cts-hero-video {
    object-position: 58% center;
  }

  .cts-hero-content {
    padding: 70px 0;
  }

  .cts-grid,
  .cts-card-grid,
  .cts-proof-grid,
  .cts-seo-grid {
    grid-template-columns: 1fr;
  }

  .cts-section-heading-row {
    display: grid;
    align-items: start;
  }

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

  .cts-price {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 520px) {
  .cts-site {
    font-size: 16px;
  }

  .cts-topbar-inner {
    min-height: 34px;
    padding: 6px 0;
  }

  .cts-topbar-inner span {
    display: none;
  }

  .cts-header-inner,
  .cts-section-inner {
    width: calc(100vw - 48px);
  }

  .cts-logo img {
    width: 76px;
  }

  .cts-logo {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 100%;
    gap: 8px;
  }

  .cts-logo-text strong {
    font-size: 18px;
    max-width: 280px;
    text-align: center;
    overflow-wrap: anywhere;
  }

  .cts-logo-text {
    min-width: 0;
    text-align: center;
  }

  .cts-nav {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    font-size: 13px;
    overflow: hidden;
  }

  .cts-nav a {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .cts-nav .cts-nav-cta {
    grid-column: 1 / -1;
  }

  .cts-nav a[href="/sarasota-sunset-cruise/"] {
    display: none;
  }

  .cts-section {
    padding: 54px 0;
  }

  .cts-hero h1 {
    width: min(100%, 320px);
    max-width: 320px;
    font-size: 23px;
    line-height: 1.12;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .cts-hero p {
    width: min(100%, 320px);
    max-width: 320px;
    font-size: 15px;
    overflow-wrap: anywhere;
  }

  .cts-hero-content {
    max-width: 100%;
    padding: 62px 0 118px;
    overflow: hidden;
  }

  .cts-hero-content > * {
    max-width: 100%;
  }

  .cts-hero-actions,
  .cts-inline-actions,
  .cts-cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .cts-button,
  .cts-link-button,
  .cts-ghost-button {
    width: 100%;
  }

  .cts-sticky-call {
    display: none;
  }

  .cts-sticky-booking {
    display: none;
  }

  .cts-booking-modal-shell {
    align-items: end;
    padding: 10px;
    overflow-x: hidden;
  }

  .cts-booking-modal {
    flex: 0 0 340px;
    width: 340px;
    max-width: calc(100vw - 56px);
    max-height: 92vh;
  }

  .cts-booking-modal-shell.is-open .cts-booking-modal {
    animation-name: ctsMobileModalIn;
  }

  .cts-modal-header,
  .cts-modal-body {
    padding-left: 18px;
    padding-right: 18px;
  }

  .cts-modal-header {
    padding-top: 64px;
    padding-right: 18px;
  }

  .cts-modal-close {
    top: 18px;
    right: auto;
    left: 18px;
  }
}

@media (max-width: 840px) {
  .cts-header-inner.cts-mobile-header-ready {
    width: calc(100% - 28px);
    min-height: 70px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px 12px;
    padding: 9px 0;
    text-align: left;
  }

  .cts-header-inner.cts-mobile-header-ready .cts-logo {
    flex-direction: row;
    justify-content: flex-start;
    gap: 10px;
    max-width: 100%;
  }

  .cts-header-inner.cts-mobile-header-ready .cts-logo img {
    width: 58px;
  }

  .cts-header-inner.cts-mobile-header-ready .cts-logo-text {
    text-align: left;
  }

  .cts-header-inner.cts-mobile-header-ready .cts-logo-text strong {
    max-width: 170px;
    font-size: 16px;
    line-height: 1.12;
    text-align: left;
  }

  .cts-header-inner.cts-mobile-header-ready .cts-logo-text span {
    font-size: 12px;
  }

  .cts-mobile-header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
  }

  .cts-mobile-menu-toggle {
    width: 42px;
    justify-content: center;
  }

  .cts-mobile-menu-toggle > span:last-child {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .cts-header-inner.cts-mobile-header-ready .cts-nav {
    grid-column: 1 / -1;
    width: 100%;
    max-width: 100%;
    max-height: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: max-height 240ms ease, opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .cts-header-inner.cts-mobile-header-ready.is-mobile-nav-open .cts-nav {
    max-height: 520px;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .cts-header-inner.cts-mobile-header-ready .cts-nav a,
  .cts-header-inner.cts-mobile-header-ready .cts-nav button {
    min-height: 42px;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    border-bottom: 1px solid var(--cts-line);
    padding: 10px 2px;
    text-align: left;
  }

  .cts-header-inner.cts-mobile-header-ready .cts-nav .cts-nav-cta {
    margin-top: 8px;
    justify-content: center;
    border: 1px solid var(--cts-sun);
    padding: 10px 12px;
  }
}

@media (max-width: 380px) {
  .cts-header-inner.cts-mobile-header-ready .cts-logo-text strong {
    max-width: 130px;
    font-size: 15px;
  }

  .cts-mobile-book,
  .cts-mobile-menu-toggle {
    min-height: 38px;
    padding-left: 9px;
    padding-right: 9px;
  }
}

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

  .cts-hero-video {
    display: none;
  }

  .cts-motion-ready .cts-reveal {
    opacity: 1;
    transform: none;
  }
}

@keyframes ctsMobileModalIn {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
