:root {
  --bg: #f8f2ee;
  --bg-soft: #f1e6e0;
  --cream: #fffaf7;
  --text: #292322;
  --muted: #766b67;
  --line: rgba(41, 35, 34, 0.14);
  --accent: #b98c7e;
  --accent-dark: #8e6458;
  --gold: #b99868;
  --dark: #25201f;
  --white: #ffffff;
  --shadow: 0 25px 70px rgba(44, 29, 25, 0.12);

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;

  --container: 1180px;
  --radius: 24px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  cursor: pointer;
}

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

.container {
  width: min(90%, var(--container));
  margin: auto;
}

/* LOADER */

.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: grid;
  place-items: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader-inner {
  text-align: center;
}

.loader-logo {
  font-family: var(--serif);
  font-size: 78px;
  line-height: 0.8;
  letter-spacing: -4px;
  color: var(--accent-dark);
  animation: loaderLogo 1.2s ease forwards;
}

.loader-name {
  margin-top: 20px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
}

.loader-line {
  width: 130px;
  height: 1px;
  background: var(--line);
  margin: 20px auto 0;
  overflow: hidden;
}

.loader-line span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--accent-dark);
  transform: translateX(-100%);
  animation: loaderLine 1.5s ease forwards;
}

@keyframes loaderLogo {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes loaderLine {
  to {
    transform: translateX(0);
  }
}

/* NAVBAR */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 82px;
  z-index: 1000;

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

  padding: 0 5%;

  color: white;
  transition: 0.35s ease;
}

.navbar.scrolled {
  height: 68px;
  color: var(--text);
  background: rgba(255, 250, 247, 0.86);
  backdrop-filter: blur(18px);
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1;
  letter-spacing: -2px;
}

.brand-text {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.desktop-nav a {
  font-size: 12px;
  font-weight: 600;
  position: relative;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: 0.3s;
}

.desktop-nav a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 13px 19px;
  border: 1px solid currentColor;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  transition: 0.3s;
}

.nav-cta:hover {
  background: var(--text);
  color: white;
}

.menu-btn {
  display: none;
  width: 45px;
  height: 45px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  position: relative;
}

.menu-btn span {
  position: absolute;
  left: 12px;
  width: 20px;
  height: 1px;
  background: currentColor;
  transition: 0.3s;
}

.menu-btn span:first-child {
  top: 18px;
}

.menu-btn span:last-child {
  top: 25px;
}

.menu-btn.active span:first-child {
  top: 22px;
  transform: rotate(45deg);
}

.menu-btn.active span:last-child {
  top: 22px;
  transform: rotate(-45deg);
}

/* MOBILE MENU */

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: var(--bg);
  padding: 120px 8% 40px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  transform: translateY(-100%);
  transition: 0.5s cubic-bezier(.77,0,.18,1);
}

.mobile-menu.open {
  transform: translateY(0);
}

.mobile-menu a {
  font-family: var(--serif);
  font-size: 43px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
}

.mobile-menu .mobile-book {
  font-family: var(--sans);
  font-size: 12px;
  border: 1px solid var(--text);
  border-radius: 50px;
  text-align: center;
  padding: 16px;
  margin-top: 10px;
}

/* HERO */

.hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: center;
  color: white;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1487412720507-e7ab37603c6f?auto=format&fit=crop&w=2200&q=90");
  background-size: cover;
  background-position: center 25%;
  transform: scale(1.04);
  animation: heroZoom 12s ease forwards;
}

@keyframes heroZoom {
  to {
    transform: scale(1);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20, 13, 12, 0.78), rgba(20, 13, 12, 0.2)),
    linear-gradient(0deg, rgba(20, 13, 12, 0.55), transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(90%, 1180px);
  margin: auto;
  padding-top: 70px;
}

.location-pill {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 50px;
  padding: 8px 14px;
  font-size: 10px;
  letter-spacing: 1px;
  backdrop-filter: blur(8px);
  margin-bottom: 24px;
}

.location-pill span {
  color: #e9c8b5;
}

.eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 17px;
}

.eyebrow.dark {
  color: var(--accent-dark);
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(65px, 8vw, 120px);
  line-height: 0.82;
  letter-spacing: -5px;
  max-width: 800px;
}

.hero h1 em,
h2 em {
  font-style: italic;
  font-weight: 400;
}

.hero-description {
  max-width: 480px;
  margin-top: 30px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
}

.hero-buttons {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 23px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3px;
  border: 1px solid transparent;
  transition: 0.3s ease;
}

.btn span {
  transition: 0.3s;
}

