:root {
  --font-heading: "Cormorant Garamond", serif;
  --font-body: "Inter", sans-serif;

  /* Mirador brand */

  --brand-orange: #ee5535;
  --brand-yellow: #f9d22c;
  --brand-dark-green: #013a4b;
  --brand-light-green: #308a93;

  /* Neutrals */

  --white: #ffffff;
  --off-white: #f2e8d8;
  --text-dark: #1d1d1d;
  --text-light: #ffffff;

  /* Functional */

  --cta-buttons: #ee5535;

  /* UI */

  --border-radius: 18px;
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body),
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.6;
  color: #ffffff;
  background: #f6ede1;
}

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

a {
  color: inherit;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  background-image:
    url("../images/chairs-overlook-bay.jpeg");
  background-size: cover;
  background-position: center;
}

.site-header {
  height: 70px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 43px 25px 22px 1px;
  /* background: linear-gradient(180deg,rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 40%, rgba(255, 255, 255, 0) 100%); */
  /* background: rgba(8, 20, 12, 0.72);
  backdrop-filter: blur(8px); */
}

.site-logo img {
    width: 180px;
    height: auto;
    margin-top: 40px;
    margin-left: 11px;
}

.header-button {
  padding: 10px 18px;
  font-size: 0.95rem;
  background-color: var(--cta-buttons);
}

