/* ============================================
   AVON RETREAT — Design System & Styles
   Matching villa-sofia.framer.website layout
   ============================================ */

/* --- Google Fonts are loaded in HTML --- */

/* --- CSS Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg-primary: #fdfbf7;
  --bg-accent: #e7e6e4;
  --text-dark: #262626;
  --text-light: #ffffff;
  --text-muted: #6b6b6b;
  --overlay-dark: rgba(38, 38, 38, 0.25);
  --border-light: rgba(38, 38, 38, 0.15);
  --font-heading: "EB Garamond", "Georgia", serif;
  --font-body: "DM Sans", "Helvetica Neue", sans-serif;
  --max-width: 1200px;
  --transition-smooth: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-primary);
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.7;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* --- Typography --- */
.label {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  color: var(--text-dark);
}

.label--light {
  color: var(--text-light);
}

.heading-xl {
  font-family: var(--font-heading);
  font-size: 100px;
  font-weight: 400;
  letter-spacing: -1.4px;
  line-height: 1.08;
  text-align: center;
  color: var(--text-dark);
}

.heading-lg {
  font-family: var(--font-heading);
  font-size: 70px;
  font-weight: 400;
  letter-spacing: -1.4px;
  line-height: 1;
  text-align: center;
  color: var(--text-light);
}

.heading-md {
  font-family: var(--font-heading);
  font-size: 60px;
  font-weight: 400;
  letter-spacing: -1px;
  line-height: 1.1;
  color: var(--text-dark);
}

.heading-sm {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 400;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.body-text {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-dark);
}

.body-text--light {
  color: var(--text-light);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--text-light);
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.08);
  transition: all 0.4s ease;
  cursor: pointer;
}

.btn:hover {
  background: rgba(255, 255, 255, 0.18);
  opacity: 1;
  transform: scale(1.03);
}

.btn--dark {
  color: var(--text-dark);
  border-color: rgba(38, 38, 38, 0.3);
  background: rgba(38, 38, 38, 0.03);
}

.btn--dark:hover {
  background: rgba(38, 38, 38, 0.08);
}

.btn--arrow::after {
  content: "→";
  font-size: 16px;
  transition: transform 0.3s ease;
}

.btn--arrow:hover::after {
  transform: translateX(4px);
}

/* --- Scroll Reveal Animation --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.9s var(--transition-smooth),
    transform 0.9s var(--transition-smooth);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}
.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  mix-blend-mode: difference;
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: padding 0.3s ease;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar__logo-img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
}

.navbar__logo-text {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 400;
  color: var(--text-light);
  white-space: nowrap;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.navbar__link {
  position: relative;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--text-light);
  letter-spacing: 0.01em;
  transition: opacity 0.3s ease;
}

.navbar__link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--text-light);
  transition: width 0.3s ease;
}

.navbar__link:hover {
  opacity: 1;
}

.navbar__link:hover::after {
  width: 100%;
}

.navbar__cta {
  padding: 8px 22px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-light);
  transition: all 0.3s ease;
}

.navbar__cta:hover {
  background: rgba(255, 255, 255, 0.1);
  opacity: 1;
}

/* Mobile nav toggle */
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 200;
}

.navbar__toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-light);
  transition: all 0.3s ease;
}

.navbar__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar__toggle.active span:nth-child(2) {
  opacity: 0;
}

.navbar__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay-dark);
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 600px;
  text-align: center;
}

.hero__label {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light);
}

.hero__heading {
  font-family: var(--font-heading);
  font-size: 70px;
  font-weight: 400;
  letter-spacing: -1.4px;
  line-height: 1;
  color: var(--text-light);
}

/* ============================================
   INTRO SECTION
   ============================================ */
.intro {
  padding: 200px 60px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  background-color: var(--bg-primary);
}

.intro__label {
  margin-bottom: 10px;
}

.intro__heading {
  max-width: 1000px;
  margin-bottom: 60px;
}

.intro__image-wrapper {
  width: 359px;
  aspect-ratio: 0.76;
  overflow: hidden;
}

