/* global */
html {
  scroll-behavior: smooth;
}

html,
body {
  font-family: "sweet-sans-pro", sans-serif;
  font-weight: 600;
  font-style: normal;
  height: 100%;
  margin: 0;
}

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

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

:root {
  --text-h1: 64px;
  --text-h2: 48px;
  --text-h3: 30px;
  --text-h4: 24px;
  --text-body: 20px;
  --text-caps: 14px;
  --color-primary: #142028;
  --color-primary-alt: #0f1e2a;
  --color-primary-overlay: rgba(20, 32, 40, 0.9);
  --color-primary-transparent: rgba(20, 32, 40, 0);
  --color-accent: #ED6F43;
  --color-fishing-accent: #9b8575;
  --color-yacht-hover: #00d8f6;
  --color-success: #58c36b;
  --color-error: #ffb3b3;
  --color-white: #ffffff;
}

@media (max-width: 991.98px) {
  :root {
    --text-h1: 48px;
    --text-h2: 38px;
    --text-h3: 24px;
    --text-body: 18px;
    --text-caps: 13px;
  }
}

@media (max-width: 767.98px) {
  :root {
    --text-h1: 38px;
    --text-h2: 30px;
    --text-h3: 24px;
    --text-body: 16px;
    --text-caps: 12px;
  }
}

/* intro page */
.intro-page {
  margin: 0;
  background-color: #000000;
}

.intro-screen {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-color: #000000;
}

.intro-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.intro-skip-btn {
  position: absolute;
  right: 30px;
  bottom: 30px;
  z-index: 10;
  min-width: 180px;
  min-height: 56px;
  padding: 12px 24px;
  border: 2px solid var(--color-white);
  border-radius: 999px;
  background-color: rgba(20, 32, 40, 0.75);
  color: var(--color-white);
  font-size: var(--text-caps);
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.intro-skip-btn:hover,
.intro-skip-btn:focus {
  background-color: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-white);
}

@media (max-width: 767.98px) {
  .intro-skip-btn {
    right: 16px;
    bottom: 16px;
    min-width: 140px;
    min-height: 46px;
    padding: 10px 18px;
    font-size: var(--text-caps);
  }
}

.mt-30 {
  margin-top: 30px !important;
}