.btn:hover span {
  transform: translate(3px, -3px);
}

.btn-primary {
  background: var(--cream);
  color: var(--text);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.18);
}

.btn-outline {
  color: white;
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: white;
  color: var(--text);
}

.btn-dark {
  background: var(--dark);
  color: white;
}

.btn-dark:hover {
  background: var(--accent-dark);
  transform: translateY(-3px);
}

.btn-light {
  background: white;
  color: var(--text);
}

.btn-light:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.hero-bottom {
  position: absolute;
  z-index: 3;
  left: 5%;
  right: 5%;
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 8px;
  letter-spacing: 3px;
  opacity: 0.75;
}

.scroll-line {
  height: 1px;
  width: 100px;
  background: rgba(255,255,255,0.45);
}

.floating-word {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: rotate(90deg);
  font-size: 10px;
  letter-spacing: 7px;
  opacity: 0.45;
}

/* SECTIONS */

.section {
  padding: 130px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 100px;
  align-items: center;
}

.about-images {
  position: relative;
  min-height: 600px;
}

.about-main-image {
  position: absolute;
  width: 73%;
  height: 520px;
  left: 0;
  top: 0;
  background: url("https://images.unsplash.com/photo-1522335789203-aabd1fc54bc9?auto=format&fit=crop&w=1000&q=85") center/cover;
  border-radius: 160px 160px 20px 20px;
}

.about-small-image {
  position: absolute;
  width: 42%;
  height: 260px;
  right: 0;
  bottom: 10px;
  background: url("https://images.unsplash.com/photo-1487412912498-0447578fcca8?auto=format&fit=crop&w=700&q=85") center/cover;
  border: 12px solid var(--bg);
  border-radius: 100px 20px 20px 20px;
}

.image-badge {
  position: absolute;
  right: 4%;
  top: 40%;
  width: 110px;
  height: 110px;
  background: var(--cream);
  border-radius: 50%;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.image-badge span {
  font-family: var(--serif);
  font-size: 32px;
  color: var(--accent-dark);
}

.image-badge small {
  text-align: center;
  font-size: 7px;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-content h2,
.section-heading h2,
.contact-info h2,
.booking-intro h2 {
  font-family: var(--serif);
  font-size: clamp(54px, 6vw, 82px);
  font-weight: 500;
  line-height: 0.82;
  letter-spacing: -3px;
}

.about-content > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.8;
  font-size: 14px;
  margin-top: 25px;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 38px;
  border-top: 1px solid var(--line);
}

.feature {
  padding: 18px 10px 18px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feature:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.feature:nth-child(even) {
  padding-left: 20px;
}

.feature span {
  color: var(--accent-dark);
  font-size: 9px;
}

.feature strong {
  font-size: 11px;
}

/* SECTION HEADING */

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 60px;
}

.section-heading > p {
  max-width: 340px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.section-heading h2 {
  font-size: clamp(58px, 7vw, 88px);
}

/* SERVICES */

.services {
  background: var(--cream);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  position: relative;
  min-height: 290px;
  padding: 35px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  transition: 0.4s ease;
}

.service-card:hover {
  background: var(--bg-soft);
  transform: translateY(-5px);
}

.service-number {
  font-size: 9px;
  color: var(--accent-dark);
  letter-spacing: 2px;
}

.service-icon {
  font-family: var(--serif);
  font-size: 38px;
  color: var(--accent-dark);
  margin: 25px 0 15px;
}

.service-card h3 {
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 500;
}

.service-card p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
  margin-top: 10px;
  max-width: 260px;
}

.service-card a {
  display: inline-block;
  margin-top: 25px;
  font-size: 10px;
  font-weight: 700;
  color: var(--accent-dark);
}

/* WHY */

.why-section {
  background: var(--dark);
  color: white;
  padding: 120px 0;
}

.why-header {
  max-width: 600px;
}

.why-header .eyebrow {
  color: #caa899;
}

.why-header h2 {
  font-family: var(--serif);
  font-size: clamp(60px, 7vw, 92px);
  font-weight: 400;
  line-height: 0.82;
  letter-spacing: -4px;
}

.why-header h2 em {
  color: #d7b8a9;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 85px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.why-item {
  padding: 35px 25px 10px 0;
  border-right: 1px solid rgba(255,255,255,0.15);
  margin-right: 25px;
}

.why-item:last-child {
  border-right: 0;
}

.why-item span {
  color: #c4a091;
  font-size: 9px;
}

.why-item h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  margin-top: 28px;
}