.intro__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   DESCRIPTION + LANDSCAPE IMAGE
   ============================================ */
.description {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  gap: 80px;
  background-color: var(--bg-primary);
}

.description__text-row {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.description__text {
  width: 30%;
  min-width: 280px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
}

.description__image {
  width: 100%;
  aspect-ratio: 1.66;
  overflow: hidden;
}

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

/* ============================================
   TRANQUILITY SECTION
   ============================================ */
.tranquility {
  padding: 0 60px 80px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-color: var(--bg-primary);
}

.tranquility__image {
  width: 100%;
  aspect-ratio: 1.95;
  overflow: hidden;
}

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

.tranquility__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}

.tranquility__heading {
  font-family: var(--font-heading);
  font-size: 50px;
  font-weight: 400;
  letter-spacing: -1px;
  line-height: 1.1;
  flex: 1;
}

.tranquility__text {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.tranquility__text p {
  max-width: 450px;
  font-size: 16px;
  line-height: 1.6;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features {
  padding: 100px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  background-color: var(--bg-primary);
}

.features__header {
  text-align: center;
}

.features__header .label {
  margin-bottom: 10px;
}

.features__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 80px;
  width: 100%;
  max-width: 900px;
}

.features__item {
  padding: 20px 0;
  border-bottom: 1px solid var(--border-light);
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.3px;
  line-height: 1.4;
}

.features__footer {
  margin-top: 20px;
}

/* ============================================
   ELEGANCE SPLIT SECTION
   ============================================ */
.elegance {
  padding: 0 60px;
  display: flex;
  align-items: center;
  gap: 0;
  width: 100%;
  height: 600px;
  background-color: var(--bg-primary);
}

.elegance__image {
  flex: 1;
  height: 100%;
  overflow: hidden;
}

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

.elegance__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 40px 0 40px 60px;
}

.elegance__heading {
  font-family: var(--font-heading);
  font-size: 100px;
  font-weight: 400;
  letter-spacing: -2px;
  line-height: 1.05;
  color: var(--text-dark);
}

.elegance__text {
  max-width: 70%;
  font-size: 16px;
  line-height: 1.6;
}

/* ============================================
   PARALLAX / TIMELESS LUXURY SECTION
   ============================================ */
.parallax-section {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.parallax-section__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 120%;
  object-fit: cover;
  z-index: 1;
  top: -10%;
}

.parallax-section__overlay {
  position: absolute;
  inset: 0;
  background: rgba(38, 38, 38, 0.35);
  z-index: 2;
}

.parallax-section__content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 750px;
  text-align: center;
}

.parallax-section__label {
  font-family: var(--font-body);
  font-size: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light);
}

.parallax-section__heading {
  font-family: var(--font-heading);
  font-size: 100px;
  font-weight: 400;
  letter-spacing: -2px;
  line-height: 1.08;
  color: var(--text-light);
}

.parallax-section__text {
  max-width: 500px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-light);
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-section {
  padding: 100px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  background-color: var(--bg-primary);
  overflow: hidden;
}

.gallery-section__heading {
  max-width: 766px;
}

.gallery-section__image-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.gallery-section__image {
  width: 100%;
  aspect-ratio: 1.95;
  overflow: hidden;
}

.gallery-section__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

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

.gallery-section__caption {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}

.gallery-section__caption-text {
  flex: 1;
  font-size: 16px;
  line-height: 1.6;
}

.gallery-section__caption-link {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

/* ============================================
   DISCOVER / ACTIVITIES SECTION
   ============================================ */
.discover {
  padding: 60px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  background-color: var(--bg-primary);
  overflow: hidden;
}

.discover__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 0 60px;
  max-width: 760px;
  text-align: center;
  margin-bottom: 40px;
}

.discover__text {
  max-width: 500px;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  background-color: var(--bg-primary);
  overflow: hidden;
}

.testimonials__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  padding: 0 60px;
}