/* index */
.home-hero {
  min-height: 100vh;
  width: 100%;
  background-image: url("../img/BG-home.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.home-logo-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}

.home-logo {
  width: 420px;
  max-width: 80%;
  height: auto;
  display: block;
  transition: opacity 0.3s ease;
}

/* header */
.site-header {
  width: 100%;
  height: 100px;
  position: relative;
  z-index: 1000;
  background-color: transparent;
  transition: background-color 0.3s ease;
}

.site-header .container-fluid,
.site-header .row {
  height: 100%;
}

.menu-trigger {
  gap: 12px;
  cursor: pointer;
}

.icon-menu {
  width: 50px;
  height: auto;
  display: block;
}

.menu-text {
  color: var(--color-white);
  font-size: var(--text-h4);
  font-weight: 700;
  line-height: 1;
  transition: color 0.3s ease;
}

.social-icons {
  gap: 20px;
}

.social-icons img {
  display: block;
  height: auto;
}

.icon-instagram {
  width: 30px;
}

.icon-email {
  width: 43px;
}

.icon-whatsapp {
  width: 30px;
}

.header-center-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.header-center-logo {
  max-width: 220px;
  width: 100%;
  height: auto;
  display: none;
}

/* primary button */
.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 570px;
  min-height: 85px;
  padding: 18px 40px;
  background-color: var(--color-accent);
  border: 2px solid var(--color-accent);
  border-radius: 999px;
  color: var(--color-white);
  font-size: var(--text-body) !important;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  appearance: none;
  -webkit-appearance: none;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.btn-primary-custom:hover,
.btn-primary-custom:focus {
  background-color: var(--color-white);
  border: 2px solid var(--color-accent);
  color: var(--color-accent);
}

/* menu open state */
body.menu-open .site-header {
  background-color: var(--color-white);
}

body.menu-open .menu-text {
  color: var(--color-primary);
}

body.menu-open .header-center-logo {
  display: block;
}

/* menu panel */
.menu-panel {
  position: absolute;
  top: 100px;
  left: 0;
  /*width: 740px;*/
  height: calc(100vh - 100px);
  background-color: var(--color-primary-overlay);
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.menu-panel-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 30px;
}

.menu-panel-link {
  width: 100%;
  display: block;
  padding: 18px 30px 18px 60px;
  color: var(--color-white);
  font-size: var(--text-body);
  font-weight: 700;
  text-transform: uppercase;
  text-align: left;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.menu-panel-link:hover,
.menu-panel-link:focus {
  background-color: var(--color-accent);
  color: var(--color-white);
}

body.menu-open .menu-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* header inner */
.site-header-inner {
  background-color: var(--color-white);
}

.menu-text-inner {
  color: var(--color-primary);
}

.header-center-logo-inner {
  max-width: 220px;
  width: 100%;
  height: auto;
  display: block;
}

/* about waves */
.about-waves {

  position: absolute;

  right: 0;

  bottom: 0;

  width: 420px;

  pointer-events: none;

  z-index: 3;

}

.about-waves-img {
  width: 100%;
  height: auto;
  display: block;
}

/* about us */
.about-hero-video {

  position: absolute;

  inset: 0;

  width: 100%;

  height: 100%;

  object-fit: cover;

  display: block;

  z-index: 1;

}

.about-hero-overlay {

  position: absolute;

  inset: 0;

  background: rgba(20, 32, 40, 0.35);

  z-index: 2;

}

.about-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.about-main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.about-hero {
  flex: 1;
  position: relative;
  overflow: hidden;
  background: none;
}

.about-title-wrap {
  margin-bottom: 32px;
}

.about-title-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
}

.about-hero-content {
  min-height: calc(100vh - 190px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 3;
}

.main-content-text {
  max-width: 860px;
  color: var(--color-white);
  font-size: var(--text-h4);
  text-align: center;
  margin-bottom: 32px;
}

.main-content-text p {
  margin-bottom: 24px;
}

/* experience page */
.experience-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.experience-main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.experience-hero {
  position: relative;
  min-height: 1450px;
  background-image: url("../img/BG-experience.jpg");
  background-size: cover;
  background-position-x: center;
  background-position-y: center top;
  background-repeat: no-repeat;
  overflow: hidden;
}

.experience-title-wrap {
  margin-bottom: 26px;
}

.experience-title-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
}

.experience-info-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  margin-bottom: 28px;
}

.experience-feature-title {
  margin: 0 0 6px;
  color: var(--color-white);
  font-size: var(--text-h3);
  font-weight: 700;
  line-height: 1.1;
}

.experience-feature-subtext {
  margin: 0;
  color: var(--color-white);
  font-size: var(--text-h4);
  font-weight: 500;
  line-height: 1.3;
}

.experience-amenities p {
  margin: 0 0 6px;
  color: var(--color-white);
  font-size: var(--text-h4);
  font-weight: 500;
  line-height: 1.3;
}

.experience-amenities-note {
  font-size: var(--text-caps) !important;
}

.experience-transport-wrap {
  width: 100%;
  max-width: 1000px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 26px;
}

.experience-transport-text {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.experience-transport-copy {
  margin: 0 0 10px;
  color: var(--color-white);
  font-size: var(--text-h3);
  font-weight: 700;
  line-height: 1.15;
}

.experience-transport-highlight {
  margin: 0;
  color: var(--color-accent);
  font-size: var(--text-h3);
  font-weight: 700;
  line-height: 1.15;
}

.experience-van-wrap {
  flex: 0 0 auto;
  margin-bottom: 28px;
}

.experience-van-img {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
}

.experience-wave-divider {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  line-height: 0;
  z-index: 2;
}

.experience-wave-divider-img {
  width: 100%;
  height: auto;
  display: block;
}

.experience-hero-content {
  min-height: calc(100vh - 100px);
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  padding-top: 70px;
  padding-bottom: 300px;
}

.experience-top-waves {
  position: absolute;
  top: 100px;
  right: 0;
  width: 260px;
  pointer-events: none;
  z-index: 2;
}

.experience-top-waves-img {
  width: 100%;
  height: auto;
  display: block;
}

/* experience content section */
.experience-content {
  position: relative;
  background-color: var(--color-white);
  z-index: 1;
  padding: 70px 0 90px;
}

.experience-content-inner {
  max-width: 980px;
}

.experience-section-heading {
  margin-bottom: 34px;
}

.experience-section-title {
  margin: 0 0 8px;
  color: var(--color-accent);
  font-size: var(--text-h1);
  font-weight: 700;
  line-height: 0.95;
  text-transform: uppercase;
}

.experience-section-subtitle {
  margin: 0;
  color: var(--color-primary);
  font-size: var(--text-h3);
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.experience-article-block {
  margin-bottom: 54px;
}

.experience-article-block-last {
  margin-bottom: 40px;
}

.experience-article-image-wrap {
  margin-bottom: 28px;
}

.experience-article-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

.experience-article-text {
  max-width: 860px;
}

.experience-article-title {
  margin: 0 0 6px;
  color: var(--color-primary);
  font-size: var(--text-h2);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.experience-article-kicker {
  margin: 0 0 24px;
  color: var(--color-primary);
  font-size: var(--text-caps);
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.experience-article-text p,
.experience-article-list {
  color: var(--color-primary);
  font-size: var(--text-body);
  font-weight: bold;
  line-height: 1.45;
}

.experience-article-text p {
  margin: 0 0 18px;
}

.experience-article-list {
  margin: 0 0 18px 22px;
  padding: 0;
}

/* back to top */
.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 1200;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.back-to-top-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
}

.back-to-top-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.back-to-top-icon-wrap {
  position: relative;
  width: 80px;
  height: 104px;
  display: inline-block;
}

.back-to-top-icon {
  position: absolute;
  inset: 0;
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.back-to-top-icon-default {
  opacity: 1;
}

.back-to-top-icon-hover {
  opacity: 0;
}

.back-to-top-link:hover .back-to-top-icon-default,
.back-to-top-link:focus .back-to-top-icon-default {
  opacity: 0;
  transform: translateY(-2px);
}

.back-to-top-link:hover .back-to-top-icon-hover,
.back-to-top-link:focus .back-to-top-icon-hover {
  opacity: 1;
  transform: translateY(-2px);
}

/* footer */
.site-footer {
  background-color: var(--color-white);
  min-height: 90px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.footer-row {
  min-height: 90px;
}

.site-footer .col-lg-3,
.site-footer .col-md-6 {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.footer-link,
.footer-copy {
  margin: 0;
  color: var(--color-primary);
  font-size: var(--text-body);
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  text-align: center;
  display: inline-block;
  vertical-align: middle;
}

.footer-link:hover,
.footer-link:focus {
  color: var(--color-accent);
  text-decoration: none;
}

.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  white-space: nowrap;
}

.footer-whatsapp-icon {
  width: 24px;
  height: auto;
  display: block;
  flex: 0 0 auto;
}

/* book page */
.book-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.book-main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.book-hero {
  position: relative;
  min-height: 100vh;
  background-image: url("../img/BG-Book.jpg");
  background-size: cover;
  background-position-x: center;
  background-position-y: 100px;
  background-repeat: no-repeat;
  overflow: hidden;
}

.book-hero-content {
  min-height: calc(100vh - 100px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 40px;
  padding-bottom: 140px;
  position: relative;
  z-index: 2;
}

.book-title-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.book-title-img {
  width: 100%;
  max-width: 320px;
  height: auto;
  display: block;
  margin-bottom: 16px;
}

.book-title-wave {
  width: 100%;
  max-width: 125px;
  height: auto;
  display: block;
}

.book-title {
  margin: 0;
  color: var(--color-white);
  font-size: var(--text-h1);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.book-intro-text {
  max-width: 720px;
  margin-bottom: 28px;
  color: var(--color-white);
  font-size: var(--text-body);
  line-height: 1.5;
}

.book-intro-text p {
  margin: 0;
}

.book-note {
  color: var(--color-accent);
}

.book-note a {
  color: var(--color-accent);
  text-decoration: none;
}

.book-form {
  width: 100%;
  max-width: 650px;
}

.book-form-group {
  display: grid;
  grid-template-columns: 160px 1fr;
  align-items: center;
  column-gap: 16px;
  margin-bottom: 14px;
}

.book-form-group label {
  color: var(--color-white);
  font-size: var(--text-caps);
  font-weight: 700;
  text-transform: uppercase;
  text-align: left;
}

.book-form-group input,
.book-form-group select,
.book-form-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--color-white);
  color: var(--color-white);
  font-size: var(--text-body);
  padding: 4px 0;
  outline: none;
}

.book-form-group select {
  background-image: url("../img/svg/icon-chevron.svg");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 14px auto;
  padding-right: 24px;
  appearance: none;
  -webkit-appearance: none;
}

.book-form-group select option {
  background-color: var(--color-white);
  color: #000000;
}

.book-form-group select option:hover,
.book-form-group select option:focus,
.book-form-group select option:checked {
  background-color: #000000;
  color: var(--color-white);
}

.book-form-actions {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}

.btn-send-outline {
  min-width: 120px;
  min-height: 42px;
  padding: 8px 20px;
  background: transparent;
  border: 2px solid var(--color-white);
  border-radius: 999px;
  color: var(--color-white);
  font-size: var(--text-caps);
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

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

.book-waves {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 420px;
  pointer-events: none;
  z-index: 2;
}

.book-waves-img {
  width: 100%;
  height: auto;
  display: block;
}


/* contact page */
.contact-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.contact-main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.contact-hero {
  flex: 1;
  background-image: url("../img/BG-contactUs.jpg");
  background-size: cover;
  background-position-x: center;
  background-position-y: 100px;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.contact-hero-content {
  min-height: calc(100vh - 190px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 90px;
  position: relative;
  z-index: 2;
}

.contact-title-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 44px;
}

.contact-title-group {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 10px;
  margin-bottom: 8px;
}

.contact-title-img {
  width: 100%;
  max-width: 332px;
  height: auto;
  display: block;
}

.contact-title-us-img {
  width: 100%;
  max-width: 95px;
  height: auto;
  display: block;
}

.contact-title-wave {
  width: 100%;
  max-width: 125px;
  height: auto;
  display: block;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: flex-start;
}

.contact-info-item {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: var(--color-white);
  text-decoration: none;
  font-size: var(--text-h3);
  font-weight: 700;
  line-height: 1.2;
}

.contact-info-phone {
  font-size: var(--text-h3);
}

.contact-info-icon {
  width: 28px;
  height: auto;
  display: block;
  flex: 0 0 auto;
}

.contact-waves {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 420px;
  pointer-events: none;
  z-index: 2;
}

.contact-waves-img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 767.98px) {
  .contact-hero-content {
    min-height: auto;
    padding-top: 40px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 100px;
  }

  .contact-title-wrap {
    width: 100%;
    margin-bottom: 36px;
  }

  .contact-title-group {
    width: 100%;
    gap: 6px;
    justify-content: center;
  }

  .contact-title-img {
    max-width: 230px;
  }

  .contact-title-us-img {
    max-width: 70px;
  }

  .contact-title-wave {
    max-width: 90px;
  }

  .contact-info-list {
    width: 100%;
    max-width: 100%;
    gap: 22px;
    align-items: flex-start;
  }

  .contact-info-item {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: var(--text-body);
    line-height: 1.35;
    text-align: left;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .contact-info-phone {
    font-size: var(--text-body);
  }

  .contact-info-icon {
    width: 22px;
    flex: 0 0 22px;
  }

  .contact-waves {
    width: 150px;
  }
}

@media (max-width: 575.98px) {
  .contact-hero-content {
    padding-left: 16px;
    padding-right: 16px;
  }

  .contact-title-img {
    max-width: 200px;
  }

  .contact-title-us-img {
    max-width: 60px;
  }

  .contact-info-item {
    font-size: var(--text-caps);
    gap: 10px;
  }

  .contact-info-icon {
    width: 20px;
    flex: 0 0 20px;
  }

  .contact-waves {
    width: 120px;
  }
}

/* select your yacht page */
.yachts-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.yachts-top-overlay {
  position: absolute;
  top: 100px;
  left: 0;
  width: 100%;
  z-index: 1;
  pointer-events: none;
}

.yachts-top-overlay-img {
  width: 100%;
  height: auto;
  display: block;
}

.yachts-main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.yachts-hero {
  position: relative;
  min-height: 100vh;
  background-image: url("../img/BG-selectYacht.jpg");
  background-size: cover;
  background-position-x: center;
  background-position-y: 100px;
  background-repeat: no-repeat;
  overflow: hidden;
}

.yachts-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 34px;
  padding-bottom: 180px;
}

.yachts-title-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 100px;
}

.yachts-title-select-img {
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
  margin-top: 100px;
}

.yachts-title-your-img {
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
  margin-top: 30px;
}

.yachts-title-yacht-img {
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
  margin-top: 30px;
}

.yachts-intro {
  margin-bottom: 100px;
  color: var(--color-white);
  text-align: center;
}

.yachts-intro-line-1 {
  font-size: var(--text-h3);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
}

.yachts-intro-line-2 {
  font-size: var(--text-h4);
  font-weight: 400;
  line-height: 1.3;
}

.yachts-title-chevron {
  width: 100%;
  max-width: 76px;
  height: auto;
  display: block;
  margin-bottom: 250px;
}

.yachts-title-chevron-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.yachts-grid {
  width: 100%;
  max-width: 1500px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 40px;
  justify-items: center;
  scroll-margin-top: 120px;
}

.yacht-circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 4px solid var(--color-accent);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.yacht-circle:hover,
.yacht-circle:focus {
  background-image: none !important;
  background-color: var(--color-white);
  transform: translateY(-2px);
}

.yacht-circle-last {
  grid-column: 1 / -1;
  justify-self: center;
}

.yacht-circle-label {
  color: var(--color-white);
  font-size: var(--text-h3);
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.yacht-circle-label strong {
  display: block;
  font-size: var(--text-h3);
  line-height: 1;
}

.yacht-circle:hover .yacht-circle-label,
.yacht-circle:focus .yacht-circle-label {
  color: var(--color-yacht-hover);
  text-shadow: none;
}

.yachts-waves {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 420px;
  pointer-events: none;
  z-index: 2;
}

.yachts-waves-img {
  width: 100%;
  height: auto;
  display: block;
}

.yacht-circle-bahia-43 {
  background-image: url("../img/Boton_BAIA_43.png");
}

.yacht-circle-lagoon-43 {
  background-image: url("../img/Boton_LAGOON_43.png");
}

.yacht-circle-pershing-55 {
  background-image: url("../img/Boton_PERSHING_55.png");
}

.yacht-circle-sea-ray-40 {
  background-image: url("../img/Boton_SEARAY_40.png");
}

.yacht-circle-schaefer-60 {
  background-image: url("../img/Boton_SHAEFER_60.png");
}

.yacht-circle-sunseeker-60 {
  background-image: url("../img/Boton_SUNSEEKER_60.png");
}

.yacht-circle-sunseeker-75 {
  background-image: url("../img/Boton_SUNSEEKER_75.png");
}

.yacht-circle-azimut-38 {
  background-image: url("../img/Boton_THEAZIMUT_38.png");
}

.yacht-circle-azimut-43 {
  background-image: url("../img/Boton_THEAZIMUT_43.png");
}

.yacht-circle-galeon-42 {
  background-image: url("../img/Boton_GALEON_42.png");
}

.yacht-circle-azimut-46 {
  background-image: url("../img/Boton_THEAZIMUT_46.png");
}

.yacht-circle-azimut-48 {
  background-image: url("../img/Boton_THEAZIMUT_48.png");
}

.yacht-circle-azimut-55 {
  background-image: url("../img/Boton_THEAZIMUT_55.png");
}

.yacht-circle-azimut-62 {
  background-image: url("../img/Boton_THEAZIMUT_62.png");
}

.yacht-circle-azimut-65 {
  background-image: url("../img/Boton_THEAZIMUT_65.png");
}

.yacht-circle-azimut-68 {
  background-image: url("../img/Boton_THEAZIMUT_68.png");
}

.yacht-circle-azimut-95 {
  background-image: url("../img/Boton_THEAZIMUT_95.png");
}

/* select your yacht responsive */
@media (max-width: 1199.98px) {
  .yachts-title-select-img {
    max-width: 360px;
    margin-top: 70px;
  }

  .yachts-title-your-img {
    max-width: 280px;
    margin-top: 24px;
  }

  .yachts-title-yacht-img {
    max-width: 320px;
    margin-top: 24px;
  }

  .yachts-intro-line-1 {
    font-size: var(--text-h3);
  }

  .yachts-intro-line-2 {
    font-size: var(--text-body);
  }

  .yachts-title-chevron {
    max-width: 64px;
    margin-bottom: 160px;
  }

  .yachts-grid {
    max-width: 980px;
    gap: 28px;
  }

  .yacht-circle {
    width: 220px;
    height: 220px;
  }

  .yacht-circle-label {
    font-size: var(--text-h3);
  }

  .yacht-circle-label strong {
    font-size: var(--text-h3);
  }

  .yachts-waves {
    width: 320px;
  }
}

@media (max-width: 991.98px) {
  .yachts-top-overlay {
    top: 90px;
  }

  .yachts-hero {
    background-position-y: 90px;
  }

  .yachts-hero-content {
    padding-top: 24px;
    padding-bottom: 140px;
  }

  .yachts-title-wrap {
    margin-bottom: 40px;
  }

  .yachts-title-select-img {
    max-width: 300px;
    margin-top: 40px;
  }

  .yachts-title-your-img {
    max-width: 230px;
    margin-top: 18px;
  }

  .yachts-title-yacht-img {
    max-width: 270px;
    margin-top: 18px;
  }

  .yachts-intro {
    margin-bottom: 70px;
  }

  .yachts-intro-line-1 {
    font-size: var(--text-h3);
    margin-bottom: 18px;
  }

  .yachts-intro-line-2 {
    font-size: var(--text-body);
  }

  .yachts-title-chevron {
    max-width: 54px;
    margin-bottom: 90px;
  }

  .yachts-grid {
    max-width: 760px;
    gap: 24px;
  }

  .yacht-circle {
    width: 180px;
    height: 180px;
  }

  .yacht-circle-label {
    font-size: var(--text-body);
  }

  .yacht-circle-label strong {
    font-size: var(--text-h3);
  }

  .yachts-waves {
    width: 240px;
  }
}

@media (max-width: 767.98px) {
  .yachts-top-overlay {
    top: 80px;
  }

  .yachts-hero {
    background-position-y: 80px;
  }

  .yachts-hero-content {
    padding-top: 20px;
    padding-bottom: 110px;
  }

  .yachts-title-wrap {
    margin-bottom: 28px;
  }

  .yachts-title-select-img {
    max-width: 230px;
    margin-top: 20px;
  }

  .yachts-title-your-img {
    max-width: 180px;
    margin-top: 14px;
  }

  .yachts-title-yacht-img {
    max-width: 210px;
    margin-top: 14px;
  }

  .yachts-intro {
    margin-bottom: 40px;
  }

  .yachts-intro-line-1 {
    font-size: var(--text-body);
    margin-bottom: 14px;
  }

  .yachts-intro-line-2 {
    font-size: var(--text-body);
  }

  .yachts-title-chevron {
    max-width: 42px;
    margin-bottom: 50px;
  }

  .yachts-grid {
    max-width: 100%;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .yacht-circle {
    width: 150px;
    height: 150px;
  }

  .yacht-circle-label {
    font-size: var(--text-body);
  }

  .yacht-circle-label strong {
    font-size: var(--text-h3);
  }

  .yacht-circle-last {
    grid-column: 1 / -1;
    justify-self: center;
  }

  .yachts-waves {
    width: 170px;
  }
}

@media (max-width: 575.98px) {
  .yachts-hero-content {
    padding-top: 16px;
    padding-bottom: 90px;
  }

  .yachts-title-select-img {
    max-width: 180px;
    margin-top: 10px;
  }

  .yachts-title-your-img {
    max-width: 145px;
    margin-top: 10px;
  }

  .yachts-title-yacht-img {
    max-width: 165px;
    margin-top: 10px;
  }

  .yachts-intro {
    margin-bottom: 28px;
  }

  .yachts-intro-line-1 {
    font-size: var(--text-body);
    margin-bottom: 10px;
  }

  .yachts-intro-line-2 {
    font-size: var(--text-caps);
  }

  .yachts-title-chevron {
    max-width: 34px;
    margin-bottom: 34px;
  }

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

  .yacht-circle {
    width: 180px;
    height: 180px;
  }

  .yacht-circle-label {
    font-size: var(--text-body);
  }

  .yacht-circle-label strong {
    font-size: var(--text-h3);
  }

  .yacht-circle-last {
    grid-column: auto;
  }

  .yachts-waves {
    width: 120px;
  }
}


/* book page responsive */
@media (max-width: 1199.98px) {
  .book-title-img {
    max-width: 280px;
  }

  .book-title-wave {
    max-width: 110px;
  }

  .book-intro-text {
    max-width: 640px;
    font-size: var(--text-body);
  }

  .book-form {
    max-width: 400px;
  }
}

@media (max-width: 991.98px) {
  .book-hero {
    background-position-y: 90px;
  }

  .book-hero-content {
    min-height: calc(100vh - 180px);
    padding-top: 32px;
    padding-bottom: 100px;
  }

  .book-title-img {
    max-width: 250px;
  }

  .book-title-wave {
    max-width: 95px;
  }

  .book-intro-text {
    max-width: 560px;
    font-size: var(--text-body);
    margin-bottom: 24px;
  }

  .book-form {
    max-width: 380px;
  }

  .book-form-group {
    grid-template-columns: 145px 1fr;
    column-gap: 14px;
  }

  .book-form-group label {
    font-size: var(--text-caps);
  }

  .book-form-group input,
  .book-form-group select,
  .book-form-group textarea {
    font-size: var(--text-body);
  }

  .book-waves {
    width: 300px;
  }
}

@media (max-width: 767.98px) {
  .book-hero {
    background-position-y: 80px;
  }

  .book-hero-content {
    min-height: auto;
    padding-top: 24px;
    padding-bottom: 80px;
  }

  .book-title-wrap {
    margin-bottom: 16px;
  }

  .book-title-img {
    max-width: 210px;
    margin-bottom: 12px;
  }

  .book-title-wave {
    max-width: 80px;
  }

  .book-intro-text {
    max-width: 100%;
    font-size: var(--text-body);
    line-height: 1.45;
    margin-bottom: 24px;
    padding: 0 12px;
  }

  .book-form {
    max-width: 100%;
    padding: 0 12px;
  }

  .book-form-group {
    grid-template-columns: 1fr;
    row-gap: 8px;
    margin-bottom: 18px;
  }

  .book-form-group label {
    font-size: var(--text-caps);
    text-align: left;
  }

  .book-form-group input,
  .book-form-group select,
  .book-form-group textarea {
    font-size: var(--text-body);
  }

  .book-form-actions {
    margin-top: 20px;
  }

  .btn-send-outline {
    min-width: 110px;
    min-height: 40px;
    font-size: var(--text-caps);
  }

  .book-waves {
    width: 180px;
  }
}

@media (max-width: 575.98px) {
  .book-hero-content {
    padding-top: 18px;
    padding-bottom: 70px;
  }

  .book-title-img {
    max-width: 170px;
  }

  .book-title-wave {
    max-width: 64px;
  }

  .book-intro-text {
    font-size: var(--text-body);
    padding: 0 10px;
  }

  .book-form {
    padding: 0 10px;
  }

  .book-form-group label {
    font-size: var(--text-caps);
  }

  .book-form-group input,
  .book-form-group select {
    font-size: var(--text-body);
  }

  .btn-send-outline {
    min-width: 100px;
    min-height: 38px;
    font-size: var(--text-caps);
  }

  .book-waves {
    width: 130px;
  }
}

/* fishing charters page */
.fishing-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.fishing-main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* hero */
.fishing-hero {
  position: relative;
  min-height: 100vh;
  background-image: url("../img/BG-fishingCharters-01.jpg");
  background-size: cover;
  background-position-x: center;
  background-position-y: 100px;
  background-repeat: no-repeat;
  overflow: hidden;
}

.fishing-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      var(--color-primary-overlay) 0%,
      var(--color-primary-transparent) 100%);
  z-index: 1;
}

.fishing-hero-content {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 100px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 40px;
  padding-bottom: 100px;
}

.fishing-title-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 50px;
}

.fishing-title-encanto {
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
  margin-bottom: 18px;
}

.fishing-title-lower {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 18px;
}

.fishing-title-words {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.fishing-title-fishing {
  width: 100%;
  max-width: 300px;
  height: auto;
  display: block;
}

.fishing-title-charters {
  width: 100%;
  max-width: 300px;
  height: auto;
  display: block;
  margin-top: 14px;
}

.fishing-title-icon-wrap {
  display: flex;
  align-items: stretch;
}

.fishing-title-icon {
  height: 100%;
  width: auto;
  max-height: 100px;
  display: block;
}

.fishing-title-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 18px;
}

.fishing-hero-text {
  max-width: 980px;
  margin-bottom: 40px;
  color: var(--color-white);
  text-align: center;
}

/* keep fishing-hero as base from fishing-charters, only adjust page-specific text if needed */
.fishing-yachts-page .fishing-yachts-hero-text {
  max-width: 980px;
  margin-bottom: 40px;
  color: var(--color-white);
  text-align: center;
}

.fishing-hero-line-1,
.fishing-hero-line-2 {
  font-size: var(--text-h4);
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-white);
}

.fishing-hero-actions {
  display: flex;
  gap: 28px;
  margin-bottom: 40px;
}

.fishing-btn {
  min-width: 270px;
  min-height: 64px;
  font-size: var(--text-caps);
}

.fishing-btn-secondary {
  background-color: var(--color-white);
  color: var(--color-accent);
}

.fishing-btn-secondary:hover,
.fishing-btn-secondary:focus {
  background-color: var(--color-accent);
  color: var(--color-white);
}

.fishing-chevron-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.fishing-chevron-wrap {
  position: relative;
  width: 64px;
  height: 64px;
  display: inline-block;
}

.fishing-chevron {
  position: absolute;
  inset: 0;
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.fishing-chevron-default {
  opacity: 1;
}

.fishing-chevron-hover {
  opacity: 0;
}

.fishing-chevron-link:hover .fishing-chevron-default,
.fishing-chevron-link:focus .fishing-chevron-default {
  opacity: 0;
  transform: translateY(-2px);
}

.fishing-chevron-link:hover .fishing-chevron-hover,
.fishing-chevron-link:focus .fishing-chevron-hover {
  opacity: 1;
  transform: translateY(-2px);
}

/* about the tour */
.fishing-about {
  position: relative;
  background-image: url("../img/BG-fishingCharters-02.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.fishing-about-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 80px;
  padding-bottom: 100px;
}

.fishing-section-title-wrap {
  margin-bottom: 40px;
}

.fishing-section-title {
  margin: 0;
  text-transform: uppercase;
  line-height: 0.95;
}

.fishing-section-title-dark {
  color: var(--color-fishing-accent);
  font-size: var(--text-h1);
  font-weight: 700;
}

.fishing-section-subtitle {
  margin: 0;
  text-transform: uppercase;
  line-height: 0.95;
}

.fishing-section-subtitle-outline {
  color: transparent;
  -webkit-text-stroke: 2px var(--color-fishing-accent);
  font-size: var(--text-h1);
  font-weight: 700;
}

.fishing-about-text {
  max-width: 980px;
  color: var(--color-white);
  font-size: var(--text-h4);
  font-weight: 500;
  line-height: 1.5;
}

.fishing-about-text p {
  margin: 0 0 28px;
}

.fishing-chevron-link-about {
  margin-top: 24px;
}

/* included */
.fishing-included {
  position: relative;
  background-image: url("../img/BG-fishingCharters-03.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.fishing-included-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 90px;
  padding-bottom: 140px;
}

.fishing-section-title-wrap-included {
  margin-bottom: 44px;
}

.fishing-section-title-light {
  color: var(--color-primary-alt);
  font-size: var(--text-h1);
  font-weight: 700;
}

.fishing-section-subtitle-accent {
  color: var(--color-accent);
  font-size: var(--text-h2);
  font-weight: 700;
}

.fishing-included-list {
  max-width: 900px;
  margin-bottom: 28px;
  color: var(--color-white);
}

.fishing-included-list p {
  margin: 0 0 12px;
  font-size: var(--text-h4);
  font-weight: 500;
  line-height: 1.25;
}

.fishing-included-list p span {
  color: var(--color-accent);
}

.fishing-included-guests {
  font-size: var(--text-h4) !important;
  text-transform: uppercase;
  font-weight: 700 !important;
}

.fishing-included-guests span {
  color: var(--color-accent);
}

.fishing-gratuity-note {
  margin: 0 0 36px;
  color: var(--color-white);
  font-size: var(--text-body);
  font-weight: 700;
}

.fishing-included-actions {
  display: flex;
  justify-content: center;
}

.fishing-divider {
  position: relative;
  line-height: 0;
  z-index: 3;
  margin-top: -180px;
  margin-bottom: -180px;
  pointer-events: none;
}

.fishing-divider-img {
  width: 100%;
  height: auto;
  display: block;
}

.fishing-divider-title {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
  pointer-events: none;
}

.fishing-divider-main {
  margin: 0;
  color: var(--color-fishing-accent);
  font-size: var(--text-h1);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.95;
}

.fishing-divider-sub {
  margin: 0;
  color: transparent;
  -webkit-text-stroke: 2px var(--color-fishing-accent);
  font-size: var(--text-h1);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.95;
}

.fishing-divider-main-dark {
  color: var(--color-primary-alt);
}

.fishing-divider-sub-accent {
  color: var(--color-accent);
  -webkit-text-stroke: 0;
  font-size: var(--text-h2);
  font-weight: 700;
}

.fishing-included {
  position: relative;
  background-image: url("../img/BG-fishingCharters-03.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.fishing-waves {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 420px;
  pointer-events: none;
  z-index: 2;
}

.fishing-waves-img {
  width: 100%;
  height: auto;
  display: block;
}

.fishing-hero-content {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 100px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 100px;
  padding-bottom: 220px;
}

.fishing-about-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 220px;
  padding-bottom: 220px;
}

.fishing-included-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 220px;
  padding-bottom: 220px;
}

/* fishing charters responsive */
@media (max-width: 1199.98px) {
  .fishing-hero-content {
    padding-top: 80px;
    padding-bottom: 180px;
  }

  .fishing-title-encanto {
    max-width: 520px;
  }

  .fishing-title-fishing,
  .fishing-title-charters {
    max-width: 400px;
  }

  .fishing-title-icon {
    max-height: 145px;
  }

  .fishing-hero-line-1,
  .fishing-hero-line-2,
  .fishing-about-text {
    font-size: var(--text-h3);
  }

  .fishing-btn {
    min-width: 240px;
    min-height: 58px;
    font-size: var(--text-caps);
  }

  .fishing-divider {
    margin-top: -150px;
    margin-bottom: -150px;
  }

  .fishing-divider-main {
    font-size: var(--text-h1);
  }

  .fishing-divider-sub {
    font-size: var(--text-h2);
  }

  .fishing-divider-sub-accent {
    font-size: var(--text-h3);
  }

  .fishing-included-list p {
    font-size: var(--text-h3);
  }

  .fishing-included-guests {
    font-size: var(--text-h2) !important;
  }

  .fishing-waves {
    width: 320px;
  }
}

@media (max-width: 991.98px) {
  .fishing-hero {
    background-position-y: 90px;
  }

  .fishing-hero-content {
    min-height: calc(100vh - 90px);
    padding-top: 60px;
    padding-bottom: 150px;
  }

  .fishing-title-encanto {
    max-width: 420px;
    margin-bottom: 14px;
  }

  .fishing-title-lower {
    gap: 14px;
  }

  .fishing-title-fishing,
  .fishing-title-charters {
    max-width: 320px;
  }

  .fishing-title-charters {
    margin-top: 10px;
  }

  .fishing-title-icon {
    max-height: 115px;
  }

  .fishing-hero-line-1,
  .fishing-hero-line-2,
  .fishing-about-text {
    font-size: var(--text-h3);
  }

  .fishing-hero-actions {
    gap: 18px;
    margin-bottom: 28px;
  }

  .fishing-btn {
    min-width: 210px;
    min-height: 54px;
    font-size: var(--text-caps);
  }

  .fishing-chevron-wrap {
    width: 52px;
    height: 52px;
  }

  .fishing-divider {
    margin-top: -120px;
    margin-bottom: -120px;
  }

  .fishing-divider-main {
    font-size: var(--text-h2);
  }

  .fishing-divider-sub {
    font-size: var(--text-h2);
  }

  .fishing-divider-sub-accent {
    font-size: var(--text-h3);
  }

  .fishing-about-content,
  .fishing-included-content {
    padding-top: 170px;
    padding-bottom: 170px;
  }

  .fishing-included-list p {
    font-size: var(--text-body);
  }

  .fishing-included-guests {
    font-size: var(--text-h2) !important;
  }

  .fishing-gratuity-note {
    font-size: var(--text-body);
  }

  .fishing-waves {
    width: 240px;
  }
}

@media (max-width: 767.98px) {
  .fishing-hero {
    background-position-y: 80px;
  }

  .fishing-hero-content {
    min-height: auto;
    padding-top: 40px;
    padding-bottom: 120px;
  }

  .fishing-title-wrap {
    margin-bottom: 32px;
  }

  .fishing-title-encanto {
    max-width: 300px;
    margin-bottom: 10px;
  }

  .fishing-title-lower {
    gap: 10px;
  }

  .fishing-title-fishing,
  .fishing-title-charters {
    max-width: 220px;
  }

  .fishing-title-charters {
    margin-top: 8px;
  }

  .fishing-title-icon {
    max-height: 82px;
  }

  .fishing-hero-line-1,
  .fishing-hero-line-2,
  .fishing-about-text {
    font-size: var(--text-body);
    line-height: 1.45;
  }

  .fishing-hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
  }

  .fishing-btn {
    min-width: 220px;
    min-height: 50px;
    font-size: var(--text-caps);
  }

  .fishing-chevron-wrap {
    width: 42px;
    height: 42px;
  }

  .fishing-divider {
    margin-top: -85px;
    margin-bottom: -85px;
  }

  .fishing-divider-main {
    font-size: var(--text-h2);
  }

  .fishing-divider-sub {
    font-size: var(--text-h3);
  }

  .fishing-divider-sub-accent {
    font-size: var(--text-body);
  }

  .fishing-about-content,
  .fishing-included-content {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .fishing-about-text p {
    margin-bottom: 20px;
  }

  .fishing-included-list {
    max-width: 100%;
    padding: 0 12px;
  }

  .fishing-included-list p {
    font-size: var(--text-body);
  }

  .fishing-included-guests {
    font-size: var(--text-h3) !important;
  }

  .fishing-gratuity-note {
    font-size: var(--text-caps);
    padding: 0 12px;
  }

  .fishing-waves {
    width: 170px;
  }
}

@media (max-width: 575.98px) {
  .fishing-hero-content {
    padding-top: 28px;
    padding-bottom: 95px;
  }

  .fishing-title-wrap {
    margin-bottom: 24px;
  }

  .fishing-title-encanto {
    max-width: 220px;
  }

  .fishing-title-lower {
    gap: 8px;
  }

  .fishing-title-fishing,
  .fishing-title-charters {
    max-width: 160px;
  }

  .fishing-title-charters {
    margin-top: 6px;
  }

  .fishing-title-icon {
    max-height: 60px;
  }

  .fishing-hero-line-1,
  .fishing-hero-line-2,
  .fishing-about-text {
    font-size: var(--text-body);
    line-height: 1.4;
  }

  .fishing-btn {
    min-width: 190px;
    min-height: 46px;
    font-size: var(--text-caps);
  }

  .fishing-chevron-wrap {
    width: 34px;
    height: 34px;
  }

  .fishing-divider {
    margin-top: -60px;
    margin-bottom: -60px;
  }

  .fishing-divider-main {
    font-size: var(--text-h3);
  }

  .fishing-divider-sub {
    font-size: var(--text-h3);
  }

  .fishing-divider-sub-accent {
    font-size: var(--text-body);
  }

  .fishing-about-content,
  .fishing-included-content {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .fishing-included-list p {
    font-size: var(--text-body);
  }

  .fishing-included-guests {
    font-size: var(--text-h3) !important;
  }

  .fishing-gratuity-note {
    font-size: var(--text-caps);
  }

  .fishing-waves {
    width: 120px;
  }
}

/* yacht detail pages */
.yacht-detail-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.yacht-detail-main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* section 1 */
.yacht-detail-hero {
  position: relative;
  background-color: var(--color-white);
}

.yacht-detail-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: var(--color-primary);
}

.yacht-detail-hero-intro {
  margin-top: 40px;
  margin-bottom: 40px;
  text-align: center;
}

.yacht-detail-hero-line-1 {
  margin: 0 0 18px;
  color: var(--color-white);
  font-size: var(--text-h3);
  font-weight: 700;
  line-height: 1.25;
}

.yacht-detail-hero-line-2 {
  margin: 0;
  color: var(--color-white);
  font-size: var(--text-h4);
  font-weight: 500;
  line-height: 1.3;
}

.yacht-detail-chevron-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  margin-bottom: 28px;
}

.yacht-detail-chevron-wrap {
  position: relative;
  width: 120px;
  height: 120px;
  display: inline-block;
}

.yacht-detail-chevron {
  position: absolute;
  inset: 0;
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.yacht-detail-chevron-default {
  opacity: 1;
}

.yacht-detail-chevron-hover {
  opacity: 0;
}

.yacht-detail-chevron-link:hover .yacht-detail-chevron-default,
.yacht-detail-chevron-link:focus .yacht-detail-chevron-default {
  opacity: 0;
  transform: translateY(-2px);
}

.yacht-detail-chevron-link:hover .yacht-detail-chevron-hover,
.yacht-detail-chevron-link:focus .yacht-detail-chevron-hover {
  opacity: 1;
  transform: translateY(-2px);
}

.yacht-detail-hero-image {
  width: 100%;
  height: auto;
  display: block;
  margin-top: -1px;
}

/* section 1.5 */
.yacht-name {
  position: relative;
  background-color: var(--color-white);
  overflow: hidden;
  margin-top: -2px;
}

.yacht-name-content {
  position: relative;
  padding-left: 0;
  padding-right: 0;
}



.yacht-name .yacht-detail-section-kicker {
  position: absolute;
  left: 60px;
  top: 10%;
  z-index: 10;
  display: block;
  margin: 0;
  color: var(--color-accent);
  font-size: var(--text-h4);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.yacht-name .yacht-detail-section-kicker::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  flex: 0 0 auto;
  margin-top: -1px;
}

.yacht-detail-section-kicker:hover,
.yacht-detail-section-kicker:focus {
  color: var(--color-accent);
}

.yacht-name-image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
}

/* section 2 */
.yacht-detail-pricing {
  background-color: var(--color-white);
}

.yacht-detail-pricing-content {
  text-align: center;
  padding-top: 50px;
  padding-bottom: 60px;
}

.yacht-detail-pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 760px;
  margin: 0 auto 20px;
}

.yacht-detail-price-label {
  margin: 0 0 8px;
  color: var(--color-primary);
  font-size: var(--text-h4);
  font-weight: 700;
  line-height: 1.2;
}

.yacht-detail-price-label span {
  color: var(--color-accent);
}

.yacht-detail-price-value {
  margin: 0;
  color: var(--color-primary);
  font-size: var(--text-h3);
  font-weight: 700;
  line-height: 1.1;
}

.yacht-detail-pricing-note {
  margin: 0 auto 30px;
  max-width: 760px;
  color: var(--color-primary);
  font-size: var(--text-body);
  font-weight: 700;
  line-height: 1.35;
}

.yacht-detail-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px 40px;
  max-width: 760px;
  margin: 0 auto;
}

.yacht-detail-info-item h3 {
  margin: 0 0 6px;
  color: var(--color-accent);
  font-size: var(--text-h3);
  font-weight: 700;
  line-height: 1.2;
}

.yacht-detail-info-item p {
  margin: 0;
  color: var(--color-primary);
  font-size: var(--text-h3);
  font-weight: 700;
  line-height: 1.3;
}

/* section 3 */
.yacht-detail-gallery {
  background-color: var(--color-white);
}

.yacht-detail-gallery-image {
  width: 100%;
  height: auto;
  display: block;
}

/* section 4 */
.yacht-detail-book {
  position: relative;
  background-color: var(--color-white);
}

.yacht-detail-book-content {
  text-align: center;
  padding-top: 50px;
  padding-bottom: 70px;
}

.yacht-detail-book-title {
  margin: 0 0 26px;
  color: var(--color-accent);
  font-size: var(--text-h3);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.yacht-detail-book-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
}

.yacht-detail-book-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.yacht-detail-book-icon {
  width: 100px;
  height: auto;
  display: block;
}

.yacht-detail-book-icon-email {
  width: 100px;
}

/* responsive */
@media (max-width: 1199.98px) {
  .yacht-detail-hero-intro {
    margin-top: 32px;
    margin-bottom: 32px;
  }

  .yacht-detail-hero-line-1 {
    font-size: var(--text-h3);
  }

  .yacht-detail-hero-line-2 {
    font-size: var(--text-body);
  }

  .yacht-detail-chevron-wrap {
    width: 104px;
    height: 104px;
  }

  .yacht-detail-section-kicker {
    left: 48px;
    top: 10%;
    font-size: var(--text-caps);
  }

  .yacht-detail-pricing-content {
    padding-top: 42px;
    padding-bottom: 52px;
  }

  .yacht-detail-pricing-grid {
    max-width: 900px;
    gap: 24px;
  }

  .yacht-detail-price-label,
  .yacht-detail-price-value,
  .yacht-detail-info-item h3,
  .yacht-detail-info-item p {
    font-size: var(--text-h3);
  }

  .yacht-detail-pricing-note {
    max-width: 900px;
    font-size: var(--text-h3);
  }

  .yacht-detail-info-grid {
    max-width: 900px;
    gap: 22px 28px;
  }

  .yacht-detail-book-content {
    padding-top: 42px;
    padding-bottom: 56px;
  }

  .yacht-detail-book-title {
    font-size: var(--text-h2);
    margin-bottom: 22px;
  }

  .yacht-detail-book-icon,
  .yacht-detail-book-icon-email {
    width: 120px;
  }
}

@media (max-width: 991.98px) {
  .yacht-detail-hero-intro {
    margin-top: 28px;
    margin-bottom: 28px;
    padding: 0 20px;
  }

  .yacht-detail-hero-line-1 {
    font-size: var(--text-body);
    margin-bottom: 12px;
  }

  .yacht-detail-hero-line-2 {
    font-size: var(--text-body);
  }

  .yacht-detail-chevron-link {
    margin-bottom: 20px;
  }

  .yacht-detail-chevron-wrap {
    width: 88px;
    height: 88px;
  }

  .yacht-detail-section-kicker {
    left: 36px;
    top: 10%;
    font-size: var(--text-caps);
  }

  .yacht-detail-pricing-content {
    padding-top: 36px;
    padding-bottom: 44px;
  }

  .yacht-detail-pricing-grid,
  .yacht-detail-info-grid {
    max-width: 100%;
  }

  .yacht-detail-pricing-grid {
    gap: 20px;
    margin-bottom: 16px;
  }

  .yacht-detail-price-label,
  .yacht-detail-price-value,
  .yacht-detail-info-item h3,
  .yacht-detail-info-item p {
    font-size: var(--text-body);
  }

  .yacht-detail-pricing-note {
    font-size: var(--text-body);
    margin-bottom: 22px;
  }

  .yacht-detail-info-grid {
    gap: 18px 20px;
  }

  .yacht-detail-book-content {
    padding-top: 36px;
    padding-bottom: 46px;
  }

  .yacht-detail-book-title {
    font-size: var(--text-h2);
    margin-bottom: 18px;
  }

  .yacht-detail-book-icons {
    gap: 20px;
  }

  .yacht-detail-book-icon,
  .yacht-detail-book-icon-email {
    width: 96px;
  }
}

@media (max-width: 767.98px) {
  .yacht-detail-hero-intro {
    margin-top: 24px;
    margin-bottom: 24px;
    padding: 0 16px;
  }

  .yacht-detail-hero-line-1 {
    font-size: var(--text-body);
    margin-bottom: 10px;
  }

  .yacht-detail-hero-line-2 {
    font-size: var(--text-body);
    line-height: 1.4;
  }

  .yacht-detail-chevron-link {
    margin-bottom: 16px;
  }

  .yacht-detail-chevron-wrap {
    width: 72px;
    height: 72px;
  }

  .yacht-detail-section-kicker {
    left: 10px !important;
    top: 10%;
    font-size: var(--text-caps) !important;
  }

  .yacht-detail-pricing-content {
    padding-top: 28px;
    padding-bottom: 34px;
  }

  .yacht-detail-pricing-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 16px;
  }

  .yacht-detail-price-label,
  .yacht-detail-price-value,
  .yacht-detail-info-item h3,
  .yacht-detail-info-item p {
    font-size: var(--text-body);
  }

  .yacht-detail-pricing-note {
    font-size: var(--text-caps);
    line-height: 1.4;
    margin-bottom: 18px;
  }

  .yacht-detail-info-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .yacht-detail-book-content {
    padding-top: 28px;
    padding-bottom: 38px;
  }

  .yacht-detail-book-title {
    font-size: var(--text-h3);
    margin-bottom: 16px;
  }

  .yacht-detail-book-icons {
    gap: 18px;
  }

  .yacht-detail-book-icon,
  .yacht-detail-book-icon-email {
    width: 72px;
  }
}

@media (max-width: 575.98px) {
  .yacht-detail-hero-intro {
    margin-top: 18px;
    margin-bottom: 18px;
    padding: 0 12px;
  }

  .yacht-detail-hero-line-1 {
    font-size: var(--text-body);
  }

  .yacht-detail-hero-line-2 {
    font-size: var(--text-caps);
  }

  .yacht-detail-chevron-wrap {
    width: 58px;
    height: 58px;
  }

  .yacht-detail-section-kicker {
    left: 16px;
    top: 10%;
    font-size: var(--text-caps);
  }

  .yacht-detail-pricing-content {
    padding-top: 22px;
    padding-bottom: 28px;
  }

  .yacht-detail-pricing-grid {
    gap: 14px;
  }

  .yacht-detail-price-label,
  .yacht-detail-price-value,
  .yacht-detail-info-item h3,
  .yacht-detail-info-item p {
    font-size: var(--text-body);
  }

  .yacht-detail-pricing-note {
    font-size: var(--text-caps);
    margin-bottom: 16px;
  }

  .yacht-detail-info-grid {
    gap: 14px;
  }

  .yacht-detail-book-content {
    padding-top: 24px;
    padding-bottom: 30px;
  }

  .yacht-detail-book-title {
    font-size: var(--text-h3);
    margin-bottom: 14px;
  }

  .yacht-detail-book-icons {
    gap: 14px;
  }

  .yacht-detail-book-icon,
  .yacht-detail-book-icon-email {
    width: 58px;
  }
}

/* responsive */
@media (max-width: 1199.98px) {
  .about-title-img {
    max-width: 760px;
  }

  .main-content-text {
    max-width: 760px;
    font-size: var(--text-body);
  }

  .btn-primary-custom {
    min-width: 480px;
    font-size: var(--text-caps);
  }

  .about-waves {
    width: 340px;
  }
}

@media (max-width: 991.98px) {

  .site-header,
  .site-header-inner {
    height: 90px;
  }

  .menu-text,
  .menu-text-inner {
    font-size: var(--text-caps);
  }

  .icon-menu {
    width: 42px;
  }

  .social-icons {
    gap: 14px;
  }

  .icon-instagram,
  .icon-whatsapp {
    width: 24px;
  }

  .icon-email {
    width: 34px;
  }

  .header-center-logo,
  .header-center-logo-inner {
    max-width: 180px;
  }

  .menu-panel {
    top: 90px;
    width: 100%;
    height: calc(100vh - 90px);
  }

  .menu-panel-link {
    font-size: var(--text-caps);
    padding: 16px 24px 16px 40px;
  }

  .about-hero-content {
    min-height: calc(100vh - 180px);
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .about-title-img {
    max-width: 620px;
  }

  .main-content-text {
    max-width: 680px;
    font-size: var(--text-body);
  }

  .btn-primary-custom {
    min-width: 380px;
    min-height: 74px;
    font-size: var(--text-caps);
    padding: 16px 28px;
  }

  .about-waves {
    width: 260px;
  }

  .site-footer,
  .footer-row {
    min-height: 80px;
  }

  .footer-link,
  .footer-copy {
    font-size: var(--text-body);
  }
}

@media (max-width: 767.98px) {

  .site-header,
  .site-header-inner {
    height: 80px;
  }

  .menu-trigger {
    gap: 8px;
  }

  .menu-text,
  .menu-text-inner {
    font-size: var(--text-caps);
  }

  .icon-menu {
    width: 34px;
  }

  .social-icons {
    gap: 10px;
  }

  .icon-instagram,
  .icon-whatsapp {
    width: 20px;
  }

  .icon-email {
    width: 28px;
  }

  .header-center-logo,
  .header-center-logo-inner {
    max-width: 140px;
  }

  .menu-panel {
    top: 80px;
    width: 100%;
    height: calc(100vh - 80px);
  }

  .menu-panel-link {
    font-size: var(--text-caps);
    padding: 14px 20px 14px 24px;
  }

  .about-hero-content {
    min-height: auto;
    padding-top: 50px;
    padding-bottom: 90px;
  }

  .about-title-wrap {
    margin-bottom: 24px;
  }

  .about-title-img {
    max-width: 100%;
  }

  .main-content-text {
    max-width: 100%;
    font-size: var(--text-body);
    padding: 0 12px;
    margin-bottom: 24px;
  }

  .btn-primary-custom {
    min-width: auto;
    width: 100%;
    max-width: 100%;
    min-height: 64px;
    font-size: var(--text-caps);
    padding: 14px 20px;
  }

  .about-waves {
    width: 180px;
  }

  .experience-transport-wrap {
    max-width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
  }

  .experience-van-wrap {
    order: 1;
    margin-bottom: 0;
  }

  .experience-transport-text {
    order: 2;
    flex: none;
    text-align: center;
  }

  .site-footer {
    padding: 20px 0;
    min-height: auto;
  }

  .footer-row {
    min-height: auto;
    row-gap: 10px;
  }

  .site-footer .col-lg-3,
  .site-footer .col-md-6 {
    width: 100%;
    text-align: center;
  }

  .footer-link,
  .footer-copy {
    display: inline-block;
    font-size: var(--text-body);
    line-height: 1.4;
    text-align: center;
  }

  .footer-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    white-space: nowrap;
    gap: 8px;
    margin-bottom: 4px;
  }

  .footer-whatsapp-icon {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
  }

  .footer-copy {
    margin-top: 6px;
  }
}

@media (max-width: 575.98px) {

  .menu-text,
  .menu-text-inner {
    font-size: var(--text-caps);
  }

  .icon-menu {
    width: 30px;
  }

  .header-center-logo,
  .header-center-logo-inner {
    max-width: 110px;
  }

  .main-content-text {
    font-size: var(--text-body);
  }

  .btn-primary-custom {
    font-size: var(--text-caps);
    min-height: 58px;
  }

  .about-waves {
    width: 140px;
  }

  .footer-whatsapp {
    gap: 8px;
  }

  .footer-whatsapp-icon {
    width: 20px;
  }
}



/* fishing yachts page */
.fishing-yachts-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.fishing-yachts-main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* divider */
.fishing-divider-yachts {
  position: relative;
  line-height: 0;
  z-index: 3;
  margin-top: -180px;
  margin-bottom: -150px;
  pointer-events: none;
}

.fishing-divider-yachts .fishing-divider-img {
  width: 100%;
  height: auto;
  display: block;
}

.fishing-divider-title-yachts {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  pointer-events: auto;
  padding: 20px;
}

.fishing-yachts-divider-icon {
  width: 100%;
  max-width: 136px;
  height: auto;
  display: block;
  margin-bottom: 36px;
}

.fishing-yachts-divider-title-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 26px;
}

.fishing-yachts-divider-title-our {
  width: 100%;
  max-width: 210px;
  height: auto;
  display: block;
}

.fishing-yachts-divider-title-fishing {
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
  margin-top: 24px;
}

.fishing-yachts-divider-title-yachts {
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
  margin-top: 24px;
  margin-bottom: 36px;
}

/* bottom section */
.fishing-yachts-grid-section {
  position: relative;
  background-image: url("../img/BG-fishingYachts-02.jpg");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  overflow: hidden;
}

.fishing-yachts-grid-content {
  position: relative;
  z-index: 2;
  padding-top: 220px;
  padding-bottom: 180px;
}

.fishing-yachts-grid {
  width: 100%;
  max-width: 980px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 44px;
  justify-items: center;
  margin: 0 auto;
}

.fishing-yacht-circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 4px solid var(--color-yacht-hover);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.fishing-yacht-circle:hover,
.fishing-yacht-circle:focus {
  background-image: none !important;
  background-color: var(--color-white);
  transform: translateY(-2px);
}

.fishing-yacht-circle-label {
  color: var(--color-white);
  font-size: var(--text-h3);
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.fishing-yacht-circle-label strong {
  display: block;
  font-size: var(--text-h3);
  line-height: 1;
}

.fishing-yacht-circle:hover .fishing-yacht-circle-label,
.fishing-yacht-circle:focus .fishing-yacht-circle-label {
  color: var(--color-accent);
  text-shadow: none;
}

.fishing-yacht-circle-last {
  grid-column: 1 / -1;
  justify-self: center;
}

/* yacht button images */
.fishing-yacht-circle-cabo-35 {
  background-image: url("../img/Boton_CABO_35.png");
}

.fishing-yacht-circle-cabo-36 {
  background-image: url("../img/Boton_CABO_36.png");
}

.fishing-yacht-circle-cabo-43 {
  background-image: url("../img/Boton_CABO_43.png");
}

.fishing-yacht-circle-hatteras-60 {
  background-image: url("../img/Boton_HATTERAS_60.png");
}

.fishing-yacht-circle-riviera-43 {
  background-image: url("../img/Boton_RIVIERA_43.png");
}

/* responsive */
@media (max-width: 1199.98px) {
  .fishing-divider-yachts {
    margin-top: -150px;
    margin-bottom: -120px;
  }

  .fishing-yachts-divider-icon {
    max-width: 150px;
    margin-bottom: 28px;
  }

  .fishing-yachts-divider-title-our {
    max-width: 240px;
  }

  .fishing-yachts-divider-title-fishing,
  .fishing-yachts-divider-title-yachts {
    max-width: 480px;
  }

  .fishing-yachts-grid-content {
    padding-top: 180px;
    padding-bottom: 140px;
  }

  .fishing-yachts-grid {
    max-width: 820px;
    gap: 32px;
  }

  .fishing-yacht-circle {
    width: 190px;
    height: 190px;
  }

  .fishing-yacht-circle-label {
    font-size: var(--text-h3);
  }

  .fishing-yacht-circle-label strong {
    font-size: var(--text-h3);
  }

  .fishing-waves {
    width: 320px;
  }
}

@media (max-width: 991.98px) {
  .fishing-divider-yachts {
    margin-top: -120px;
    margin-bottom: -90px;
  }

  .fishing-yachts-divider-icon {
    max-width: 120px;
    margin-bottom: 20px;
  }

  .fishing-yachts-divider-title-our {
    max-width: 180px;
  }

  .fishing-yachts-divider-title-fishing,
  .fishing-yachts-divider-title-yachts {
    max-width: 360px;
    margin-top: 18px;
  }

  .fishing-yachts-divider-title-yachts {
    margin-bottom: 24px;
  }

  .fishing-yachts-grid-content {
    padding-top: 150px;
    padding-bottom: 120px;
  }

  .fishing-yachts-grid {
    max-width: 680px;
    gap: 28px;
  }

  .fishing-yacht-circle {
    width: 165px;
    height: 165px;
  }

  .fishing-yacht-circle-label {
    font-size: var(--text-body);
  }

  .fishing-yacht-circle-label strong {
    font-size: var(--text-h3);
  }

  .fishing-waves {
    width: 240px;
  }
}

@media (max-width: 767.98px) {
  .fishing-divider-yachts {
    margin-top: -90px;
    margin-bottom: -70px;
  }

  .fishing-divider-title-yachts {
    padding: 16px;
  }

  .fishing-yachts-divider-icon {
    max-width: 90px;
    margin-bottom: 14px;
  }

  .fishing-yachts-divider-title-our {
    max-width: 130px;
  }

  .fishing-yachts-divider-title-fishing,
  .fishing-yachts-divider-title-yachts {
    max-width: 280px;
    margin-top: 12px;
  }

  .fishing-yachts-divider-title-yachts {
    margin-bottom: 18px;
  }

  .fishing-yachts-grid-content {
    padding-top: 120px;
    padding-bottom: 100px;
  }

  .fishing-yachts-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
    gap: 20px;
  }

  .fishing-yacht-circle {
    width: 150px;
    height: 150px;
  }

  .fishing-yacht-circle-label {
    font-size: var(--text-body);
  }

  .fishing-yacht-circle-label strong {
    font-size: var(--text-h3);
  }

  .fishing-waves {
    width: 170px;
  }
}

@media (max-width: 575.98px) {
  .fishing-divider-yachts {
    margin-top: -65px;
    margin-bottom: -50px;
  }

  .fishing-divider-title-yachts {
    padding: 12px;
  }

  .fishing-yachts-divider-icon {
    max-width: 64px;
    margin-bottom: 10px;
  }

  .fishing-yachts-divider-title-our {
    max-width: 95px;
  }

  .fishing-yachts-divider-title-fishing,
  .fishing-yachts-divider-title-yachts {
    max-width: 210px;
    margin-top: 10px;
  }

  .fishing-yachts-divider-title-yachts {
    margin-bottom: 14px;
  }

  .fishing-yachts-grid-content {
    padding-top: 90px;
    padding-bottom: 80px;
  }

  .fishing-yachts-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .fishing-yacht-circle {
    width: 170px;
    height: 170px;
  }

  .fishing-yacht-circle-label {
    font-size: var(--text-body);
  }

  .fishing-yacht-circle-label strong {
    font-size: var(--text-h3);
  }

  .fishing-yacht-circle-last {
    grid-column: auto;
  }

  .fishing-waves {
    width: 120px;
  }
}




/* fishing yacht detail pages */
.fishing-yacht-detail-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.fishing-yacht-detail-main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* keep top hero and divider as existing shared styles */

/* cabo 35 hero/detail section */
.fishing-yacht-detail-hero {
  position: relative;
  background-color: var(--color-white);
}

.fishing-yacht-detail-hero-inner {
  width: 100%;
}

.fishing-yacht-detail-title {
  width: 100%;
  height: auto;
  display: block;
}

.fishing-yacht-detail-hero-image {
  width: 100%;
  height: auto;
  display: block;
  margin-top: -1px;
}

/* details section */
.fishing-yacht-detail-info {
  background-color: var(--color-primary);
}

.fishing-yacht-detail-info-content {
  text-align: center;
  padding-top: 60px;
  padding-bottom: 70px;
}

.fishing-yacht-detail-pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 920px;
  margin: 0 auto 24px;
}