.why-item p {
  color: rgba(255,255,255,0.6);
  font-size: 11px;
  line-height: 1.7;
  margin-top: 12px;
}

/* GALLERY */

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 35px;
}

.filter {
  border: 1px solid var(--line);
  background: transparent;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 10px;
  transition: 0.3s;
}

.filter:hover,
.filter.active {
  background: var(--dark);
  color: white;
  border-color: var(--dark);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 250px;
  gap: 12px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 5px;
  cursor: pointer;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item.hide {
  display: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.7s cubic-bezier(.2,.7,.2,1);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

/* REVIEWS */

.reviews {
  background: var(--bg-soft);
}

.demo-note {
  display: inline-block;
  border: 1px dashed var(--accent-dark);
  padding: 10px 15px;
  border-radius: 50px;
  font-size: 9px;
  color: var(--accent-dark);
  margin-bottom: 30px;
}

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

.review-card {
  background: var(--cream);
  padding: 40px;
  min-height: 300px;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.review-card.featured {
  background: var(--dark);
  color: white;
}

.stars {
  letter-spacing: 5px;
  color: var(--gold);
  font-size: 11px;
}

.review-card p {
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.15;
  margin: 25px 0;
}

.review-card strong {
  font-size: 11px;
}

.review-card span {
  font-size: 9px;
  color: var(--muted);
  margin-top: 5px;
}

.featured span {
  color: rgba(255,255,255,0.5);
}

/* INSTAGRAM */

.instagram-section {
  background: #b58d80;
  color: white;
  text-align: center;
  padding: 130px 0;
  position: relative;
  overflow: hidden;
}

.instagram-inner {
  position: relative;
  z-index: 2;
}

.insta-symbol {
  width: 70px;
  height: 70px;
  margin: 0 auto 25px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 22px;
  display: grid;
  place-items: center;
  font-size: 38px;
}

.instagram-section .eyebrow {
  color: rgba(255,255,255,0.75);
}

.instagram-section h2 {
  font-family: var(--serif);
  font-size: clamp(60px, 8vw, 100px);
  line-height: 0.8;
  font-weight: 400;
  letter-spacing: -4px;
}

.instagram-section h2 em {
  color: #f5ddd2;
}

.instagram-section > .container > p:not(.eyebrow) {
  margin: 25px auto 30px;
  color: rgba(255,255,255,0.75);
  font-size: 13px;
}

.instagram-section small {
  display: block;
  margin-top: 14px;
  font-size: 9px;
  color: rgba(255,255,255,0.65);
}

.disabled-link {
  opacity: 0.65;
}

/* CONTACT */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 80px;
  align-items: center;
}

.contact-info h2 {
  margin-bottom: 50px;
}

.contact-details {
  border-top: 1px solid var(--line);
}

.contact-row {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
}

.contact-row span {
  font-size: 8px;
  letter-spacing: 2px;
  color: var(--accent-dark);
  font-weight: 700;
}

.contact-row p,
.contact-row a {
  font-size: 13px;
  line-height: 1.6;
}

.contact-row a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-buttons {
  display: flex;
  gap: 10px;
  margin-top: 30px;
}

.btn-whatsapp {
  border: 1px solid var(--line);
  color: var(--text);
}

.btn-whatsapp:hover {
  background: #d7ead9;
}

.map-card {
  min-height: 530px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(248,242,238,0.75), rgba(248,242,238,0.75)),
    repeating-linear-gradient(
      45deg,
      transparent 0 30px,
      rgba(100,80,70,0.06) 30px 31px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent 0 45px,
      rgba(100,80,70,0.05) 45px 46px
    );
  border-radius: 180px 180px 20px 20px;
  display: grid;
  place-items: center;
}

.map-content {
  background: rgba(255,250,247,0.9);
  backdrop-filter: blur(12px);
  padding: 40px;
  width: 70%;
  text-align: center;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.map-pin {
  width: 35px;
  height: 35px;
  margin: 0 auto 15px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--accent-dark);
  border: 1px solid var(--line);
}

.map-content h3 {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
}

.map-content p {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
  margin: 10px 0 20px;
}

.map-link {
  font-size: 10px;
  font-weight: 700;
  color: var(--accent-dark);
}

/* BOOKING */

.booking {
  background: var(--cream);
}

.booking-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 100px;
}

.booking-intro > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
  max-width: 400px;
  margin-top: 25px;
}