.testimonials__track-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.testimonials__track {
  display: flex;
  gap: 20px;
  padding: 0 60px;
  animation: scroll-testimonials 40s linear infinite;
}

.testimonials__track:hover {
  animation-play-state: paused;
}

@keyframes scroll-testimonials {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.testimonial-card {
  flex-shrink: 0;
  width: 500px;
  min-height: 280px;
  padding: 36px;
  border-radius: 12px;
  background: var(--bg-accent);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.testimonial-card__text {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-dark);
}

.testimonial-card__author {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  overflow: hidden;
}

.cta__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.cta__overlay {
  position: absolute;
  inset: 0;
  background: rgba(38, 38, 38, 0.3);
  z-index: 2;
}

.cta__content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.cta__label {
  font-family: var(--font-body);
  font-size: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light);
}

.cta__heading {
  font-family: var(--font-heading);
  font-size: 80px;
  font-weight: 400;
  letter-spacing: -1.5px;
  line-height: 1.05;
  color: var(--text-light);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background-color: var(--bg-accent);
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  width: 100%;
}

.footer__brand-name {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.footer__brand-tagline {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

.footer__col-title {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__link {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.footer__link:hover {
  color: var(--text-dark);
  opacity: 1;
}

.footer__bottom {
  display: flex;
  justify-content: center;
  padding-top: 30px;
  border-top: 1px solid var(--border-light);
}

.footer__credit {
  font-size: 13px;
  color: var(--text-muted);
}

/* ============================================
   RESPONSIVE — TABLET (≤ 1200px)
   ============================================ */
@media (max-width: 1200px) {
  .navbar {
    padding: 20px 40px;
  }

  .navbar__links {
    gap: 30px;
  }

  .heading-xl {
    font-size: 80px;
  }

  .hero__heading {
    font-size: 60px;
  }

  .intro {
    padding: 150px 40px 0;
  }

  .intro__heading {
    font-size: 80px;
  }

  .description {
    padding: 60px 40px;
  }

  .tranquility {
    padding: 0 40px 60px;
  }

  .features {
    padding: 80px 40px;
  }

  .elegance {
    padding: 0 40px;
    height: 500px;
  }

  .elegance__heading {
    font-size: 80px;
  }

  .parallax-section__heading {
    font-size: 80px;
  }

  .gallery-section {
    padding: 80px 40px;
  }

  .cta__heading {
    font-size: 60px;
  }

  .footer {
    padding: 60px 40px;
  }
}

/* ============================================
   RESPONSIVE — MOBILE (≤ 810px)
   ============================================ */
@media (max-width: 810px) {
  .navbar {
    padding: 16px 24px;
  }

  .navbar__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(38, 38, 38, 0.97);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: right 0.4s ease;
    z-index: 150;
  }

  .navbar__nav.open {
    right: 0;
  }

  .navbar__links {
    flex-direction: column;
    gap: 30px;
  }

  .navbar__link {
    font-size: 20px;
  }

  .navbar__cta {
    font-size: 18px;
    padding: 12px 30px;
  }

  .navbar__toggle {
    display: flex;
    z-index: 200;
  }

  /* Typography */
  .label {
    font-size: 12px;
  }

  .heading-xl {
    font-size: 50px;
  }

  .heading-lg {
    font-size: 43px;
  }

  .heading-md {
    font-size: 36px;
  }

  .heading-sm {
    font-size: 28px;
  }

  /* Hero */
  .hero__heading {
    font-size: 43px;
  }

  .hero__label {
    font-size: 12px;
  }

  /* Intro */
  .intro {
    padding: 120px 24px 0;
  }

  .intro__heading {
    font-size: 50px;
  }

  .intro__image-wrapper {
    width: 260px;
  }

  /* Description */
  .description {
    padding: 40px 24px;
    gap: 40px;
  }

  .description__text-row {
    justify-content: flex-start;
  }

  .description__text {
    width: 100%;
    min-width: unset;
  }

  /* Tranquility */
  .tranquility {
    padding: 0 24px 40px;
  }

  .tranquility__content {
    flex-direction: column;
    gap: 16px;
  }

  .tranquility__heading {
    font-size: 36px;
  }

  /* Features */
  .features {
    padding: 60px 24px;
    gap: 40px;
  }

  .features__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .features__item {
    font-size: 22px;
  }

  .features__header .heading-xl {
    font-size: 40px;
  }

  /* Elegance */
  .elegance {
    padding: 0 24px;
    flex-direction: column;
    height: auto;
    gap: 30px;
  }

  .elegance__image {
    width: 100%;
    height: 350px;
  }

  .elegance__content {
    padding: 0 0 40px;
    gap: 20px;
  }

  .elegance__heading {
    font-size: 50px;
  }

  .elegance__text {
    max-width: 100%;
  }

  /* Parallax */
  .parallax-section__heading {
    font-size: 50px;
  }

  .parallax-section__content {
    padding: 0 24px;
  }

  /* Gallery */
  .gallery-section {
    padding: 60px 24px;
    gap: 40px;
  }

  .gallery-section__heading {
    font-size: 50px;
  }

  .gallery-section__caption {
    flex-direction: column;
    gap: 16px;
  }

  .gallery-section__caption-link {
    justify-content: flex-start;
  }

  /* Discover */
  .discover__header {
    padding: 0 24px;
  }

  /* Testimonials */
  .testimonials__header {
    padding: 0 24px;
  }

  .testimonials__track {
    padding: 0 24px;
  }

  .testimonial-card {
    width: 320px;
    min-height: 240px;
    padding: 24px;
  }

  .testimonial-card__text {
    font-size: 17px;
  }

  /* CTA */
  .cta__heading {
    font-size: 43px;
    padding: 0 24px;
  }

  /* Footer */
  .footer {
    padding: 50px 24px;
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

/* Very small screens */
@media (max-width: 480px) {
  .footer__top {
    grid-template-columns: 1fr;
  }

  .elegance__heading {
    font-size: 40px;
  }

  .parallax-section__heading {
    font-size: 36px;
  }

  .cta__heading {
    font-size: 36px;
  }

  .testimonial-card {
    width: 280px;
  }
}

/* ============================================
   SUBPAGE STYLES
   Page Hero, Gallery, Info, Explore, Contact
   ============================================ */

/* --- Page Hero (shared by all subpages) --- */
.page-hero {
  padding: 200px 60px 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-primary);
}

.page-hero__content {
  text-align: center;
  max-width: 900px;
}

.page-hero__content .label {
  margin-bottom: 10px;
}

/* ============================================
   GALLERY PAGE
   ============================================ */
.gallery-page {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 0 60px 100px;
  background-color: var(--bg-primary);
}

.gallery-card {
  overflow: hidden;
}

.gallery-card--full {
  width: 100%;
}

.gallery-card--half {
  width: calc(50% - 12px);
}

.gallery-card__image {
  width: 100%;
  aspect-ratio: 1.5;
  overflow: hidden;
}

.gallery-card--full .gallery-card__image {
  aspect-ratio: 2;
}

.gallery-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

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

.gallery-card__info {
  padding: 16px 0 32px;
}

.gallery-card__title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}

.gallery-card__desc {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 90%;
}

/* ============================================
   INFO PAGE
   ============================================ */
.info-hero-image {
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.info-hero-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

/* Amenities */
.info-amenities {
  padding: 100px 60px;
  background-color: var(--bg-primary);
}

.info-amenities__header {
  margin-bottom: 60px;
}

.info-amenities__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 80px;
  max-width: 900px;
  margin: 0 auto;
}

.info-amenities__item {
  padding: 20px 0;
  border-bottom: 1px solid var(--border-light);
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.3px;
  line-height: 1.4;
}

/* FAQ */
.info-faq {
  padding: 60px 60px 100px;
  background-color: var(--bg-primary);
}

.info-faq__header {
  text-align: center;
  margin-bottom: 60px;
}

.info-faq__header .label {
  margin-bottom: 10px;
}

.info-faq__list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-light);
}

.faq-item__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.3px;
  color: var(--text-dark);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.3s ease;
}