.fishing-yacht-detail-price-card {
  text-align: center;
}

.fishing-yacht-detail-price-label {
  margin: 0 0 8px;
  color: var(--color-white);
  font-size: var(--text-h4);
  font-weight: 700;
  line-height: 1.2;
}

.fishing-yacht-detail-price-label span {
  color: var(--color-accent);
}

.fishing-yacht-detail-price-value {
  margin: 0;
  color: var(--color-white);
  font-size: var(--text-h3);
  font-weight: 700;
  line-height: 1.1;
}

.fishing-yacht-detail-pricing-note {
  margin: 0 auto 34px;
  max-width: 980px;
  color: var(--color-white);
  font-size: var(--text-body);
  font-weight: 700;
  line-height: 1.35;
}

.fishing-yacht-detail-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 40px;
  max-width: 920px;
  margin: 0 auto 24px;
}

.fishing-yacht-detail-info-center {
  text-align: center;
  margin: 0 auto;
}

.fishing-yacht-detail-info-center h3 {
  margin: 0 0 8px;
  color: var(--color-white);
  font-size: var(--text-h4);
  font-weight: 700;
  line-height: 1.2;
}

.fishing-yacht-detail-info-center p {
  margin: 0;
  color: var(--color-white);
  font-size: var(--text-h3);
  font-weight: 700;
  line-height: 1.3;
}