.booking-number {
  margin-top: 40px;
  padding-left: 18px;
  border-left: 2px solid var(--accent);
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.booking-number span {
  color: var(--muted);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.booking-number strong {
  font-size: 14px;
}

.booking-form {
  border-top: 1px solid var(--line);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.form-group {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.form-group label {
  display: block;
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent-dark);
  margin-bottom: 9px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  font-size: 13px;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #aaa09c;
}

.form-group select {
  cursor: pointer;
}

.submit-btn {
  margin-top: 25px;
  border: 0;
}

.form-note {
  color: var(--muted);
  font-size: 9px;
  margin-top: 12px;
}

/* FINAL CTA */

.final-cta {
  background: var(--dark);
  color: white;
  text-align: center;
  padding: 140px 0;
}

.final-cta .eyebrow {
  color: #c6a294;
}

.final-cta h2 {
  font-family: var(--serif);
  font-size: clamp(65px, 9vw, 120px);
  font-weight: 400;
  line-height: 0.8;
  letter-spacing: -5px;
  margin-bottom: 40px;
}

.final-cta h2 em {
  color: #d9b9aa;
}

/* FOOTER */

.footer {
  background: var(--dark);
  color: white;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 50px 0 25px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.7fr;
  gap: 50px;
  padding-bottom: 45px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
}

.footer-brand span {
  font-family: var(--serif);
  font-size: 35px;
  letter-spacing: -3px;
}

.footer-top > div > p {
  color: rgba(255,255,255,0.45);
  font-size: 10px;
  margin-top: 15px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-content: start;
}

.footer-links a,
.footer-contact {
  font-size: 10px;
}

.footer-links a:hover {
  color: #d8b5a5;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
}

.footer-contact span {
  color: rgba(255,255,255,0.45);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255,255,255,0.35);
  font-size: 8px;
}

.footer-bottom div {
  display: flex;
  gap: 20px;
}

.footer-bottom a {
  color: rgba(255,255,255,0.65);
}

/* LIGHTBOX */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(15,12,11,0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: min(90vw, 1000px);
  max-height: 85vh;
  object-fit: contain;
}

.lightbox button {
  position: absolute;
  background: rgba(255,255,255,0.1);
  color: white;
  border: 1px solid rgba(255,255,255,0.25);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 25px;
  display: grid;
  place-items: center;
}

.lightbox-close {
  top: 25px;
  right: 25px;
}

.lightbox-prev {
  left: 25px;
  top: 50%;
}

.lightbox-next {
  right: 25px;
  top: 50%;
}

/* REVEAL */

.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(.2,.7,.2,1);
}

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

/* RESPONSIVE */

@media (max-width: 1000px) {

  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .about-grid,
  .contact-grid,
  .booking-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-images {
    max-width: 650px;
  }

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

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

  .why-item:nth-child(2) {
    border-right: 0;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .review-card {
    min-height: 260px;
  }

  .map-card {
    max-width: 650px;
    width: 100%;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-contact {
    align-items: flex-start;
  }
}

@media (max-width: 650px) {

  .section {
    padding: 85px 0;
  }

  .navbar {
    height: 70px;
  }

  .brand-text {
    font-size: 9px;
  }

  .brand-mark {
    font-size: 29px;
  }

  .hero-content {
    padding-top: 60px;
  }

  .hero h1 {
    font-size: clamp(58px, 18vw, 85px);
    letter-spacing: -4px;
  }

  .hero-description {
    font-size: 13px;
    max-width: 340px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn {
    min-height: 48px;
    padding: 0 20px;
  }

  .floating-word {
    display: none;
  }

  .about-images {
    min-height: 470px;
  }

  .about-main-image {
    height: 400px;
  }

  .about-small-image {
    height: 190px;
  }

  .image-badge {
    width: 90px;
    height: 90px;
  }

  .image-badge span {
    font-size: 27px;
  }

  .section-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 40px;
  }

  .section-heading h2,
  .about-content h2,
  .contact-info h2,
  .booking-intro h2 {
    font-size: 60px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 250px;
  }

  .why-section {
    padding: 85px 0;
  }

  .why-grid {
    grid-template-columns: 1fr;
    margin-top: 55px;
  }

  .why-item {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    margin-right: 0;
    padding: 25px 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 190px;
  }

  .gallery-item.tall {
    grid-row: span 2;
  }

  .gallery-item.wide {
    grid-column: span 2;
  }

  .contact-row {
    grid-template-columns: 90px 1fr;
  }

  .map-card {
    min-height: 400px;
  }

  .map-content {
    width: 82%;
  }

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

  .contact-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-links {
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .lightbox {
    padding: 25px;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .lightbox-close {
    top: 15px;
    right: 15px;
  }
}

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