.faq-item__question:hover {
  color: var(--text-muted);
}

.faq-item__icon {
  font-size: 24px;
  font-weight: 300;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 20px;
}

.faq-item.active .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-item__answer {
  max-height: 200px;
  padding-bottom: 24px;
}

.faq-item__answer p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ============================================
   EXPLORE PAGE
   ============================================ */
.explore-page {
  padding: 0 60px 100px;
  display: flex;
  flex-direction: column;
  gap: 120px;
  background-color: var(--bg-primary);
}

.explore-card {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

.explore-card--left {
  flex-direction: row;
}

.explore-card--right {
  flex-direction: row;
}

.explore-card__text {
  flex: 1;
  padding-top: 20px;
}

.explore-card__title {
  font-family: var(--font-heading);
  font-size: 50px;
  font-weight: 400;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.explore-card__desc {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 420px;
}

.explore-card__image {
  flex: 1;
  overflow: hidden;
}

.explore-card__image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.explore-card:hover .explore-card__image img {
  transform: scale(1.03);
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-hero-image {
  width: 100%;
  overflow: hidden;
}

.contact-hero-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.contact-info {
  display: flex;
  gap: 80px;
  padding: 80px 60px;
  background-color: var(--bg-primary);
}

.contact-info__left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-info__block h2 {
  margin-bottom: 12px;
}

.contact-info__link {
  display: block;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-dark);
  line-height: 1.8;
}

.contact-info__right {
  flex: 1;
  display: flex;
  align-items: flex-start;
}

.contact-info__right .body-text {
  max-width: 500px;
  line-height: 1.7;
}

.contact-map {
  padding: 0 60px 80px;
  background-color: var(--bg-primary);
}

.contact-map__header {
  margin-bottom: 40px;
}

.contact-map__header h2 {
  margin-bottom: 12px;
}

.contact-map__header .body-text {
  max-width: 600px;
  color: var(--text-muted);
}

.contact-map__embed {
  width: 100%;
  overflow: hidden;
}

.contact-map__embed iframe {
  width: 100%;
  height: 450px;
  border: 0;
}

/* ============================================
   SUBPAGE RESPONSIVE BREAKPOINTS
   ============================================ */
@media (max-width: 1200px) {
  .page-hero {
    padding: 160px 40px 80px;
  }

  .gallery-page {
    padding: 0 40px 80px;
  }

  .explore-page {
    padding: 0 40px 80px;
    gap: 80px;
  }

  .explore-card__title {
    font-size: 40px;
  }

  .contact-info {
    padding: 60px 40px;
  }

  .contact-map {
    padding: 0 40px 60px;
  }

  .info-amenities {
    padding: 80px 40px;
  }

  .info-faq {
    padding: 40px 40px 80px;
  }
}

@media (max-width: 810px) {
  .page-hero {
    padding: 140px 24px 60px;
  }

  .page-hero .heading-xl {
    font-size: 50px;
  }

  .gallery-page {
    padding: 0 24px 60px;
    gap: 16px;
  }

  .gallery-card--half {
    width: 100%;
  }

  .info-hero-image img {
    height: 300px;
  }

  .info-amenities {
    padding: 60px 24px;
  }

  .info-amenities__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .info-amenities__item {
    font-size: 20px;
  }

  .info-faq {
    padding: 40px 24px 60px;
  }

  .faq-item__question {
    font-size: 18px;
  }

  .explore-page {
    padding: 0 24px 60px;
    gap: 60px;
  }

  .explore-card {
    flex-direction: column !important;
    gap: 24px;
  }

  .explore-card__title {
    font-size: 32px;
  }

  .explore-card__image img {
    height: 300px;
  }

  .contact-hero-image img {
    height: 300px;
  }

  .contact-info {
    flex-direction: column;
    gap: 40px;
    padding: 60px 24px;
  }

  .contact-map {
    padding: 0 24px 60px;
  }

  .contact-map__embed iframe {
    height: 300px;
  }
}