.fishing-yacht-detail-info-center p span {
  color: var(--color-accent);
}

.fishing-yacht-detail-info-item h3 {
  margin: 0 0 8px;
  color: var(--color-white);
  font-size: var(--text-h4);
  font-weight: 700;
  line-height: 1.2;
}

.fishing-yacht-detail-info-item p {
  margin: 0;
  color: var(--color-white);
  font-size: var(--text-h3);
  font-weight: 700;
  line-height: 1.3;
}

.fishing-yacht-detail-info-item p span {
  color: var(--color-accent);
}

/* photos section */
.fishing-yacht-detail-photos {
  background-color: var(--color-white);
}

.fishing-yacht-detail-photos-image {
  width: 100%;
  height: auto;
  display: block;
}

/* book section */
.fishing-yacht-detail-book {
  position: relative;
  background-color: var(--color-white);
}

.fishing-yacht-detail-book-content {
  text-align: center;
  padding-top: 60px;
  padding-bottom: 80px;
}

.fishing-yacht-detail-book-title {
  margin: 0 0 28px;
  color: var(--color-accent);
  font-size: var(--text-h3);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.fishing-yacht-detail-book-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
}

.fishing-yacht-detail-book-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.fishing-yacht-detail-book-icon {
  width: 100px;
  height: auto;
  display: block;
}