.header-button:hover {
    opacity: 0.92;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
linear-gradient(
      to bottom,
      rgba(1, 58, 75, 1) 0%,
      rgba(1, 58, 75, 0.7) 12%,
      rgba(1, 58, 75, 0.3) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.eyebrow {
  margin-bottom: 18px;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.9;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
}

.hero h1 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 86%;
  letter-spacing: -.03em;
}

h1 {
  margin: 0 0 20px;
  line-height: 1.05;
  font-weight: 700;
  font-size: clamp(3.5rem, 8vw, 7rem);
}

.hero h1 {
}

.hero p {
  margin: 0 auto 32px;
  max-width: 640px;
  font-size: 1.15rem;
  opacity: 0.95;
}

.section-heading h2,
.experience-copy h2 {
  font-family: var(--font-heading);
  font-weight: 600;
}

.highlight-content h3 {
  font-family: var(--font-heading);
  font-weight: 600;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  border-radius: 999px;
  background-color: var(--cta-buttons);
  color: #111111;
  font-weight: 600;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.button-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.site-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-language-toggle {
  position: static;
  display: flex;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.header-language-toggle button {
  border: 0;
  padding: 9px 12px;
  color: #ffffff;
  background: transparent;
  font: inherit;
  font-size: 0.85rem;
  cursor: pointer;
}

.header-language-toggle button:hover {
  background: rgba(255, 255, 255, 0.16);
}

.site-header .button-icon {
  width: 26px;
  height: 26px;
}

.button:hover {
  transform: translateY(-2px);
  opacity: 0.92;
  background: var(--cta-buttons);
}

.whatsapp-button {
  border: 1px solid #1c1e21;
  cursor: pointer;
  font: inherit;
  background-color: var(--cta-buttons);
  color: #1c1e21;
}

.section {
  padding: 90px 20px;
  background: #ffffff;
  color: #111111;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.photo-slider-section .container {
  max-width: 1370px;
  padding-left: 24px;
  padding-right: 24px;
}

.section h2 {
  margin-top: 0;
  margin-bottom: 0;
  text-align: center;
  font-size: clamp(2rem, 5vw, 3rem);
}

.intro {
  max-width: 760px;
  margin: 0 auto 50px;
  text-align: center;
  font-size: 1.1rem;
  color: #444444;
}

.cards {
  display: grid;
  grid-template-columns:
    repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.card {
  padding: 32px;
  border-radius: 24px;
  background: #f5f7fa;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.card p {
  margin: 0;
  color: #555555;
}

.cta {
  background: #0f1720;
  color: #ffffff;
  text-align: center;
}

.cta p {
  max-width: 640px;
  margin:
    0 auto
    32px;
}

footer {
  padding: 24px 20px;
  text-align: center;
  font-size: 0.95rem;
  background: #081018;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 640px) {
  .hero {
    min-height: 100vh;
    padding:
      120px 20px
      80px;
  }

  .hero p {
    font-size: 1rem;
  }

  .section {
    padding: 70px 20px;
  }

  .header-button {
    padding: 9px 14px;
    font-size: 0.85rem;
  }
}

/* Begin Slider */

.photo-slider-section {
  position: relative;
  padding: 24px 0;
  background: var(--brand-dark-green);
}
.photo-slider-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/mirador-topographic-pattern.svg");
  opacity: 0.5;
  pointer-events: none;
}
.photo-slider-section .container {
  position: relative;
  z-index: 1;
}
.photo-slider {
  width: 100%;
  overflow: hidden;
  padding-bottom: 44px;
}
.photo-slider .swiper-slide {
  height: 260px;
  border-radius: 18px;
  overflow: hidden;
}
.photo-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-slider .swiper-pagination-bullet {
  background: #ffffff;
  opacity: 0.45;
}
.photo-slider .swiper-pagination-bullet-active {
  opacity: 1;
}
@media (max-width: 700px) {
  .photo-slider .swiper-slide {
    height: 230px;
  }
}

/* End Slider */

/* Begin cards */

.experience-highlights {
  padding: 1rem 0 3rem;
  color: var(--text-dark);
}

.experience-highlights h2 {
  margin-top: 2rem;
  margin-bottom: 2rem;
  text-align: center;
  font-size: clamp(2rem, 5vw, 3rem);
}

.highlight-grid {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.highlight-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: #fff9ef;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 18px;
}

.highlight-image {
  width: 45%;
  align-self: stretch;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
  /* object-position: -140px; */
}

.highlight-content {
  flex: 1;
}

.highlight-icon {
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: start;
  margin: 0;
  color: var(--brand-orange);
  text-align: center;
}

.highlight-icon svg {
  width: 45px;
  height: 45px;
  stroke: var(--brand-orange);
  stroke-width: 1.25px;
  fill: none;
}

.highlight-content h3 {
  margin: 0 0 .5rem;
  font-size: 1.5rem;
  line-height: 1;
  text-align: center;
}

.highlight-content p {
  margin: 0;
  font-size: .95rem;
  line-height: 1.5;
  text-align: center;
}

@media (max-width: 900px) {
  .highlight-grid {
    grid-template-columns: 1fr;
  }
}

/* End cards */

/* How to Get Here */

.directions-section {
  background: #f7f3ea;
  padding: 3rem 1rem
}

.directions-heading {
  max-width: 760px;
  margin: 0 auto 3rem;
  text-align: center;
}

.directions-heading p {
  max-width: 680px;
  margin: 0 auto 0;
  line-height: 1.65;
}

.directions-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

.directions-content,
.directions-map {
  min-width: 0;
}

.route-heading {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.route-heading h3 {
  margin: 0.2rem 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  line-height: 1.08;
}

.route-label {
  display: block;
  color: #315c37;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.route-icon {
  display: grid;
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  place-items: center;
  color: #fff;
  background: #315c37;
  border-radius: 50%;
}

.route-icon svg {
  width: 28px;
  height: 28px;
}

.direction-steps {
  display: grid;
  gap: 1.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.direction-steps li {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.step-number {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: #fff;
  background: #315c37;
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 700;
}

.step-content h4 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  line-height: 1.3;
}

.step-content p {
  margin: 0;
  line-height: 1.65;
}

.directions-map {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  min-width: 0;
}

.directions-map-image {
  display: block;
  width: 100%;
  height: auto;
}

.alternate-route-desktop {
  width: 100%;
  margin-top: 2rem;
  padding-top: 1.75rem;
  text-align: left;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.alternate-route-desktop p {font-style: italic; font-size: .9rem; line-height: 1.65;}
.alternate-route-mobile {display: none;}

.directions-bottom {
  max-width: 900px;
  margin: 4rem auto 0;
  padding-top: 3rem;
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.directions-note {
  padding: 1.5rem 1.75rem;
  background: rgba(49, 92, 55, 0.08);
  border-radius: 10px;
}

.directions-note h3,
.alternate-route h3 {
  margin: 0 0 0.65rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  line-height: 1.15;
}

.directions-note p, .alternate-route p {
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.65;
    font-style: italic;
    font-size: .9rem;
}

.directions-button {
  margin-top: 2.25rem;
}

/* Tablet */

@media (max-width: 900px) {
  .alternate-route-desktop, .directions-bottom {
  display: none;
}
.alternate-route-mobile {display: block;font-style: italic; font-size: .9rem; line-height: 1.65;}

  .directions-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .directions-map {
    order: 1;
  }

  .directions-content {
    order: 2;
  }

  .directions-map-image {
    max-width: 47.5rem;
    margin: 0 auto;
  }

  .directions-bottom {
    margin-top: 3rem;
  }
}

/* Mobile */

@media (max-width: 600px) {
  .directions-heading {
    margin-bottom: 2rem;
  }

  .directions-layout {
    gap: 2.5rem;
  }

  .route-heading {
    align-items: flex-start;
  }

  .route-icon {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .route-icon svg {
    width: 25px;
    height: 25px;
  }

  .direction-steps li {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 0.8rem;
  }

  .step-number {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
  }

  .directions-bottom {
    margin-top: 2.75rem;
    padding-top: 2.25rem;
  }

  .directions-note {
    padding: 1.25rem;
  }

  .alternate-route {
    margin-top: 2rem;
  }
}