/* responsive */
@media (max-width: 1199.98px) {
  .fishing-yacht-detail-info-content {
    padding-top: 50px;
    padding-bottom: 56px;
  }

  .fishing-yacht-detail-price-label,
  .fishing-yacht-detail-price-value {
    font-size: var(--text-h3);
  }

  .fishing-yacht-detail-info-item h3 {
    font-size: var(--text-h3);
  }

  .fishing-yacht-detail-info-item p {
    font-size: var(--text-body);
  }

  .fishing-yacht-detail-book-title {
    font-size: var(--text-h2);
  }

  .fishing-yacht-detail-book-icon {
    width: 120px;
  }
}

@media (max-width: 991.98px) {

  .fishing-yacht-detail-pricing-grid,
  .fishing-yacht-detail-info-grid {
    max-width: 100%;
  }

  .fishing-yacht-detail-info-center h3 {
    font-size: var(--text-body);
  }

  .fishing-yacht-detail-info-center p {
    font-size: var(--text-body);
  }

  .fishing-yacht-detail-pricing-grid {
    gap: 24px;
  }

  .fishing-yacht-detail-price-label,
  .fishing-yacht-detail-price-value {
    font-size: var(--text-body);
  }

  .fishing-yacht-detail-pricing-note {
    font-size: var(--text-body);
  }

  .fishing-yacht-detail-info-item h3 {
    font-size: var(--text-body);
  }

  .fishing-yacht-detail-info-item p {
    font-size: var(--text-body);
  }

  .fishing-yacht-detail-book-content {
    padding-top: 44px;
    padding-bottom: 56px;
  }

  .fishing-yacht-detail-book-title {
    font-size: var(--text-h2);
  }

  .fishing-yacht-detail-book-icon {
    width: 96px;
  }
}

@media (max-width: 767.98px) {
  .fishing-yacht-detail-info-content {
    padding-top: 34px;
    padding-bottom: 40px;
  }

  .fishing-yacht-detail-pricing-grid,
  .fishing-yacht-detail-info-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .fishing-yacht-detail-info-center h3 {
    font-size: var(--text-body);
  }

  .fishing-yacht-detail-info-center p {
    font-size: var(--text-body);
  }

  .fishing-yacht-detail-price-label,
  .fishing-yacht-detail-price-value {
    font-size: var(--text-body);
  }

  .fishing-yacht-detail-pricing-note {
    font-size: var(--text-caps);
    margin-bottom: 22px;
  }

  .fishing-yacht-detail-info-item h3 {
    font-size: var(--text-body);
  }

  .fishing-yacht-detail-info-item p {
    font-size: var(--text-body);
  }

  .fishing-yacht-detail-book-content {
    padding-top: 34px;
    padding-bottom: 42px;
  }

  .fishing-yacht-detail-book-title {
    font-size: var(--text-h3);
    margin-bottom: 20px;
  }

  .fishing-yacht-detail-book-icons {
    gap: 18px;
  }

  .fishing-yacht-detail-book-icon {
    width: 72px;
  }
}

@media (max-width: 575.98px) {
  .fishing-yacht-detail-info-content {
    padding-top: 28px;
    padding-bottom: 34px;
  }

  .fishing-yacht-detail-info-center h3 {
    font-size: var(--text-body);
  }

  .fishing-yacht-detail-info-center p {
    font-size: var(--text-caps);
  }

  .fishing-yacht-detail-price-label,
  .fishing-yacht-detail-price-value {
    font-size: var(--text-body);
  }

  .fishing-yacht-detail-pricing-note {
    font-size: var(--text-caps);
  }

  .fishing-yacht-detail-info-item h3 {
    font-size: var(--text-body);
  }

  .fishing-yacht-detail-info-item p {
    font-size: var(--text-caps);
  }

  .fishing-yacht-detail-book-title {
    font-size: var(--text-h3);
  }

  .fishing-yacht-detail-book-icon {
    width: 58px;
  }
}

/*email*/
.book-form-status {
  width: 100%;
  max-width: 420px;
  margin-bottom: 20px;
  text-align: center;
}

.book-form-status-success,
.book-form-status-error {
  margin: 0;
  font-size: var(--text-body);
  font-weight: 700;
  line-height: 1.4;
}

.book-form-status-success {
  color: var(--color-success);
}

.book-form-status-error {
  color: var(--color-error);
}


/* legal modal */
.encanto-modal-dialog {
  max-width: 820px;
}

.encanto-legal-modal-content {
  background-color: #f4f4f4;
  border: 6px solid var(--color-accent);
  border-radius: 34px;
  overflow: hidden;
  box-shadow: none;
}

.encanto-legal-modal-header {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 42px 70px 10px;
  border-bottom: 0;
  background-color: transparent;
}

.encanto-legal-modal-title {
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 10px;
  text-transform: uppercase;
  line-height: 0.95;
}

.encanto-legal-title-dark {
  color: var(--color-primary);
  font-size: var(--text-h2);
  font-weight: 700;
}

.encanto-legal-title-outline {
  color: transparent;
  -webkit-text-stroke: 2px var(--color-primary);
  font-size: var(--text-h2);
  font-weight: 700;
}

.encanto-legal-title-accent {
  color: var(--color-accent);
  font-size: var(--text-h2);
  font-weight: 700;
}

.encanto-legal-modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.encanto-legal-modal-close span {
  position: absolute;
  top: 16px;
  left: 2px;
  width: 30px;
  height: 2px;
  background-color: var(--color-accent);
}

.encanto-legal-modal-close span:first-child {
  transform: rotate(45deg);
}

.encanto-legal-modal-close span:last-child {
  transform: rotate(-45deg);
}

.encanto-legal-modal-body {
  padding: 8px 80px 56px;
  text-align: center;
  color: var(--color-primary);
}

.encanto-legal-modal-body p {
  margin: 0 0 24px;
  font-size: var(--text-body);
  font-weight: 700;
  line-height: 1.35;
}

.encanto-legal-policy-title {
  margin-top: 34px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.encanto-legal-policy-title span {
  color: var(--color-accent);
}

.encanto-legal-link-line {
  margin-top: 42px;
}

.encanto-legal-link-line a {
  color: var(--color-accent);
  text-decoration: none;
}

.encanto-legal-link-line a:hover,
.encanto-legal-link-line a:focus {
  text-decoration: underline;
}

.encanto-legal-signoff {
  margin-top: 58px !important;
  margin-bottom: 0 !important;
  text-transform: uppercase;
}

.encanto-legal-signoff span {
  color: var(--color-accent);
}

.encanto-modal .modal-content {
  box-shadow: none;
}

.encanto-modal .modal-backdrop,
.modal-backdrop.show {
  opacity: 0.7;
}

@media (max-width: 991.98px) {
  .encanto-modal-dialog {
    max-width: 92vw;
  }

  .encanto-legal-modal-header {
    padding: 34px 54px 8px;
  }

  .encanto-legal-title-dark,
  .encanto-legal-title-accent {
    font-size: var(--text-h2);
  }

  .encanto-legal-title-outline {
    font-size: var(--text-h2);
  }

  .encanto-legal-modal-body {
    padding: 8px 50px 42px;
  }

  .encanto-legal-modal-body p {
    font-size: var(--text-body);
    margin-bottom: 20px;
  }
}

@media (max-width: 767.98px) {
  .encanto-legal-modal-content {
    border-width: 5px;
    border-radius: 26px;
  }

  .encanto-legal-modal-header {
    padding: 26px 42px 6px;
  }

  .encanto-legal-modal-title {
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 10px;
  }

  .encanto-legal-title-dark,
  .encanto-legal-title-accent {
    font-size: var(--text-h3);
  }

  .encanto-legal-title-outline {
    font-size: var(--text-h3);
    -webkit-text-stroke: 1.5px var(--color-primary);
  }

  .encanto-legal-modal-close {
    top: 18px;
    right: 18px;
    width: 28px;
    height: 28px;
  }

  .encanto-legal-modal-close span {
    top: 13px;
    width: 24px;
  }

  .encanto-legal-modal-body {
    padding: 8px 24px 34px;
  }

  .encanto-legal-modal-body p {
    font-size: var(--text-body);
    line-height: 1.4;
    margin-bottom: 18px;
  }

  .encanto-legal-policy-title {
    margin-top: 28px;
  }

  .encanto-legal-link-line {
    margin-top: 30px;
  }

  .encanto-legal-signoff {
    margin-top: 40px !important;
  }
}


.yachts-fishing-btn {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 320px;
  min-height: 64px;
  margin-top: 30px;
  padding: 16px 40px;
  background-color: var(--color-accent);
  border: 2px solid var(--color-accent);
  border-radius: 999px;
  color: var(--color-white);
  font-size: var(--text-body);
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.yachts-fishing-btn:hover,
.yachts-fishing-btn:focus {
  background-color: var(--color-white);
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-2px);
}

@media (max-width: 767.98px) {
  .yachts-fishing-btn {
    min-width: 260px;
    min-height: 56px;
    margin-top: 20px;
    padding: 14px 30px;
  }
}

@media (max-width: 575.98px) {
  .yachts-fishing-btn {
    width: 100%;
    min-width: 0;
    max-width: 280px;
    min-height: 50px;
    margin-top: 16px;
    padding: 12px 24px;
  }
}


.fishing-yachts-cruising-btn {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 320px;
  min-height: 64px;
  margin-top: 30px;
  padding: 16px 40px;
  background-color: var(--color-accent);
  border: 2px solid var(--color-accent);
  border-radius: 999px;
  color: var(--color-white);
  font-size: var(--text-body);
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.fishing-yachts-cruising-btn:hover,
.fishing-yachts-cruising-btn:focus {
  background-color: var(--color-white);
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-2px);
}

@media (max-width: 767.98px) {
  .fishing-yachts-cruising-btn {
    min-width: 260px;
    min-height: 56px;
    margin-top: 20px;
    padding: 14px 30px;
  }
}

@media (max-width: 575.98px) {
  .fishing-yachts-cruising-btn {
    width: 100%;
    min-width: 0;
    max-width: 280px;
    min-height: 50px;
    margin-top: 16px;
    padding: 12px 24px;
  }
}

.encanto-legal-pdf-body {
  padding: 0;
  height: 70vh;
  overflow: hidden;
}

.encanto-legal-pdf {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background-color: var(--color-white);
}

@media (max-width: 767.98px) {
  .encanto-legal-pdf-body {
    height: 75vh;
  }

  .encanto-modal-dialog {
    margin: 12px;
  }
}

/* =========================================================
   ARTICLES / GUIDE
========================================================= */

.articles-page {
  background-color: #f5f0e8;
}

.articles-hero {
  padding: 48px 0 28px;
}

.articles-intro {
  margin: 0;
  color: var(--color-primary);
  font-family: "sweet-sans-pro", sans-serif;
  font-size: 21px;
  font-weight: 400;
  line-height: 1.35;
  text-align: center;
}


/* =========================================================
   GRID
========================================================= */

.articles-grid-section {
  padding: 0 0 70px;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}


/* =========================================================
   ARTICLE CARD
========================================================= */

.article-card {
  position: relative;
  display: block;
  min-height: 315px;
  overflow: hidden;
  border-radius: 12px;
  text-decoration: none;
  isolation: isolate;
}

.article-card-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.article-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;

  background:
    linear-gradient(to bottom,
      rgba(20, 32, 40, 0.02) 20%,
      rgba(20, 32, 40, 0.12) 48%,
      rgba(20, 32, 40, 0.88) 100%);
}

.article-number {
  position: absolute;
  top: 21px;
  left: 50%;
  z-index: 3;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 42px;
  height: 42px;

  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;

  background-color: var(--color-primary);
  color: var(--color-white);

  font-family: "sweet-sans-pro", sans-serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 1;

  transform: translateX(-50%);
}

.article-card-title {
  position: absolute;
  right: 20px;
  bottom: 28px;
  left: 20px;
  z-index: 3;

  margin: 0;

  color: var(--color-white);

  font-family: "sweet-sans-pro", sans-serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.12;
  text-align: center;
}


/* =========================================================
   HOVER
========================================================= */

.article-card:hover .article-card-image {
  transform: scale(1.045);
}


/* =========================================================
   WIDE CARD
========================================================= */

.article-card-wide {
  grid-column: 1 / -1;
  min-height: 240px;
}

.article-card-wide .article-card-overlay {
  background:
    linear-gradient(to right,
      rgba(20, 32, 40, 0.12),
      rgba(20, 32, 40, 0.05),
      rgba(20, 32, 40, 0.2));
}

.article-wide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;

  width: 100%;
  padding: 40px 20px 20px;

  transform: translate(-50%, -35%);
  text-align: center;
}

.article-card-wide .article-card-title {
  position: static;

  font-size: 30px;
}

.article-card-subtitle {
  margin: 8px 0 0;

  color: var(--color-white);

  font-family: "sweet-sans-pro", sans-serif;
  font-size: 21px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.2;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

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

  .article-card {
    min-height: 300px;
  }

  .article-card-wide {
    grid-column: 1 / -1;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

  .articles-hero {
    padding: 36px 0 24px;
  }

  .articles-intro {
    padding: 0 20px;

    font-size: 18px;
  }

  .articles-intro br {
    display: none;
  }

  .articles-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .article-card {
    min-height: 300px;
    border-radius: 10px;
  }

  .article-card-title {
    right: 16px;
    bottom: 24px;
    left: 16px;

    font-size: 24px;
  }

  .article-number {
    width: 40px;
    height: 40px;

    font-size: 18px;
  }

  .article-card-wide {
    min-height: 270px;
  }

  .article-card-wide .article-card-title {
    font-size: 27px;
  }

  .article-card-subtitle {
    font-size: 18px;
  }

}

/* =========================================================
   ARTICLES
========================================================= */
.encanto-guide {
  --ea-ink: var(--color-primary, #142028);
  --ea-accent: var(--color-accent, #ed7544);
  font-family: "sweet-sans-pro", sans-serif;
  color: var(--ea-ink);
  background: #fff;
  margin: 0;
}

.encanto-guide .ea-content,
.encanto-guide .ea-guide {
  width: min(100% - 48px, 1010px);
  margin-inline: auto;
  padding-inline: 0;
}

.encanto-guide .ea-hero {
  width: 100%;
  height: clamp(240px, 39vw, 600px);
  background: var(--ea-ink);
  overflow: hidden;
}

.encanto-guide .ea-hero img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.encanto-guide .ea-content {
  padding-block: 56px 110px;
}

.encanto-guide .ea-back {
  display: inline-block;
  color: var(--ea-accent);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  line-height: 1.6;
}

.encanto-guide .ea-back:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.encanto-guide .ea-heading {
  margin-top: 48px;
}

.encanto-guide .ea-heading h1,
.encanto-guide .ea-guide>h1 {
  font-size: clamp(2rem, 4.7vw, 4.5rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.12;
  letter-spacing: .035em;
  margin: 0;
  overflow-wrap: break-word;
}

.encanto-guide .ea-kicker {
  font-size: clamp(1rem, 2.1vw, 1.5rem);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin: 20px 0 0;
}

.encanto-guide .ea-divider {
  width: 76px;
  height: 3px;
  background: var(--ea-accent);
  margin: 40px 0;
}

.encanto-guide .ea-body {
  max-width: 920px;
  font-size: clamp(1rem, 1.85vw, 1.5rem);
  line-height: 1.65;
  font-weight: 400;
}

.encanto-guide .ea-body p {
  margin: 0 0 1.35em;
}

.encanto-guide .ea-body ul {
  padding-left: 1.45em;
  margin: 0 0 1.6em;
}

.encanto-guide .ea-body li {
  padding-left: .1em;
  margin-bottom: .35em;
}

.encanto-guide .ea-guide {
  padding-block: 140px 100px;
}

.encanto-guide .ea-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.encanto-guide .ea-card {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 330px;
  padding: 28px;
  overflow: hidden;
  background: var(--ea-ink);
  color: #fff;
  text-decoration: none;
}

.encanto-guide .ea-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.encanto-guide .ea-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, .7));
  z-index: -1;
}

.encanto-guide .ea-number {
  font-size: 2.5rem;
  line-height: 1;
  color: var(--ea-accent);
  font-weight: 700;
}

.encanto-guide .ea-card h2 {
  font-size: 1.3rem;
  line-height: 1.4;
  text-transform: uppercase;
  margin: 60px 0 0;
  font-weight: 600;
}

.encanto-guide .ea-card:hover h2 {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.encanto-guide .ea-back:focus-visible,
.encanto-guide .ea-card:focus-visible,
.encanto-guide .back-to-top-link:focus-visible {
  outline: 3px solid var(--ea-accent);
  outline-offset: 5px;
}

/* Keep the original icon markup/classes and existing main.js behavior. */
.encanto-guide .back-to-top {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 50;
}

@media (max-width: 991.98px) {
  .encanto-guide .ea-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {

  .encanto-guide .ea-content,
  .encanto-guide .ea-guide {
    width: calc(100% - 40px);
  }

  .encanto-guide .ea-content {
    padding-top: 32px;
  }

  .encanto-guide .ea-heading {
    margin-top: 32px;
  }

  .encanto-guide .ea-divider {
    margin-block: 28px;
  }

  .encanto-guide .ea-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .encanto-guide .ea-card {
    min-height: 280px;
  }

  .encanto-guide .ea-guide {
    padding-top: 110px;
  }

  .encanto-guide .back-to-top {
    right: 16px;
    bottom: 16px;
  }
}