@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&display=swap');

:root {
  /* 🌿 Primary Colors */
  --color-primary: #6e6e6e;

  --color-premium: #0b1320;
  /* Olive Green */
  --color-primary-light: #ececec;
  /* Lighter Olive */
  --color-primary-dark: #272727;
  /* Darker Olive */

  /* 🤍 Neutral / Background */
  --color-bg: #ffffff;
  /* Cream Background */
  --color-bg-transparent: #f5f1e89e;
  /* Cream Background Transparent*/
  --color-bg-soft: #EAE3D2;
  /* Section Background */
  --color-white: #FFFFFF;

  /* 🌳 Earthy Accents */
  --color-blue: #1a3e74;
  /* Wood Brown */
  --color-brown-light: #A67C52;
  /* Light Brown */

  /* 🌅 Optional Accent */
  --color-accent: #D6A85A;
  /* Warm Gold */

  /* 🖤 Text Colors */
  --color-text: #1e1e1e;
  /* Main Text */
  --color-text-light: #b89b67;
  /* Secondary Text */
  --color-heading: #6f2d00;
  --nav-texts: #ffffff;


  /* 🔤 Font Family */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
  --special-font: "Cinzel", serif;




  /* 🔠 Font Sizes */
  --fs-h1: 9rem;
  --fs-h2: 4.3rem;
  --fs-h3: 24px;
  --fs-body: 16px;
  --fs-small: 14px;
  --fs-eb: 18px;

  /* 📏 Spacing */
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 44px;
  --spacing-xl: 50px;

  /* 🔲 Border Radius */
  --radius-sm: 6px;
  --radius-md: 30px;
  --radius-lg: 16px;

  /* 🌫️ Shadows */
  --shadow-soft: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 6px 18px rgba(0, 0, 0, 0.12);

  /* ⏱️ Transitions */
  --transition: all 0.3s ease;
}


/* 🌍 Global Reset + Base */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 🌐 HTML Setup */
html {
  font-size: 16px;
  scroll-behavior: smooth;
}

/* 🏡 Body Styling */
body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-size: var(--fs-body);
  line-height: 1.6;
  letter-spacing: 0.2px;

  /* Smooth rendering */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  /* Better text rendering */
  text-rendering: optimizeLegibility;
}

/* 🖋️ Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-heading);
  line-height: 1.3;
  margin-bottom: var(--spacing-md);
}

/* 📄 Paragraph */
p {
  margin-bottom: var(--spacing-md);
  color: var(--color-text-light);
}

/* 🔗 Links */
a {
  text-decoration: none;
  color: var(--color-primary);
  transition: var(--transition);
}

a:hover {
  color: var(--color-primary-light);
}

/* 🖼️ Images */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* 📋 Lists */
ul,
ol {
  list-style: none;
}

/* 🧾 Buttons Reset */
button {
  border: none;
  outline: none;
  font-family: inherit;
  cursor: pointer;
}

/* 📦 Container (optional but useful) */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ✨ Section Spacing */
section {
  padding: var(--spacing-xl) 0;
}

.eyebrow {
  display: inline-block;
  font-size: var(--fs-eb);
  letter-spacing: 2px;
  gap: 10px;
  text-transform: uppercase;
  margin-bottom: var(--spacing-sm);
}


@keyframes appear {
  from {
    opacity: 0;
    clip-path: inset(100% 100% 0 0);
  }

  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}

/* ===========================
   Responsive Root Variables
=========================== */

@media (max-width:992px) {

  :root {

    --fs-h1: 6rem;
    --fs-h2: 3.5rem;
    --fs-h3: 22px;
    --fs-body: 15px;

    --spacing-xl: 80px;
  }

}

@media (max-width:768px) {

  :root {

    --fs-h1: 4.5rem;
    --fs-h2: 2.8rem;
    --fs-h3: 20px;
    --fs-body: 15px;

    --spacing-xl: 70px;
  }

}

@media (max-width:576px) {

  :root {

    --fs-h1: 3.2rem;
    --fs-h2: 2.2rem;
    --fs-h3: 18px;
    --fs-body: 15px;

    --spacing-xl: 60px;
  }

}

@media (max-width:400px) {

  :root {

    --fs-h1: 2.8rem;
    --fs-h2: 2rem;

  }

}



/*-------------
|    Header   |
-------------*/
/* 🏡 Header Base */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #1b2230c8;
  backdrop-filter: blur(10px);
  backdrop-filter: blur(6px);
  transition: transform 0.4s ease, opacity 0.3s ease;
}

/* 👇 Hidden state (scroll down) */
.header.hide {
  transform: translateY(-100%);
  opacity: 0;
}

/* 👆 Visible state */
.header.show {
  transform: translateY(0);
  opacity: 1;
}

/* 📦 Nav layout */
.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

/* 🌿 Logo */
.logo img {
  height: 50px;
  width: 50px;
  border:2px solid #b89b67;
  border-radius: 50px;
}

/* 🧭 Nav */
.nav-list {
  display: flex;
  gap: var(--spacing-md);
}

.nav-list a {
  font-size: var(--fs-small);
  color: var(--color-white);
  font-size: 100;
  letter-spacing: 3px;
  position: relative;
  padding: 12px 14px;
  border-radius: 30px 30px 30px 0;
}

.nav-list a:hover {
  border-radius: 30px;
}


/* 🍔 Mobile */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--color-white);
  margin: 4px 0;
}


.nav-list a.active {
  border: 1px solid var(--color-white);
  color: var(--color-white);
}


/* 📱 Mobile Devices (up to 768px) */
@media (max-width: 768px) {

  /* 🍔 Show hamburger */
  .menu-toggle {
    display: flex;
    z-index: 1100;
  }


  /* 🧭 Hide desktop nav */
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100vh;
    background-color: #1b2230c8;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s ease;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
  }

  /* ✅ Active menu */
  .nav.active {
    right: 0;
  }

  /* 📋 Nav list */
  .nav-list {
    flex-direction: column;
    gap: 25px;
    text-align: center;
  }

  .nav-list a {
    font-size: 18px;
    color: var(--color-white);
  }

  /* ❌ Remove hover underline (mobile) */
  .nav-list a::after {
    display: none;
  }

  /* 🌿 Logo smaller */
  .logo img {
    height: 40px;
  }

  /* 📦 Padding adjust */
  .nav-wrapper {
    padding: 10px 15px;
  }
}











/* =========================================
   🌟 HERO SECTION
========================================= */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  color: var(--color-white);
}

/* =========================================
   🖼 HERO BACKGROUND
========================================= */

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  /* Smooth cinematic zoom */
  animation: heroZoom 8s ease-out forwards;
  transform: scale(1.08);
}

/* =========================================
   🌑 OVERLAY
========================================= */

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(30, 30, 30, 0.58),
      rgba(20, 20, 20, 0.45));
  z-index: 2;
}

/* =========================================
   📌 TOP BAR
========================================= */

.hero-top {
  position: absolute;
  top: 80px;
  left: 50px;
  right: 50px;

  display: flex;
  justify-content: center;
  align-items: center;

  z-index: 5;

  font-size: 14px;
  font-weight: 300;
  letter-spacing: 1px;
}

.hero-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* =========================================
   ✨ HERO CONTENT
========================================= */

.hero-content {
  position: relative;
  z-index: 5;

  height: 100%;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  padding: 70px 60px 0;

  overflow: hidden;
}

/* Small Text */
.hero-sp {
  font-family: "Cinzel", serif;
  font-size: 48px;
  letter-spacing: 2px;

  opacity: 0;
  transform: translateY(80px);

  animation: fadeUp 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.2s;
}

/* =========================================
   🏨 HERO HEADING
========================================= */

.hero-content h1 {
  font-family: "Cinzel", serif;
  font-size: 8rem;
  line-height: 0.9;
  font-weight: 300;
  letter-spacing: 2px;

  color: var(--color-white);
  max-width: 700px;

  opacity: 0;

  transform: translateY(120px) scale(0.96);

  filter: blur(12px);

  clip-path: inset(100% 0 0 0);

  animation: heroReveal 1.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.4s;

  will-change: transform, opacity;
}

/* =========================================
   🔘 HERO BUTTON
========================================= */

.hero-btn {
  position: absolute;

  right: 90px;
  bottom: 40px;

  padding: 10px 20px;

  color: var(--color-white);

  border: 1px solid var(--color-white);

  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;

  display: flex;
  align-items: center;
  gap: 12px;

  backdrop-filter: blur(4px);

  transition: 0.4s ease;

  opacity: 0;
  transform: translateY(40px);

  animation: fadeUp 1s ease forwards;
  animation-delay: 1.1s;
}

.hero-btn span {
  font-weight: 500;
  font-size: 20px;
  transition: 0.35s ease;
}

.hero-btn:hover {
  border-radius: 40px;
  transform: translateX(6px);
}

.hero-btn:hover span {
  transform: translateX(8px);
}

/* =========================================
   🌐 FLOATING SOCIALS
========================================= */

.hero-socials {
  position: absolute;

  right: 40px;
  top: 50%;

  transform: translateY(-50%);

  z-index: 10;

  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 26px;

  opacity: 0;

  animation: socialSlide 1.2s ease forwards;
  animation-delay: 1.3s;
}

/* Vertical Lines */

.hero-socials::before,
.hero-socials::after {
  content: "";

  width: 1px;
  height: 70px;

  background: rgba(255, 255, 255, 0.55);
}

/* Social Links */

.hero-socials a {
  width: 38px;
  height: 38px;

  border-radius: 50%;

  border: 1px solid rgba(255, 255, 255, 0.7);

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;

  text-decoration: none;

  background: rgba(255, 255, 255, 0.05);

  backdrop-filter: blur(5px);

  transition: 0.35s ease;
}

/* Icons */

.hero-socials a i {
  font-size: 20px;
}

/* Hover */

.hero-socials a:hover {
  background: #fff;
  color: #111;

  transform: translateX(-6px) scale(1.05);
}

/* =========================================
   🎬 KEYFRAMES
========================================= */

@keyframes heroReveal {
  0% {
    opacity: 0;

    transform: translateY(120px) scale(0.96);

    filter: blur(12px);

    clip-path: inset(100% 0 0 0);
  }

  100% {
    opacity: 1;

    transform: translateY(0) scale(1);

    filter: blur(0);

    clip-path: inset(0 0 0 0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(60px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes socialSlide {
  from {
    opacity: 0;
    transform: translate(40px, -50%);
  }

  to {
    opacity: 1;
    transform: translate(0, -50%);
  }
}

@keyframes heroZoom {
  from {
    transform: scale(1.08);
  }

  to {
    transform: scale(1);
  }
}

/* =========================================
   🌟 HERO SECTION
========================================= */

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  height: 100vh;
  overflow: hidden;
  color: var(--color-white);
}

/* =========================================
   🖼 HERO BACKGROUND
========================================= */

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  /* Smooth cinematic zoom */
  animation: heroZoom 8s ease-out forwards;
  transform: scale(1.08);
}

/* =========================================
   🌑 OVERLAY
========================================= */

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(30, 30, 30, 0.58),
      rgba(20, 20, 20, 0.45));
  z-index: 2;
}

/* =========================================
   📌 TOP BAR
========================================= */

.hero-top {
  position: absolute;
  top: 80px;
  left: 50px;
  right: 50px;

  display: flex;
  justify-content: center;
  align-items: center;

  z-index: 5;

  font-size: 14px;
  font-weight: 300;
  letter-spacing: 1px;
}

.hero-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* =========================================
   ✨ HERO CONTENT
========================================= */

.hero-content {
  position: relative;
  z-index: 5;

  height: 100%;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  padding: 70px 60px 0;

  overflow: hidden;
}

/* Small Text */
.hero-sp {
  font-family: "Cinzel", serif;
  font-size: clamp(1.6rem, 4vw, 3rem);
  letter-spacing: 2px;

  opacity: 0;
  transform: translateY(80px);

  animation: fadeUp 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.2s;
}

/* =========================================
   🏨 HERO HEADING
========================================= */

.hero-content h1 {
  font-family: "Cinzel", serif;
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: 0.9;
  font-weight: 300;
  letter-spacing: 2px;

  color: var(--color-white);
  max-width: 725px;

  opacity: 0;

  transform: translateY(120px) scale(0.96);

  filter: blur(12px);

  clip-path: inset(100% 0 0 0);

  animation: heroReveal 1.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.4s;

  will-change: transform, opacity;
}

/* =========================================
   🔘 HERO BUTTON
========================================= */

.hero-btn {
  position: absolute;

  right: 90px;
  bottom: 40px;

  padding: 10px 20px;

  color: var(--color-white);

  border: 1px solid var(--color-white);

  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;

  display: flex;
  align-items: center;
  gap: 12px;

  backdrop-filter: blur(4px);

  transition: 0.4s ease;

  opacity: 0;
  transform: translateY(40px);

  animation: fadeUp 1s ease forwards;
  animation-delay: 1.1s;
}

.hero-btn span {
  font-weight: 500;
  font-size: 20px;
  transition: 0.35s ease;
}

.hero-btn:hover {
  border-radius: 40px;
  transform: translateX(6px);
}

.hero-btn:hover span {
  transform: translateX(8px);
}

/* =========================================
   🌐 FLOATING SOCIALS
========================================= */

.hero-socials {
  position: absolute;

  right: 40px;
  top: 50%;

  transform: translateY(-50%);

  z-index: 10;

  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 26px;

  opacity: 0;

  animation: socialSlide 1.2s ease forwards;
  animation-delay: 1.3s;
}

/* Vertical Lines */

.hero-socials::before,
.hero-socials::after {
  content: "";

  width: 1px;
  height: 70px;

  background: rgba(255, 255, 255, 0.55);
}

/* Social Links */

.hero-socials a {
  width: 38px;
  height: 38px;

  border-radius: 50%;

  border: 1px solid rgba(255, 255, 255, 0.7);

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;

  text-decoration: none;

  background: rgba(255, 255, 255, 0.05);

  backdrop-filter: blur(5px);

  transition: 0.35s ease;
}

/* Icons */

.hero-socials a i {
  font-size: 20px;
}

/* Hover */

.hero-socials a:hover {
  background: #fff;
  color: #111;

  transform: translateX(-6px) scale(1.05);
}

/* =========================================
   🎬 KEYFRAMES
========================================= */

@keyframes heroReveal {
  0% {
    opacity: 0;

    transform: translateY(120px) scale(0.96);

    filter: blur(12px);

    clip-path: inset(100% 0 0 0);
  }

  100% {
    opacity: 1;

    transform: translateY(0) scale(1);

    filter: blur(0);

    clip-path: inset(0 0 0 0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(60px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes socialSlide {
  from {
    opacity: 0;
    transform: translate(40px, -50%);
  }

  to {
    opacity: 1;
    transform: translate(0, -50%);
  }
}

@keyframes heroZoom {
  from {
    transform: scale(1.08);
  }

  to {
    transform: scale(1);
  }
}


/* =========================================
   📱 HERO RESPONSIVE
========================================= */

/* ---------- Laptop ---------- */
@media (max-width:1200px) {

  .hero-content {
    padding: 70px 45px;
  }

  .hero-content h1 {
    font-size: clamp(5.8rem, 11vw, 8rem);
    max-width: 650px;
  }

  .hero-sp {
    font-size: clamp(2rem, 4vw, 3rem);
  }

  .hero-btn {
    right: 45px;
  }

  .hero-socials {
    right: 25px;
  }

}


/* ---------- Tablet ---------- */
@media (max-width:992px) {

  .hero-content {
    padding: 90px 35px 50px;
  }

  .hero-content h1 {

    font-size: clamp(4.5rem, 11vw, 6.5rem);

    line-height: 1;

    max-width: 100%;
  }

  .hero-sp {

    font-size: clamp(1.8rem, 4vw, 2.5rem);

  }

  .hero-btn {

    right: 35px;

    bottom: 35px;

  }

  .hero-socials {

    gap: 18px;

    right: 18px;

  }

  .hero-socials::before,
  .hero-socials::after {

    height: 45px;

  }

}


/* ---------- Mobile ---------- */
@media (max-width:768px) {

  .hero {

    min-height: 100vh;

  }

  .hero-content {

    justify-content: center;

    align-items: center;

    text-align: center;

    padding: 120px 24px 120px;

  }

  .hero-sp {

    font-size: clamp(1.4rem, 5vw, 2rem);

    margin-bottom: 10px;

    letter-spacing: 1px;

  }

  .hero-content h1 {

    font-size: clamp(3rem, 13vw, 5rem);

    line-height: 1.05;

    letter-spacing: 1px;

    margin-bottom: 30px;

    max-width: 100%;

  }

  .hero-btn {

    position: static;

    margin-top: 5px;

    padding: 15px 30px;

    font-size: 15px;

  }

  /* Socials move to bottom */

  .hero-socials {

    top: auto;

    bottom: 30px;

    left: 50%;

    right: auto;

    transform: translateX(-50%);

    flex-direction: row;

    gap: 16px;

  }

  .hero-socials::before,
  .hero-socials::after {

    display: none;

  }

  .hero-socials a {

    width: 42px;

    height: 42px;

  }

  .hero-socials a i {

    font-size: 18px;

  }

}


/* ---------- Small Mobile ---------- */
@media (max-width:576px) {

  .hero-content {

    padding: 100px 20px 110px;

  }

  .hero-content h1 {

    font-size: clamp(2.6rem, 14vw, 4rem);

    line-height: 1.08;

  }

  .hero-sp {

    font-size: 1.25rem;

  }

  .hero-btn {

    width: 100%;

    max-width: 250px;

    justify-content: center;

  }

  .hero-socials {

    bottom: 22px;

    gap: 14px;

  }

  .hero-socials a {

    width: 38px;

    height: 38px;

  }

}


/* ---------- Extra Small ---------- */
@media (max-width:400px) {

  .hero-content {

    padding: 90px 18px 100px;

  }

  .hero-content h1 {

    font-size: 2.3rem;

  }

  .hero-sp {

    font-size: 1.05rem;

  }

  .hero-btn {

    padding: 14px 24px;

    font-size: 14px;

  }

  .hero-socials a {

    width: 34px;

    height: 34px;

  }

  .hero-socials a i {

    font-size: 15px;

  }

}







/* 🌟 LUXURY SECTION */
.luxury-section {
  width: 100%;
  padding-bottom: 1px;
  background: var(--color-primary-light);
}

/* 🔝 TOP AREA */
.luxury-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 0 60px 20px;
}

.lux {
  display: flex;
  align-items: center;
  color: #1d2330;
}

.lux::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #1d23307e;
  flex-shrink: 0;
}

.lux::after {
  content: "";
  bottom: 0;
  width: 50%;
  height: 1px;
  background: #1d23307e;
}

.luxury-heading h2 {
  font-family: var(--special-font);
  font-size: var(--fs-h2);
  line-height: 0.9;
  font-weight: 300;
  color: var(--color-premium);
  letter-spacing: 1px;
}

/* 🖼 IMAGE */
.luxury-image {
  width: 100%;
  height: 240px;
  padding: 10px;
  overflow: hidden;
}

.luxury-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.luxury-image:hover img {
  transform: scale(1.05);
}

/* 🔽 BOTTOM CONTENT */
.luxury-bottom {
  background: var(--color-premium);
  color: var(--color-white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 50px 60px;
}

.luxury-card p {
  font-size: var(--fs-body);
  text-align: justify;
  line-height: 1.9;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.88);
  max-width: 520px;
}


/* =========================================
   📱 LUXURY SECTION RESPONSIVE
========================================= */

/* ---------- Laptop ---------- */
@media (max-width:1200px) {

  .luxury-top {
    gap: 30px;
    padding: 0 40px 20px;
  }

  .luxury-bottom {
    gap: 40px;
    padding: 45px 40px;
  }

}


/* ---------- Tablet ---------- */
@media (max-width:992px) {

  .luxury-top {

    grid-template-columns: 1fr;

    gap: 30px;

    padding: 0 35px 30px;

  }

  .luxury-heading {

    order: 1;

  }

  .luxury-image {

    order: 2;

    height: 320px;

  }

  .luxury-heading h2 {

    font-size: clamp(2.8rem, 6vw, 4rem);

    line-height: 1;

  }

  .luxury-bottom {

    grid-template-columns: 1fr;

    gap: 25px;

    padding: 40px 35px;

  }

  .luxury-card p {

    max-width: 100%;

  }

}


/* ---------- Mobile ---------- */
@media (max-width:768px) {

  .luxury-section {

    padding-bottom: 0;

  }

  .luxury-top {

    padding: 0 24px 25px;

    gap: 24px;

  }

  .luxury-heading {

    text-align: center;

  }

  .lux {

    justify-content: center;

  }

  .lux::after {

    width: 60px;

  }

  .luxury-heading h2 {

    font-size: clamp(2.2rem, 8vw, 3.5rem);

    line-height: 1.1;

    margin-top: 10px;

  }

  .luxury-image {

    height: 260px;

    padding: 0;

  }

  .luxury-bottom {

    padding: 35px 24px;

    gap: 20px;

  }

  .luxury-card p {

    text-align: left;

    line-height: 1.8;

  }

}


/* ---------- Small Mobile ---------- */
@media (max-width:576px) {

  .luxury-top {

    padding: 0 20px 20px;

  }

  .luxury-heading h2 {

    font-size: 2rem;

  }

  .luxury-image {

    height: 220px;

    border-radius: 12px;

    overflow: hidden;

  }

  .luxury-bottom {

    padding: 30px 20px;

  }

  .luxury-card p {

    font-size: 15px;

    line-height: 1.75;

  }

}


/* ---------- Extra Small ---------- */
@media (max-width:400px) {

  .luxury-top {

    padding: 0 18px 18px;

  }

  .luxury-heading h2 {

    font-size: 1.8rem;

  }

  .luxury-image {

    height: 190px;

  }

  .luxury-bottom {

    padding: 28px 18px;

  }

}







/* 🌟 AMENITIES SECTION */
.amenities-section {
  position: relative;
  background: var(--color-premium);
  ;
  padding: 70px 60px;
  color: var(--color-white);
}

/* 🏷 HEADING */
.amenities-header {
  margin-bottom: 50px;
}

.ame {
  display: flex;
  align-items: center;
  color: var(--color-white);
}

.ame::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-text-light);
  flex-shrink: 0;
}

.ame::after {
  content: "";
  bottom: 0;
  width: 50%;
  height: 1px;
  background: rgba(255, 255, 255, 0.45);
}

.amenities-header h2 {
  color: var(--color-text-light);
  font-family: var(--special-font);
  font-size: 5.5rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 1px;
}

/* 🧩 GRID */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* 🃏 CARD */
.amenity-card {
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  transition: 0.4s ease;
}

.amenity-card:hover {
  transform: translateY(-6px);
}

/* 🖼 IMAGE */
.amenity-image {
  width: 100%;
  height: 230px;
  overflow: hidden;
}

.amenity-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.amenity-card:hover img {
  transform: scale(1.05);
}

/* ✨ CONTENT */
.amenity-content {
  padding: 22px 18px 28px;
}

.amenity-content h3 {
  color: var(--color-white);
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}

.amenity-content p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  max-width: 260px;
}

/* =========================================
   📱 AMENITIES RESPONSIVE
========================================= */

/* ---------- Laptop ---------- */
@media (max-width:1200px) {

  .amenities-section {
    padding: 70px 40px;
  }

  .amenities-header h2 {
    font-size: 4.5rem;
  }

  .amenities-grid {
    gap: 22px;
  }

}


/* ---------- Tablet ---------- */
@media (max-width:992px) {

  .amenities-section {
    padding: 60px 35px;
  }

  .amenities-header {
    margin-bottom: 40px;
  }

  .amenities-header h2 {

    font-size: clamp(2.8rem, 6vw, 4rem);

  }

  .amenities-grid {

    grid-template-columns: repeat(2, 1fr);

    gap: 22px;

  }

  .amenity-image {

    height: 220px;

  }

  .amenity-content p {

    max-width: 100%;

  }

}


/* ---------- Mobile ---------- */
@media (max-width:768px) {

  .amenities-section {

    padding: 55px 24px;

  }

  .amenities-header {

    text-align: center;

    margin-bottom: 35px;

  }

  .ame {

    justify-content: center;

  }

  .ame::after {

    width: 60px;

  }

  .amenities-header h2 {

    font-size: clamp(2.2rem, 8vw, 3.5rem);

    line-height: 1.1;

  }

  .amenities-grid {

    grid-template-columns: 1fr;

    gap: 24px;

  }

  .amenity-image {

    height: 260px;

  }

  .amenity-content {

    padding: 24px;

  }

  .amenity-content h3 {

    font-size: 1.4rem;

  }

  .amenity-content p {

    font-size: 15px;

    max-width: 100%;

  }

}


/* ---------- Small Mobile ---------- */
@media (max-width:576px) {

  .amenities-section {

    padding: 50px 20px;

  }

  .amenities-header h2 {

    font-size: 2rem;

  }

  .amenity-image {

    height: 220px;

  }

  .amenity-content {

    padding: 22px 20px;

  }

}


/* ---------- Extra Small ---------- */
@media (max-width:400px) {

  .amenities-section {

    padding: 45px 18px;

  }

  .amenities-header h2 {

    font-size: 1.8rem;

  }

  .amenity-image {

    height: 190px;

  }

  .amenity-content h3 {

    font-size: 1.25rem;

  }

}





/* 🌟 ROOMS SECTION */
.rooms-section {
  background: var(--color-primary-light);
  background-image: radial-gradient(#1b22304b 1px, transparent 1px);
  /* Dot color and size */
  background-size: 20px 20px;
  padding: 70px 60px;
}

/* 🏷 HEADER */
.rooms-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;

  margin-bottom: 50px;
}

.roo {
  display: flex;
  align-items: center;
  color: var(--color-premium);
}

.roo::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #1d23307e;
  flex-shrink: 0;
}

.roo::after {
  content: "";
  bottom: 0;
  width: 50%;
  height: 1px;
  background: #1d23307e;
}

.rooms-header h2 {
  font-family: var(--special-font);
  font-size: var(--fs-h2);
  font-weight: 300;
  line-height: 1;
  color: #1d1d1d;
  letter-spacing: 1px;
}


/* 🔘 BUTTON */
.rooms-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;

  text-decoration: none;
  color: var(--color-premium);
  border: 1px solid var(--color-premium);
  ;

  font-size: var(--fs-body);
  letter-spacing: 1px;

  transition: 0.3s ease;
}


.rooms-btn span {
  font-size: 1.5rem;
  transition: 0.3s ease;
}

.rooms-btn:hover {
  color: var(--color-premium);
  ;
  border-radius: 30px;
  transform: translateX(4px);
}

.rooms-btn:hover span {
  color: var(--color-premium);
  ;
  transform: translateX(4px);
}

/* 🧩 GRID */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

/* 🛏 CARD */
.room-card {
  display: flex;
  flex-direction: column;

  width: 100%;
  min-width: 0;
  height: 460px;
}

/* 🖼 IMAGE */
.room-image {
  width: 100%;
  height: 400px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.54);
  border-bottom: none;
}

.room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.room-card:hover img {
  transform: scale(1.04);
}

/* 📦 CONTENT */
.room-content {
  border: 1px solid rgba(0, 0, 0, 0.54);
  background-color: var(--color-white);
  padding: 18px;
}

/* 📝 TOP META */
.room-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 35px;
}

.room-info {
  font-size: 0.82rem;
  line-height: 1.7;
  color: #444;
  text-transform: uppercase;
}

/* 🛏 ICONS */
.room-icons {
  display: flex;
  gap: 12px;
  color: #888;
  font-size: 1rem;
  margin-top: 2px;
}

/* 🏨 TITLE */
.room-content h3 {
  font-family: var(--special-font);
  font-size: 2.3rem;
  font-weight: 300;
  line-height: 1;
  color: #1d1d1d;
}

/* 💲 PRICE */
.room-price {
  margin-top: 13px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;

  text-decoration: none;
  color: #1d1d1d;

  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;

  transition: 0.3s ease;
}

.room-price span {
  font-size: 1.6rem;
  transition: 0.3s ease;
}

.room-price:hover {
  transform: translateX(6px);
  color: var(--color-premium);
}

.room-price:hover span {
  transform: translateX(6px);
  color: var(--color-premium);
}


/* =========================================
   📱 ROOMS RESPONSIVE
========================================= */

/* ---------- Laptop ---------- */
@media (max-width:1200px) {

  .rooms-section {
    padding: 70px 40px;
  }

  .rooms-grid {
    gap: 22px;
  }

}


/* ---------- Tablet ---------- */
@media (max-width:992px) {

  .rooms-section {
    padding: 60px 35px;
  }

  .rooms-header {

    flex-direction: column;

    align-items: flex-start;

    gap: 25px;

    margin-bottom: 40px;

  }

  .rooms-header h2 {

    font-size: clamp(2.8rem, 6vw, 4rem);

  }

  .rooms-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .room-card {
    width: 100%;
    height: auto;
  }

  .room-image {

    height: 320px;

  }

}


/* ---------- Mobile ---------- */
@media (max-width:768px) {

  .rooms-section {

    padding: 55px 24px;

  }

  .rooms-header {

    align-items: center;

    text-align: center;

  }

  .roo {

    justify-content: center;

  }

  .roo::after {

    width: 60px;

  }

  .rooms-header h2 {

    font-size: clamp(2.2rem, 8vw, 3.5rem);

    line-height: 1.1;

  }

  .rooms-btn {

    width: 100%;

    max-width: 240px;

    justify-content: center;

  }

  .rooms-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 28px;
  }

  .room-card {
    width: 100%;
    max-width: 420px;
    height: auto;
  }

  .room-image {

    height: 260px;

  }

  .room-content {

    padding: 22px;

  }

  .room-meta {

    margin-bottom: 22px;

  }

  .room-content h3 {

    font-size: 2rem;

  }

}


/* ---------- Small Mobile ---------- */
@media (max-width:576px) {

  .rooms-section {

    padding: 50px 20px;

  }

  .rooms-header h2 {

    font-size: 2rem;

  }

  .room-image {

    height: 220px;

  }

  .room-content {

    padding: 20px;

  }

  .room-content h3 {

    font-size: 1.8rem;

  }

  .room-meta {

    flex-direction: column;

    gap: 10px;

    margin-bottom: 18px;

  }

  .room-icons {

    gap: 8px;

  }

  .room-price {

    font-size: .95rem;

    gap: 10px;

  }

}


/* ---------- Extra Small ---------- */
@media (max-width:400px) {

  .rooms-section {

    padding: 45px 18px;

  }

  .rooms-header h2 {

    font-size: 1.8rem;

  }

  .room-image {

    height: 190px;

  }

  .room-content {

    padding: 18px;

  }

  .room-content h3 {

    font-size: 1.6rem;

  }

  .room-price {

    font-size: .88rem;

  }

}



/* 🌟 ATTRACTIONS SECTION */
.attractions-section {
  position: relative;
  padding: 70px 60px;
  background: var(--color-premium);
  color: var(--color-white);
}

/* 🏷 HEADER */
.attractions-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 55px;
}

/* 👁️ EYEBROW */
.near {
  display: flex;
  align-items: center;
  color: var(--color-white);
}

.near::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-text-light);
}

.near::after {
  content: "";
  bottom: 0;
  width: 50%;
  height: 1px;
  background: rgba(255, 255, 255, 0.45);
}

/* 🏨 TITLE */
.attractions-header h2 {
  font-family: var(--special-font);
  color: var(--color-text-light);
  font-size: var(--fs-h2);
  font-weight: 300;
  line-height: 1;
}



/* 🧩 FLEX ROW */
.attractions-wrapper {
  display: flex;
  gap: 28px;

  overflow-x: auto;
  overflow-y: hidden;

  flex-wrap: nowrap;
  /* IMPORTANT */

  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;

  padding-bottom: 10px;

  scrollbar-width: none;
}

.attractions-wrapper::-webkit-scrollbar {
  display: none;
}


/* 🃏 CARD */
.attraction-card {
  flex: 0 0 320px;
  min-width: 320px;

  border: 1px solid rgba(255, 255, 255, 0.336);
  overflow: hidden;

  transition: 0.4s ease;
}

/* 🖼 IMAGE */
.attraction-image {
  width: 100%;
  height: 210px;
  overflow: hidden;
}

.attraction-card:hover {
  transform: translateY(-6px);
}

.attraction-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.attraction-card:hover img {
  transform: scale(1.05);
}

/* ✨ CONTENT */
.attraction-content {
  padding: 28px;
}

/* 📍 TOP META */
.attraction-top {
  display: flex;
  justify-content: space-between;

  margin-bottom: 18px;

  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;

  color: rgba(255, 255, 255, 0.6);
}

/* 🏨 TITLE */
.attraction-content h3 {
  font-family: var(--special-font);
  color: var(--color-white);
  font-size: 2.2rem;
  font-weight: 300;

  margin-bottom: 18px;
}

/* 📝 TEXT */
.attraction-content p {
  font-size: 0.96rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.78);
}

@media(max-width:768px){

    .attractions-section{

        padding:55px 24px;

    }

    .attractions-header{

        text-align:center;

        margin-bottom:35px;

    }

    .near{

        justify-content:center;

    }

    .near::after{

        width:60px;

    }

    .attractions-header h2{

        font-size:2.2rem;

    }

    .attraction-card{

        flex:0 0 85%;

    }

}

@media(max-width:576px){

    .attractions-section{

        padding:50px 20px;

    }

    .attraction-card{

        flex:0 0 92%;

    }

}

@media(max-width:400px){

    .attraction-card{

        flex:0 0 96%;

    }

}






/* 🌟 BLOGS SECTION */
.blogs-section {
  padding: 70px 60px;
  background: var(--color-primary-light);
  background-image: radial-gradient(#1b22304b 1px, transparent 1px);
  /* Dot color and size */
  background-size: 20px 20px;
}

/* 🏷 HEADER */
.blogs-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;

  margin-bottom: 55px;
}

.blo {
  display: flex;
  align-items: center;
  color: var(--color-premium);
}

.blo::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #1d23307e;
  flex-shrink: 0;
}

.blo::after {
  content: "";
  bottom: 0;
  width: 50%;
  height: 1px;
  background: #1d23307e;
}

/* 🏨 TITLE */
.blogs-header h2 {
  font-family: var(--special-font);
  font-size: var(--fs-h2);
  font-weight: 300;
  line-height: 1;

  color: var(--color-premium);
}

/* 🔘 BUTTON */
.blogs-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;

  text-decoration: none;
  color: var(--color-premium);
  border: 1px solid var(--color-premium);
  ;

  font-size: var(--fs-body);
  letter-spacing: 1px;

  transition: 0.3s ease;
}


.blogs-btn span {
  font-size: 1.5rem;
  transition: 0.3s ease;
}

.blogs-btn:hover {
  color: var(--color-premium);
  ;
  border-radius: 30px;
  transform: translateX(4px);
}

.blogs-btn:hover span {
  color: var(--color-premium);
  ;
  transform: translateX(4px);
}


/* 🧩 BLOGS ROW */
.blogs-wrapper {
  display: flex;
  gap: 28px;

  overflow-x: auto;
  overflow-y: hidden;

  flex-wrap: nowrap;

  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;

  padding-bottom: 10px;

  scrollbar-width: none;
}

.blogs-wrapper::-webkit-scrollbar {
  display: none;
}

/* 🃏 CARD */
.blog-card {
  flex: 0 0 360px;
  min-width: 360px;

  background: #fff;
  overflow: hidden;

  transition: 0.4s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
}

/* 🖼 IMAGE */
.blog-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.blog-card:hover img {
  transform: scale(1.05);
}

/* ✨ CONTENT */
.blog-content {
  padding: 28px;
}

/* 📍 META */
.blog-meta {
  display: flex;
  justify-content: space-between;

  margin-bottom: 18px;

  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1px;

  color: #777;
}

/* 🏨 TITLE */
.blog-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 1.1;

  color: #1d1d1d;

  margin-bottom: 18px;
}

/* 📝 TEXT */
.blog-content p {
  font-size: 0.95rem;
  line-height: 1.8;

  color: #555;

  margin-bottom: 25px;
}

/* 🔗 LINK */
.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  text-decoration: none;
  color: #1d1d1d;

  font-size: 0.95rem;
  font-weight: 600;
}

.blog-link span {
  font-size: 1.3rem;
  transition: 0.3s ease;
}

.blog-link:hover span {
  transform: translateX(6px);
}


/* =========================================
   📱 BLOGS RESPONSIVE
========================================= */

/* ---------- Laptop ---------- */
@media (max-width:1200px){

    .blogs-section{
        padding:70px 40px;
    }

}


/* ---------- Tablet ---------- */
@media (max-width:992px){

    .blogs-section{
        padding:60px 35px;
    }

    .blogs-header{

        flex-direction:column;
        align-items:flex-start;
        gap:25px;

        margin-bottom:40px;

    }

    .blogs-header h2{

        font-size:clamp(2.8rem,6vw,4rem);

    }

}


/* ---------- Mobile ---------- */
@media (max-width:768px){

    .blogs-section{

        padding:55px 24px;

    }

    .blogs-header{

        align-items:center;
        text-align:center;

    }

    .blo{

        justify-content:center;

    }

    .blo::after{

        width:60px;

    }

    .blogs-header h2{

        font-size:clamp(2.2rem,8vw,3.5rem);

        line-height:1.1;

    }

    .blogs-btn{

        width:100%;
        max-width:240px;

        justify-content:center;

    }

    .blogs-wrapper{

        gap:20px;

        scroll-snap-type:x mandatory;
        scroll-padding-inline:24px;

        overscroll-behavior-x:contain;
        touch-action:pan-x;

    }

    .blog-card{

        flex:0 0 85%;

        min-width:unset;

        scroll-snap-align:start;
        scroll-snap-stop:always;

    }

    .blog-image{

        height:220px;

    }

    .blog-content{

        padding:22px;

    }

    .blog-content h3{

        font-size:1.9rem;

    }

}


/* ---------- Small Mobile ---------- */
@media (max-width:576px){

    .blogs-section{

        padding:50px 20px;

    }

    .blogs-header h2{

        font-size:2rem;

    }

    .blog-card{

        flex:0 0 92%;

    }

    .blog-image{

        height:200px;

    }

    .blog-content{

        padding:20px;

    }

    .blog-content h3{

        font-size:1.7rem;

    }

    .blog-content p{

        font-size:.92rem;

    }

}


/* ---------- Extra Small ---------- */
@media (max-width:400px){

    .blogs-section{

        padding:45px 18px;

    }

    .blogs-header h2{

        font-size:1.8rem;

    }

    .blog-card{

        flex:0 0 96%;

    }

    .blog-image{

        height:180px;

    }

    .blog-content h3{

        font-size:1.5rem;

    }

}


/*-------------------------
       ABOUT PAGE         |
--------------------------/*

/* 🌟 ABOUT INTRO */
.about-intro {
  min-height: 100vh;

  padding: 90px 60px 70px;

  background: var(--color-primary-light);
  background-image: radial-gradient(#1b22304b 1px, transparent 1px); /* Dot color and size */
  background-size: 20px 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;

  overflow: hidden;
}

/* ✨ CONTENT */
.about-intro-content {
  flex: 1;
  max-width: 650px;
}


.abb {
  display: flex;
  align-items: center;
  color: var(--color-premium);
}

.abb::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #1d23307e;
  flex-shrink: 0;
}

.abb::after {
  content: "";
  bottom: 0;
  width: 50%;
  height: 1px;
  background: #1d23307e;
}


/* 🏨 TITLE */
.about-intro-content h1 {
  font-family: var(--special-font);
  font-size: 4.3rem;
  font-weight: 300;
  line-height: 1;
  color: #1d1d1d;
  letter-spacing: 1px;

  margin-bottom: 28px;
}

/* 📝 TEXT */
.about-intro-content p {
  max-width: 520px;

  font-size: 1rem;
  line-height: 1.9;

  color: #555;

  margin-bottom: 32px;
}

/* 🔘 BUTTON */
.about-intro-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;

  color: var(--color-premium);
  text-decoration: none;

  font-weight: 600;
}

.about-intro-btn span {
  font-size: 1.4rem;
  transition: .3s;
}

.about-intro-btn:hover {
  transform: translateX(6px);
  color: var(--color-premium);
}

.about-intro-btn:hover span {
  transform: translateX(6px);
  color: var(--color-premium);
}

/* 🖼 COLLAGE */
.about-collage {
  flex: 1;

  display: grid;
  grid-template-columns: repeat(2, 1fr);

  gap: 18px;

  max-width: 620px;
}

/* IMAGE */
.collage-img {
  overflow: hidden;
  border-radius: 28px;

  position: relative;
}

.collage-img img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: .6s ease;
}

.collage-img:hover img {
  transform: scale(1.06);
}

/* DIFFERENT HEIGHTS */
.img-1 {
  height: 220px;
  margin-top: 40px;
}

.img-2 {
  height: 140px;
}

.img-3 {
  height: 120px;
}

.img-4 {
  height: 260px;
  margin-top: -110px;
}



/* =========================================
   📱 ABOUT INTRO RESPONSIVE
========================================= */

/* ---------- Laptop ---------- */
@media (max-width:1200px){

    .about-intro{

        padding:80px 40px 60px;
        gap:40px;

    }

    .about-intro-content h1{

        font-size:3.8rem;

    }

}


/* ---------- Tablet ---------- */
@media (max-width:992px){

    .about-intro{

        min-height:auto;

        flex-direction:column;

        align-items:center;

        text-align:center;

        padding:70px 35px 60px;

        gap:24px;

    }

    .about-intro-content{

        max-width:100%;

    }

    .about-intro-content p{

        max-width:700px;

        margin:0 auto 26px;

    }

    .abb{

        justify-content:center;

    }

    .abb::after{

        width:60px;

    }

    .about-collage{

        width:100%;
        max-width:520px;

        margin-top:0;

    }

}


/* ---------- Mobile ---------- */
@media (max-width:768px){

    .about-intro{

        padding:120px 24px 60px;

        gap:18px;

    }

    .about-intro-content h1{

        font-size:clamp(2.4rem,8vw,3.5rem);

        line-height:1.1;

        margin-bottom:18px;

    }

    .about-intro-content p{

        font-size:15px;

        line-height:1.8;

        margin-bottom:22px;

    }

    .about-intro-btn{

        margin-bottom:0;

    }

    .about-collage{

        max-width:420px;

        gap:12px;

        margin-top:0;

    }

    .img-1{

        height:180px;
        margin-top:22px;

    }

    .img-2{

        height:120px;

    }

    .img-3{

        height:100px;

    }

    .img-4{

        height:210px;
        margin-top:-65px;

    }

}


/* ---------- Small Mobile ---------- */
@media (max-width:576px){

    .about-intro{

        padding:120px 20px 55px;

        gap:14px;

    }

    .about-intro-content h1{

        font-size:2rem;

        margin-bottom:16px;

    }

    .about-intro-content p{

        margin-bottom:20px;

    }

    .about-collage{

        max-width:330px;

        gap:10px;

    }

    .collage-img{

        border-radius:18px;

    }

    .img-1{

        height:145px;
        margin-top:18px;

    }

    .img-2{

        height:95px;

    }

    .img-3{

        height:85px;

    }

    .img-4{

        height:170px;
        margin-top:-52px;

    }

}


/* ---------- Extra Small ---------- */
@media (max-width:400px){

    .about-intro{

        padding:50px 18px;

        gap:12px;

    }

    .about-intro-content h1{

        font-size:1.8rem;

    }

    .about-collage{

        max-width:290px;

        gap:8px;

    }

    .collage-img{

        border-radius:14px;

    }

    .img-1{

        height:125px;
        margin-top:15px;

    }

    .img-2{

        height:82px;

    }

    .img-3{

        height:72px;

    }

    .img-4{

        height:145px;
        margin-top:-42px;

    }

}




/*-------------------------
       ROOMS PAGE         |
--------------------------/*

/* =========================================
   🌟 ROOMS INTRO
========================================= */

.rooms-intro{
    position:relative;

    min-height:100vh;

    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;

    gap:80px;

    padding:90px 60px;

    background:var(--color-premium);

    overflow:hidden;
}

/* =====================
   LEFT CONTENT
===================== */

.rooms-intro-content{

    max-width:620px;

}

.rmm{
    display:flex;
    align-items:center;
    color:#fff;
}

.rmm::before{
    content:"";
    width:7px;
    height:7px;
    border-radius:50%;
    background:var(--color-text-light);
}

.rmm::after{
    content:"";
    width:60px;
    height:1px;
    background:rgba(255,255,255,.35);
}

.rooms-intro-content h1{

    font-family:var(--special-font);

    font-size:4.5rem;

    font-weight:300;

    line-height:1;

    color:var(--color-text-light);

    margin-bottom:28px;

}

.rooms-intro-content p{

    max-width:520px;

    color:#fff;

    line-height:1.9;

    font-size:1rem;

}


/* =====================
   GALLERY
===================== */

.rooms-intro-gallery{

    position:relative;

    width:100%;

    max-width:620px;

    aspect-ratio:620/430;

    margin-left:auto;

}

/* Main */

.main-image{

    position:absolute;

    top:0;
    right:0;

    width:78%;
    height:100%;

    overflow:hidden;

    border-radius:26px;

}

.main-image img{

    width:100%;
    height:100%;
    object-fit:cover;

    transition:.5s;

}

.main-image:hover img{

    transform:scale(1.05);

}

/* Floating */

.floating-image{

    position:absolute;

    left:0;
    bottom:45px;

    width:42%;
    aspect-ratio:4/5;

    overflow:hidden;

    border-radius:20px;

    border:6px solid #fff;

    box-shadow:0 20px 50px rgba(0,0,0,.18);

}

.floating-image img{

    width:100%;
    height:100%;
    object-fit:cover;

    transition:.5s;

}

.floating-image:hover img{

    transform:scale(1.08);

}




/* =========================================
   📱 RESPONSIVE
========================================= */

/* Laptop */

@media(max-width:1200px){

    .rooms-intro{

        gap:50px;

        padding:80px 40px;

    }

    .rooms-intro-content h1{

        font-size:3.8rem;

    }

}


/* Tablet */

@media(max-width:992px){

    .rooms-intro{

        grid-template-columns:1fr;

        min-height:auto;

        text-align:center;

        gap:40px;

        padding:70px 35px;

    }

    .rooms-intro-content{

        max-width:700px;

        margin:auto;

    }

    .rooms-intro-content p{

        max-width:100%;

    }

    .rmm{

        justify-content:center;

    }

    .rooms-intro-gallery{

        max-width:500px;

        margin:auto;

    }

}


/* Mobile */

@media(max-width:768px){

    .rooms-intro{

        padding:120px 24px 60px;

        gap:28px;

    }

    .rooms-intro-content h1{

        font-size:2.7rem;

        line-height:1.1;

    }

    .rooms-intro-content p{

        font-size:15px;

        line-height:1.8;

    }

    .rooms-intro-gallery{

        max-width:360px;

    }

    .main-image{

        width:80%;

        border-radius:20px;

    }

    .floating-image{

        width:46%;

        bottom:20px;

        border-width:4px;

        border-radius:16px;

    }

}


/* Small Mobile */

@media(max-width:576px){

    .rooms-intro{

        padding:120px 20px 55px;

    }

    .rooms-intro-content h1{

        font-size:2.2rem;

    }

    .rooms-intro-gallery{

        max-width:300px;

    }

    .main-image{

        width:82%;

    }

    .floating-image{

        width:48%;

        bottom:14px;

    }

}


/* Very Small */

@media(max-width:400px){

    .rooms-intro{

        padding:50px 18px;

    }

    .rooms-intro-content h1{

        font-size:1.9rem;

    }

    .rooms-intro-gallery{

        max-width:260px;

    }

}





/* 🌟 ROOMS SECTION */
.rooms-section {
  background: var(--color-primary-light);
  background-image: radial-gradient(#1b22304b 1px, transparent 1px); /* Dot color and size */
  background-size: 20px 20px;
  padding: 70px 60px;
}

/* 🏷 HEADER */
.rooms-headerr {
  margin-bottom: 50px;
}

.roo {
  display: flex;
  align-items: center;
  color: var(--color-premium);
}

.roo::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #1d23307e;
  flex-shrink: 0;
}

.roo::after {
  content: "";
  bottom: 0;
  width: 50%;
  height: 1px;
  background: #1d23307e;
}

.rooms-headerr h2 {
  font-family: var(--special-font);
  font-size: var(--fs-h2);
  font-weight: 300;
  line-height: 1;
  color: #1d1d1d;
  letter-spacing: 1px;
}



/* 🧩 GRID */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

/* 🛏 CARD */
.room-card {
  display: flex;
  flex-direction: column;

  width: 100%;
  min-width: 0;
  height: 460px;
}

/* 🖼 IMAGE */
.room-image {
  width: 100%;
  height: 400px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.54);
  border-bottom: none;
}

.room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.room-card:hover img {
  transform: scale(1.04);
}

/* 📦 CONTENT */
.room-content {
  border: 1px solid rgba(0, 0, 0, 0.54);
  background-color: var(--color-white);
  padding: 18px;
}

/* 📝 TOP META */
.room-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 35px;
}

.room-info {
  font-size: 0.82rem;
  line-height: 1.7;
  color: #444;
  text-transform: uppercase;
}

/* 🛏 ICONS */
.room-icons {
  display: flex;
  gap: 12px;
  color: #888;
  font-size: 1rem;
  margin-top: 2px;
}

/* 🏨 TITLE */
.room-content h3 {
  font-family: var(--special-font);
  font-size: 2.3rem;
  font-weight: 300;
  line-height: 1;
  color: #1d1d1d;
}

/* 💲 PRICE */
.room-price {
  margin-top: 13px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;

  text-decoration: none;
  color: #1d1d1d;

  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;

  transition: 0.3s ease;
}

.room-price span {
  font-size: 1.6rem;
  transition: 0.3s ease;
}

.room-price:hover {
  transform: translateX(3px);
  color: var(--color-premium);
}

.room-price:hover span {
  transform: translateX(3px);
  color: var(--color-premium);
}


/* =========================================
   📱 ROOMS RESPONSIVE
========================================= */

/* ---------- Laptop ---------- */
@media (max-width:1200px){

    .rooms-section{

        padding:70px 40px;

    }

    .rooms-grid{

        gap:22px;

    }

}


/* ---------- Tablet ---------- */
@media (max-width:992px){

    .rooms-section{

        padding:60px 35px;

    }

    .rooms-headerr{

        margin-bottom:40px;

        text-align:center;

    }

    .roo{

        justify-content:center;

    }

    .roo::after{

        width:60px;

    }

    .rooms-headerr h2{

        font-size:clamp(2.8rem,6vw,4rem);

        line-height:1.1;

    }

    .rooms-grid{

        grid-template-columns:repeat(2,1fr);

        gap:24px;

    }

}


/* ---------- Mobile ---------- */
@media (max-width:768px){

    .rooms-section{

        padding:55px 24px;

    }

    .rooms-headerr{

        margin-bottom:35px;

    }

    .rooms-headerr h2{

        font-size:clamp(2.2rem,8vw,3.2rem);

    }

    .rooms-grid{

        grid-template-columns:1fr;

        justify-items:center;

        gap:28px;

    }

    .room-card{

        width:100%;

        max-width:420px;

    }

    .room-content{

        padding:22px;

    }

    .room-meta{

        margin-bottom:22px;

    }

    .room-content h3{

        font-size:2rem;

    }

}


/* ---------- Small Mobile ---------- */
@media (max-width:576px){

    .rooms-section{

        padding:50px 20px;

    }

    .rooms-headerr h2{

        font-size:2rem;

    }

    .room-card{

        max-width:100%;

    }

    .room-content{

        padding:20px;

    }

    .room-meta{

        flex-direction:column;

        gap:10px;

        margin-bottom:18px;

    }

    .room-icons{

        gap:8px;

    }

    .room-content h3{

        font-size:1.8rem;

    }

    .room-price{

        font-size:.92rem;

        gap:10px;

    }

}


/* ---------- Extra Small ---------- */
@media (max-width:400px){

    .rooms-section{

        padding:45px 18px;

    }

    .rooms-headerr h2{

        font-size:1.8rem;

    }

    .room-content{

        padding:18px;

    }

    .room-content h3{

        font-size:1.6rem;

    }

    .room-price{

        font-size:.88rem;

    }

}





/*------------------------
       ROOM PAGE         |
-------------------------/*

/* =========================================
   🌟 ROOM HERO
========================================= */

.room-hero {

    position: relative;

    width: 100%;

    min-height: 100vh;

    height: 100svh;

    overflow: hidden;

}

/* Background */

.room-hero img {

    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

}

/* Overlay */

.room-hero-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(to top,
            rgba(0, 0, 0, .82) 5%,
            rgba(0, 0, 0, .45) 45%,
            rgba(0, 0, 0, .18) 100%);

}

/* Content */

.room-hero-content {

    position: absolute;

    left: 60px;

    bottom: 70px;

    z-index: 5;

    width: min(700px, 90%);

}

/* Tag */

.room-tag {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    color: #fff;

    font-size: .85rem;

    letter-spacing: 2px;

    text-transform: uppercase;

}

.room-tag::before {

    content: "";

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--color-text-light);

}

.room-tag::after {

    content: "";

    width: 60px;
    height: 1px;

    background: rgba(255, 255, 255, .35);

}

/* Heading */

.room-hero-content h1 {

    margin: 22px 0 20px;

    font-family: var(--special-font);

    font-size: 5rem;

    font-weight: 300;

    line-height: .95;

    color: #fff;

}

/* Description */

.room-hero-content p {

    max-width: 600px;

    color: rgba(255, 255, 255, .9);

    line-height: 1.9;

    font-size: 1rem;

}


/* =========================================
   📱 ROOM HERO RESPONSIVE
========================================= */

/* Laptop */

@media (max-width:1200px) {

    .room-hero-content {

        left: 40px;

        bottom: 60px;

    }

    .room-hero-content h1 {

        font-size: 4.2rem;

    }

}


/* Tablet */

@media (max-width:992px) {

    .room-hero {

        min-height: 80vh;

    }

    .room-hero-content {

        left: 35px;

        bottom: 50px;

        width: 85%;

    }

    .room-hero-content h1 {

        font-size: 3.4rem;

    }

    .room-hero-content p {

        font-size: .95rem;

    }

}


/* Mobile */

@media (max-width:768px) {

    .room-hero {

        min-height: 70vh;

    }

    .room-hero-content {

        left: 24px;

        right: 24px;

        bottom: 40px;

        width: auto;

    }

    .room-tag {

        font-size: .75rem;

    }

    .room-hero-content h1 {

        font-size: 2.6rem;

        line-height: 1.05;

        margin: 16px 0;

    }

    .room-hero-content p {

        font-size: .92rem;

        line-height: 1.75;

    }

}


/* Small Mobile */

@media (max-width:576px) {

    .room-hero {

        min-height: 60vh;

    }

    .room-hero-content {

        left: 20px;

        right: 20px;

        bottom: 30px;

    }

    .room-hero-content h1 {

        font-size: 2.1rem;

    }

    .room-hero-content p {

        font-size: .88rem;

    }

}


/* Extra Small */

@media (max-width:400px) {

    .room-hero {

        min-height: 55vh;

    }

    .room-hero-content {

        left: 18px;

        right: 18px;

        bottom: 24px;

    }

    .room-hero-content h1 {

        font-size: 1.8rem;

    }

}


/* ==========================
   ROOM OVERVIEW
========================== */

.room-overview {
    padding: 70px 60px;

    background: var(--color-primary-light);
    background-image: radial-gradient(#1b22304b 1px, transparent 1px);
    /* Dot color and size */
    background-size: 20px 20px;
}

/* HEADER */

.overview-top {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 80px;

    margin-bottom: 50px;
}


.over {
    display: flex;
    align-items: center;
    color: var(--color-premium);
}

.over::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #1d23307e;
    flex-shrink: 0;
}

.over::after {
    content: "";
    bottom: 0;
    width: 50%;
    height: 1px;
    background: #1d23307e;
}


.overview-title h2 {
    font-family: var(--special-font);

    font-size: 4.3rem;
    font-weight: 300;

    line-height: .95;

    color: var(--color-premium);
}

.overview-text {
    display: flex;
    align-items: flex-end;
}

.overview-text p {
    color: #666;

    line-height: 1.9;

    max-width: 520px;
}

/* ==========================
   ROOM HIGHLIGHTS
========================== */

.room-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 25px;

    margin-bottom: 25px;
}

.highlight-item {
    display: flex;
    align-items: center;

    gap: 18px;

    padding: 25px;

    border: 1px solid #0b1320ac;

    border-radius: 20px;

    transition: .3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
}

.highlight-item i {
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--color-premium);

    color: #fff;

    font-size: 1.2rem;

    flex-shrink: 0;
}

.highlight-item span {
    display: block;

    margin-bottom: 5px;

    font-size: .75rem;

    text-transform: uppercase;
    letter-spacing: 1.5px;

    color: #0b1320;
}

.highlight-item strong {
    font-size: 1rem;
    font-weight: 500;

    color: #0b1320;
}

/* ==========================
   AMENITIES
========================== */

.amenities-wrapper {
    margin-top: 50px;
}

.amenities-wrapper h3 {
    font-family: var(--special-font);

    font-size: 2.8rem;
    font-weight: 300;

    color: var(--color-premium);

    margin-bottom: 25px;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}

.amenity-item {
    display: flex;
    align-items: center;

    gap: 15px;

    padding: 22px;

    background: #fff;

    border: 1px solid rgba(0, 0, 0, 0.248);
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;

    border-radius: 18px;

    transition: .3s ease;
}

.amenity-item:hover {
    background: #faf7f2;
    transform: translateY(-4px);
}

.amenity-item i {
    color: var(--color-premium);

    font-size: 1.1rem;

    width: 24px;
    text-align: center;
}

.amenity-item span {
    color: #444;
}

/* ==========================
   BOOKING BAR
========================== */

.room-booking-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-top: 50px;

    padding: 40px;

    background: var(--color-primary-light);
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    border-radius: 24px;
}

.price span {
    display: block;

    font-size: .75rem;
    letter-spacing: 2px;
    text-transform: uppercase;

    color: #888;
}

.price h3 {
    font-family: var(--special-font);

    font-size: 4rem;
    font-weight: 300;

    color: var(--color-premium);

    line-height: 1;
}

.price small {

    margin-bottom: 30px;
    color: #777;
}

.book-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 18px 35px;

    border-radius: 50px;

    text-decoration: none;

    background: var(--color-premium);
    color: #fff;

    transition: .3s ease;
}

.book-btn:hover {
    transform: translateY(-4px);
}

.book-btn i {
    font-size: 1.2rem;
}

.room-gallery{
    display:flex;
    gap:20px;
    overflow-x:auto;
    padding-bottom:12px;
    margin-top:50px;
    scroll-behavior:smooth;
}

.room-gallery::-webkit-scrollbar{
    height:3px;
}

.room-gallery::-webkit-scrollbar-thumb{
    background: var(--color-premium);
    border-radius:20px;
}

.gallery-card{

    min-width:340px;

    border-radius:22px;

    overflow:hidden;

    background:#fff;

    cursor:pointer;

}

.gallery-card img{

    width:100%;
    height:260px;

    object-fit:cover;

    transition:.35s;

}

.gallery-card:hover img{

    transform:scale(1.05);

}

.gallery-card span{

    display:block;

    padding:18px;

    font-weight:600;

}

.gallery-lightbox{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.94);

    display:flex;

    justify-content:center;

    align-items:center;

    flex-direction:column;

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:99999;

}

.gallery-lightbox.active{

    opacity:1;

    visibility:visible;

}

.lightbox-image{

    max-width:88%;

    max-height:78vh;

    border-radius:20px;

    box-shadow:0 30px 60px rgba(0,0,0,.45);

    animation:zoom .35s;

}

@keyframes zoom{

    from{

        transform:scale(.9);

        opacity:0;

    }

    to{

        transform:scale(1);

        opacity:1;

    }

}

.gallery-close{

    position:absolute;

    top:25px;

    right:35px;

    color:#fff;

    font-size:44px;

    cursor:pointer;

    transition:.3s;

}

.gallery-close:hover{

    transform:rotate(90deg);

}

.gallery-prev,
.gallery-next{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(10px);

    color:#fff;

    font-size:20px;

    cursor:pointer;

    transition:.3s;

}

.gallery-prev:hover,
.gallery-next:hover{

    background:#b89b67;

}

.gallery-prev{

    left:35px;

}

.gallery-next{

    right:35px;

}

.gallery-bottom{

    margin-top:20px;

    text-align:center;

    color:#fff;

}

.gallery-caption{

    font-size:18px;

    font-weight:600;

}

.gallery-counter{

    margin-top:8px;

    color:#cfcfcf;

    font-size:14px;

}


/* ========================================
   📱 ROOM OVERVIEW RESPONSIVE
========================================= */

/* ---------- Laptop ---------- */

@media (max-width:1200px) {

    .room-overview {

        padding: 70px 40px;

    }

    .overview-top {

        gap: 50px;

    }

    .overview-title h2 {

        font-size: 3.7rem;

    }

}


/* ---------- Tablet ---------- */

@media (max-width:992px) {

    .room-overview {

        padding: 60px 35px;

    }

    /* Header */

    .overview-top {

        grid-template-columns: 1fr;

        gap: 24px;

        margin-bottom: 40px;

    }

    .overview-title {

        text-align: center;

    }

    .over {

        justify-content: center;

    }

    .over::after {

        width: 60px;

    }

    .overview-title h2 {

        font-size: 3rem;

    }

    .overview-text {

        justify-content: center;

        text-align: center;

    }

    .overview-text p {

        max-width: 700px;

    }

    /* Highlights */

    .room-highlights {

        grid-template-columns: repeat(2, 1fr);

    }

    /* Booking */

    .room-booking-bar {

        padding: 30px;

    }

    /* Amenities */

    .amenities-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}


/* ---------- Mobile ---------- */

@media (max-width:768px) {

    .room-overview {

        padding: 55px 24px;

    }

    .overview-title h2 {

        font-size: 2.4rem;

        line-height: 1.1;

    }

    .overview-text p {

        font-size: 15px;

        line-height: 1.8;

    }

    /* Highlights */

    .room-highlights {

        grid-template-columns: 1fr;

        gap: 18px;

    }

    .highlight-item {

        padding: 20px;

    }

    .highlight-item i {

        width: 50px;
        height: 50px;

        font-size: 1rem;

    }

    /* Booking */

    .room-booking-bar {

        flex-direction: column;

        text-align: center;

        gap: 28px;

        padding: 28px 22px;

    }

    .price h3 {

        font-size: 3rem;

    }

    .book-btn {

        width: 100%;

        justify-content: center;

    }

    /* Amenities */

    .amenities-wrapper {

        margin-top: 40px;

    }

    .amenities-wrapper h3 {

        text-align: center;

        font-size: 2.2rem;

    }

    .amenities-grid {

        grid-template-columns: 1fr;

    }

    .amenity-item {

        padding: 18px;

    }
}

/* ---------- Small Mobile ---------- */

@media (max-width:576px) {

    .room-overview {

        padding: 50px 20px;

    }

    .overview-title h2 {

        font-size: 2rem;

    }

    .price h3 {

        font-size: 2.5rem;

    }

    .book-btn {

        padding: 16px 24px;

    }

    .amenities-wrapper h3 {

        font-size: 2rem;

    }

    .highlight-item {

        gap: 15px;

    }

}


/* ---------- Extra Small ---------- */

@media (max-width:400px) {

    .room-overview {

        padding: 45px 18px;

    }

    .overview-title h2 {

        font-size: 1.8rem;

    }

    .price h3 {

        font-size: 2.2rem;

    }

    .highlight-item {

        padding: 18px;

    }

    .amenity-item {

        padding: 16px;

    }

}


@media (max-width:768px){

    .gallery-card{

        min-width:280px;

    }

    .gallery-card img{

        height:220px;

    }

}





/*------------------------
       GALLERY PAGE      |
-------------------------/*

/* ==========================
   GALLERY HERO
========================== */

.gallery-hero {
  min-height: 100vh;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 60px;

  padding: 70px 60px;

  background: var(--color-primary-light);
  background-image: radial-gradient(#1b22304b 1px, transparent 1px);
  /* Dot color and size */
  background-size: 20px 20px;

  overflow: hidden;
}


/* LEFT */

.gallery-content {
  width: 450px;
  flex-shrink: 0;
}

.gal {
  display: flex;
  align-items: center;
  color: var(--color-premium);
}

.gal::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #1d23307e;
  flex-shrink: 0;
}

.gal::after {
  content: "";
  bottom: 0;
  width: 50%;
  height: 1px;
  background: #1d23307e;
}


.gallery-content h1 {
  font-family: var(--special-font);
  font-size: 4.3rem;
  font-weight: 300;
  line-height: 1;
  color: var(--color-premium);
  letter-spacing: 1px;
  margin-bottom: 28px;
}

.gallery-content p {
  max-width: 520px;

  font-size: 1rem;
  line-height: 1.9;

  color: #555;

  margin-bottom: 32px;
}


/* RIGHT */

.gallery-strip {
  flex: 1;
  overflow-x: auto;

  scrollbar-width: none;
}

.gallery-strip::-webkit-scrollbar {
  display: none;
}

.strip-track {
  display: flex;
  align-items: flex-start;

  gap: 25px;

  width: max-content;

  padding: 20px 0;
}

/* IMAGE */

.strip-image {
  width: 280px;
  height: 400px;

  flex-shrink: 0;

  overflow: hidden;

  border-radius: 24px;

  cursor: pointer;

  transition: .4s ease;
}

.offset-down {
  margin-top: 90px;
}

.strip-image:hover {
  transform: translateY(-10px);
}

.strip-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: .6s ease;
}

.strip-image:hover img {
  transform: scale(1.08);
}



.gallery-lightbox {
  position: fixed;
  inset: 0;

  background: rgba(0, 0, 0, .95);

  display: none;

  align-items: center;
  justify-content: center;

  z-index: 9999;
}

.gallery-lightbox.active {
  display: flex;
}

.gallery-lightbox img {
  max-width: 90%;
  max-height: 90vh;

  border-radius: 12px;
}

.gallery-close {
  position: absolute;

  top: 25px;
  right: 40px;

  color: #fff;

  font-size: 3rem;

  cursor: pointer;
}


/* =========================================
   📱 GALLERY HERO RESPONSIVE
========================================= */

/* ---------- Laptop ---------- */
@media (max-width:1200px){

    .gallery-hero{

        padding:70px 40px;

        gap:40px;

    }

    .gallery-content{

        width:380px;

    }

    .gallery-content h1{

        font-size:3.8rem;

    }

}


/* ---------- Tablet ---------- */
@media (max-width:992px){

    .gallery-hero{

        min-height:auto;

        flex-direction:column;

        gap:40px;

        padding:70px 35px;

        text-align:center;

    }

    .gallery-content{

        width:100%;

        max-width:700px;

    }

    .gallery-content p{

        max-width:100%;

    }

    .gal{

        justify-content:center;

    }

    .gal::after{

        width:60px;

    }

    .gallery-strip{

        width:100%;

    }

}


/* ---------- Mobile ---------- */
@media (max-width:768px){

    .gallery-hero{

        padding:120px 24px 60px;

        gap:28px;

    }

    .gallery-content h1{

        font-size:clamp(2.4rem,8vw,3.4rem);

        line-height:1.1;

    }

    .gallery-content p{

        font-size:15px;

        line-height:1.8;

        margin-bottom:0;

    }

    .gallery-strip{

        overflow-x:auto;

        scroll-snap-type:x mandatory;

        scroll-padding-inline:24px;

        -webkit-overflow-scrolling:touch;

    }

    .strip-track{

        gap:18px;

        padding:10px 0 20px;

    }

    .strip-image{

        width:220px;

        height:320px;

        scroll-snap-align:start;

        scroll-snap-stop:always;

    }

    .offset-down{

        margin-top:50px;

    }

}


/* ---------- Small Mobile ---------- */
@media (max-width:576px){

    .gallery-hero{

        padding:120px 20px 55px;

    }

    .gallery-content h1{

        font-size:2rem;

    }

    .strip-track{

        gap:14px;

    }

    .strip-image{

        width:180px;

        height:260px;

        border-radius:18px;

    }

    .offset-down{

        margin-top:40px;

    }

}


/* ---------- Extra Small ---------- */
@media (max-width:400px){

    .gallery-hero{

        padding:50px 18px;

    }

    .gallery-content h1{

        font-size:1.8rem;

    }

    .strip-image{

        width:160px;

        height:230px;

        border-radius:16px;

    }

    .offset-down{

        margin-top:30px;

    }

}




/*-------------------------
       BLOGS PAGE         |
--------------------------/*

/* ==========================
   BLOG COVER HERO
========================== */

.blog-cover {
  min-height: 100vh;

  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 90px 60px 70px;

  background: var(--color-premium);
  color: var(--color-white);

  overflow: hidden;

  position: relative;
}

/* EYEBROW */

/* EYEBROW */
.bloo{
  display: flex;
  align-items: center;
  color: var(--color-white);
}

.bloo::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-text-light);
  flex-shrink: 0;
}

.bloo::after {
  content: "";
  bottom: 0;
  width: 50%;
  height: 1px;
  background: rgba(255, 255, 255, 0.45);
}

/* TITLE + SIDE TEXT */
.blog-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 60px;

  margin-bottom: 60px;
}

.blog-title-row h1 {
  font-family: var(--special-font);
  font-size: 4.3rem;
  font-weight: 300;
  line-height: 1;
  color: var(--color-text-light);
  letter-spacing: 1px;
}

.blog-side-text {
  max-width: 520px;

  font-size: 1rem;
  line-height: 1.9;

  color: var(--color-white);

  margin-bottom: 32px;
}

/* DIVIDER */

.blog-divider {
  width: 100%;
  height: 1px;

  background: rgba(255, 255, 255, 0.315);

  margin-bottom: 35px;
}

/* BOTTOM */

.blog-cover-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}

/* LABEL */

.blog-label {
  display: block;

  margin-bottom: 12px;

  font-size: .8rem;
  letter-spacing: 2px;
  text-transform: uppercase;

  color: #ffffff;
}

/* SUBTITLE */

.blog-cover-bottom h3 {
  font-family: var(--special-font);

  font-size: 2rem;
  font-weight: 300;

  line-height: 1.2;

  color: #ffffff;
}

/* SCROLL */

.scroll-indicator {
  display: flex;
  align-items: center;
  gap: 12px;

  text-decoration: none;

  color: var(--color-text-light);

  font-size: .95rem;
  letter-spacing: 1px;
}

.scroll-indicator span {
  font-size: 1.2rem;

  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(5px);
  }

  60% {
    transform: translateY(2px);
  }

}

/* =========================================
   📱 BLOG COVER RESPONSIVE
========================================= */

/* ---------- Laptop ---------- */
@media (max-width:1200px){

    .blog-cover{

        padding:80px 40px 60px;

    }

    .blog-title-row{

        gap:40px;

    }

    .blog-title-row h1{

        font-size:3.8rem;

    }

}


/* ---------- Tablet ---------- */
@media (max-width:992px){

    .blog-cover{

        min-height:auto;

        padding:70px 35px 60px;

    }

    .blog-title-row{

        flex-direction:column;

        align-items:flex-start;

        gap:20px;

        margin-bottom:45px;

    }

    .blog-title-row h1{

        font-size:clamp(2.8rem,6vw,4rem);

        line-height:1.1;

    }

    .blog-side-text{

        max-width:100%;

        margin-bottom:0;

    }

    .blog-cover-bottom{

        gap:30px;

    }

}


/* ---------- Mobile ---------- */
@media (max-width:768px){

    .blog-cover{

        padding:120px 24px 60px;

    }

    .bloo{

        justify-content:center;

    }

    .bloo::after{

        width:60px;

    }

    .blog-title-row{

        text-align:center;

        align-items:center;

        margin-bottom:35px;

    }

    .blog-title-row h1{

        font-size:clamp(2.4rem,8vw,3.4rem);

    }

    .blog-side-text{

        font-size:15px;

        line-height:1.8;

    }

    .blog-cover-bottom{

        flex-direction:column;

        align-items:center;

        text-align:center;

        gap:25px;

    }

    .blog-cover-bottom h3{

        font-size:1.8rem;

    }

}


/* ---------- Small Mobile ---------- */
@media (max-width:576px){

    .blog-cover{

        padding:120px 20px 55px;

    }

    .blog-title-row h1{

        font-size:2rem;

    }

    .blog-cover-bottom h3{

        font-size:1.6rem;

    }

    .scroll-indicator{

        font-size:.9rem;

    }

}


/* ---------- Extra Small ---------- */
@media (max-width:400px){

    .blog-cover{

        padding:50px 18px;

    }

    .blog-title-row h1{

        font-size:1.8rem;

    }

    .blog-cover-bottom h3{

        font-size:1.4rem;

    }

    .blog-label{

        font-size:.75rem;

    }

}



/* 🌟 BLOGS SECTION */
.blogs-section {
  padding: 70px 60px;
  background: var(--color-primary-light);
  background-image: radial-gradient(#1b22304b 1px, transparent 1px); /* Dot color and size */
  background-size: 20px 20px;
}

/* 🏷 HEADER */
.blogs-headerr {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;

  margin-bottom: 55px;
}

.blo {
  display: flex;
  align-items: center;
  color: var(--color-premium);
}

.blo::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #1d23307e;
  flex-shrink: 0;
}

.blo::after {
  content: "";
  bottom: 0;
  width: 50%;
  height: 1px;
  background: #1d23307e;
}

/* 🏨 TITLE */
.blogs-headerr h2 {
  font-family: var(--special-font);
  font-size: var(--fs-h2);
  font-weight: 300;
  line-height: 1;

  color: var(--color-premium);
}


/* 🧩 BLOG GRID */
.blogs-wrapper{

    display:grid;

    grid-template-columns:repeat(3,minmax(0,1fr));

    gap:28px;

}

.blogs-wrapper::-webkit-scrollbar {
  display: none;
}

.blog-card{

    display:flex;

    flex-direction:column;

    width:100%;

    background:#fff;

    overflow:hidden;

    transition:.35s ease;

}

.blog-card:hover {
  transform: translateY(-6px);
}

/* 🖼 IMAGE */
.blog-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.blog-card:hover img {
  transform: scale(1.05);
}

/* ✨ CONTENT */
.blog-content {
  padding: 28px;
}

/* 📍 META */
.blog-meta {
  display: flex;
  justify-content: space-between;

  margin-bottom: 18px;

  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1px;

  color: #777;
}

/* 🏨 TITLE */
.blog-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 1.1;

  color: #1d1d1d;

  margin-bottom: 18px;
}

/* 📝 TEXT */
.blog-content p {
  font-size: 0.95rem;
  line-height: 1.8;

  color: #555;

  margin-bottom: 25px;
}

/* 🔗 LINK */
.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  text-decoration: none;
  color: #1d1d1d;

  font-size: 0.95rem;
  font-weight: 600;
}

.blog-link span {
  font-size: 1.3rem;
  transition: 0.3s ease;
}

.blog-link:hover span {
  transform: translateX(6px);
}


/* =========================================
   📱 BLOGS RESPONSIVE
========================================= */

/* ---------- Laptop ---------- */
@media (max-width:1200px){

    .blogs-section{

        padding:70px 40px;

    }

    .blogs-wrapper{

        gap:24px;

    }

}


/* ---------- Tablet ---------- */
@media (max-width:992px){

    .blogs-section{

        padding:60px 35px;

    }

    .blogs-headerr{

        justify-content:center;

        text-align:center;

        margin-bottom:40px;

    }

    .blo{

        justify-content:center;

    }

    .blo::after{

        width:60px;

    }

    .blogs-headerr h2{

        font-size:clamp(2.8rem,6vw,4rem);

        line-height:1.1;

    }

    .blogs-wrapper{

        grid-template-columns:repeat(2,1fr);

        gap:24px;

    }

}


/* ---------- Mobile ---------- */
@media (max-width:768px){

    .blogs-section{

        padding:55px 24px;

    }

    .blogs-headerr{

        margin-bottom:35px;

    }

    .blogs-headerr h2{

        font-size:clamp(2.2rem,8vw,3.3rem);

    }

    .blogs-wrapper{

        grid-template-columns:1fr;

        gap:28px;

        justify-items:center;

    }

    .blog-card{

        max-width:420px;

    }

    .blog-image{

        aspect-ratio:16/10;

        height:auto;

    }

    .blog-content{

        padding:22px;

    }

    .blog-content h3{

        font-size:1.9rem;

    }

}


/* ---------- Small Mobile ---------- */
@media (max-width:576px){

    .blogs-section{

        padding:50px 20px;

    }

    .blogs-headerr h2{

        font-size:2rem;

    }

    .blog-card{

        max-width:100%;

    }

    .blog-content{

        padding:20px;

    }

    .blog-meta{

        font-size:.72rem;

    }

    .blog-content h3{

        font-size:1.7rem;

    }

    .blog-content p{

        font-size:.92rem;

    }

}


/* ---------- Extra Small ---------- */
@media (max-width:400px){

    .blogs-section{

        padding:45px 18px;

    }

    .blogs-headerr h2{

        font-size:1.8rem;

    }

    .blog-content{

        padding:18px;

    }

    .blog-content h3{

        font-size:1.5rem;

    }

    .blog-link{

        font-size:.9rem;

    }

}



/*------------------------
       BLOG PAGE         |
-------------------------/*
/* ==========================
BLOG HERO
========================== */
body {
    background: var(--color-primary-light);
    background-image: radial-gradient(#1b22304b 1px, transparent 1px);
    /* Dot color and size */
    background-size: 20px 20px;
}

.blog-detail-hero {
    padding: 120px 60px 60px;
    margin: auto;
    max-width: 1100px;
}

.blog-meta {
    display: flex;
    gap: 25px;

    margin-bottom: 25px;

    color: #777;

    font-size: .85rem;

    text-transform: uppercase;

    letter-spacing: 2px;
}

.blog-detail-hero h1 {
    font-family: var(--special-font);

    font-size: 5.5rem;
    font-weight: 300;

    line-height: .95;

    margin-bottom: 25px;

    color: var(--color-premium);
}

.blog-detail-hero p {
    max-width: 650px;

    line-height: 1.9;

    color: #666;
}

/* ==========================
FEATURED IMAGE
========================== */

.blog-featured-image {
    padding: 0 160px;
}

.blog-featured-image img {
    width: 100%;
    height: 350px;

    object-fit: cover;

    border-radius: 30px;
}

/* ==========================
CONTENT
========================== */

.blog-content {
    max-width: 850px;

    margin: 90px auto;

    padding: 0 20px;
}

.blog-content .lead {
    font-size: 1.35rem;

    line-height: 1.8;

    color: var(--color-premium);

    margin-bottom: 40px;
}

.blog-content p {
    line-height: 2;

    color: #555;

    margin-bottom: 30px;
}

.blog-content h2 {
    font-family: var(--special-font);
    color: var(--color-premium);

    font-size: 3rem;
    font-weight: 300;

    margin-bottom: 25px;
}

/* QUOTE */

blockquote {
    font-family: var(--special-font);

    font-size: 3rem;
    font-weight: 300;

    line-height: 1.2;

    margin: 70px 0;

    padding-left: 40px;

    border-left: 3px solid var(--color-premium);

    color: var(--color-premium);
}

/* ==========================
IMAGE BREAK
========================== */

.content-image {
    max-width: 1200px;

    margin: 0 auto 90px;

    padding: 0 160px;
}

.content-image img {
    width: 100%;
    height: 350px;

    object-fit: cover;

    border-radius: 30px;
}

.content-image span {
    display: block;

    margin-top: 15px;

    color: #777;

    text-align: center;
}

/* ==========================
GALLERY
========================== */

.story-gallery {
    padding: 0 60px 100px;
}

.story-gallery h2 {
    font-family: var(--special-font);

    color: var(--color-premium);

    font-size: 4rem;
    font-weight: 300;

    text-align: center;

    margin-bottom: 50px;
}

.story-grid {
    columns: 2;
    column-gap: 25px;
}

.story-grid img {
    width: 100%;

    margin-bottom: 25px;

    border-radius: 25px;

    display: block;
}

/* ==========================
AUTHOR
========================== */

.blog-author {
    max-width: 850px;

    margin: 0 auto 100px;

    padding: 40px 40px 10px;

    background: #ffffff;
    border: 1px solid var(--color-premium);

    border-radius: 30px;

    display: flex;
    align-items: center;

    gap: 30px;
}

.blog-author img {
    width: 90px;
    height: 90px;

    border-radius: 50%;
}

.blog-author span {
    text-transform: uppercase;

    letter-spacing: 2px;

    color: #999;
}

.blog-author h3 {
    margin: 10px 0;
    color: var(--color-premium);

    font-size: 1.5rem;
}

.blog-author p {
    color: #666;
}

/* ==========================
RELATED POSTS
========================== */

.related-posts {
    border-top: 1px solid var(--color-premium);
    padding: 70px 60px;
}

.related-header {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 50px;
}

.related-header h2 {
    font-family: var(--special-font);
    color: var(--color-premium);
    font-size: 4rem;
    font-weight: 300;
}

.related-header a {
    text-decoration: none;

    color: var(--color-premium);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 30px;
}

.related-card {
    background: #fff;

    overflow: hidden;

    border-radius: 25px;
}

.related-card img {
    width: 100%;
    height: 280px;

    object-fit: cover;
}

.related-card div {
    padding: 25px;
}

.related-card span {
    color: #888;

    text-transform: uppercase;

    letter-spacing: 2px;

    font-size: .8rem;
}

.related-card h3 {
    margin-top: 15px;
    color: var(--color-premium);

    font-size: 1.5rem;

    line-height: 1.4;
}


/* =========================================
   📱 BLOG DETAILS RESPONSIVE
========================================= */

/* ---------- Laptop ---------- */

@media (max-width:1200px){

    .blog-detail-hero{

        padding:110px 40px 50px;

    }

    .blog-detail-hero h1{

        font-size:4.5rem;

    }

    .story-gallery{

        padding:0 40px 90px;

    }

    .related-posts{

        padding:70px 40px;

    }

}


/* ---------- Tablet ---------- */

@media (max-width:992px){

    /* Hero */

    .blog-detail-hero{

        padding:100px 35px 50px;

    }

    .blog-detail-hero h1{

        font-size:3.5rem;

        line-height:1.05;

    }

    .blog-detail-hero p{

        max-width:100%;

    }

    .blog-meta{

        flex-wrap:wrap;

        gap:12px;

    }

    /* Images */

    .blog-featured-image img,
    .content-image img{

        height:300px;

    }

    /* Content */

    .blog-content{

        margin:70px auto;

    }

    .blog-content h2{

        font-size:2.6rem;

    }

    blockquote{

        font-size:2.4rem;

        padding-left:25px;

    }

    /* Gallery */

    .story-gallery h2{

        font-size:3rem;

    }

    /* Author */

    .blog-author{

        margin:0 35px 80px;

    }

    /* Related */

    .related-header h2{

        font-size:3rem;

    }

}


/* ---------- Mobile ---------- */

@media (max-width:768px){

    /* Hero */

    .blog-detail-hero{

        padding:90px 24px 40px;

    }

    .blog-meta{

        justify-content:center;

        text-align:center;

        font-size:.72rem;

        gap:10px;

    }

    .blog-detail-hero{

        text-align:center;

    }

    .blog-detail-hero h1{

        font-size:2.6rem;

    }

    .blog-detail-hero p{

        font-size:15px;

        line-height:1.8;

    }

    /* Images */

    .blog-featured-image img,
    .content-image img{

        height:220px;

        border-radius:20px;

    }

    /* Content */

    .blog-content{

        margin:55px auto;

        padding:0 24px;

    }

    .blog-content .lead{

        font-size:1.15rem;

    }

    .blog-content h2{

        font-size:2rem;

    }

    .blog-content p{

        line-height:1.8;

    }

    blockquote{

        font-size:1.8rem;

        margin:45px 0;

        padding-left:18px;

    }

    /* Story */

    .story-gallery{

        padding:0 24px 70px;

    }

    .story-gallery h2{

        font-size:2.3rem;

        margin-bottom:30px;

    }

    .story-grid{

        columns:1;

        column-gap:0;

    }

    /* Author */

    .blog-author{

        margin:0 24px 70px;

        padding:25px;

        flex-direction:column;

        text-align:center;

    }

    .blog-author img{

        width:80px;

        height:80px;

    }

    /* Related */

    .related-posts{

        padding:60px 24px;

    }

    .related-header{

        flex-direction:column;

        align-items:center;

        text-align:center;

        gap:15px;

    }

    .related-header h2{

        font-size:2.4rem;

    }

    .related-grid{

        grid-template-columns:1fr;

    }

}


/* ---------- Small Mobile ---------- */

@media (max-width:576px){

    .blog-detail-hero{

        padding:80px 20px 35px;

    }

    .blog-detail-hero h1{

        font-size:2rem;

    }

    .blog-featured-image img,
    .content-image img{

        height:180px;

    }

    .blog-content{

        padding:0 20px;

    }

    .blog-content h2{

        font-size:1.8rem;

    }

    blockquote{

        font-size:1.5rem;

    }

    .story-gallery{

        padding:0 20px 60px;

    }

    .story-gallery h2{

        font-size:2rem;

    }

    .blog-author{

        margin:0 20px 60px;

        padding:22px;

    }

    .related-posts{

        padding:50px 20px;

    }

    .related-header h2{

        font-size:2rem;

    }

    .related-card img{

        height:220px;

    }

}


/* ---------- Extra Small ---------- */

@media (max-width:400px){

    .blog-detail-hero{

        padding:75px 18px 30px;

    }

    .blog-detail-hero h1{

        font-size:1.8rem;

    }

    .blog-featured-image img,
    .content-image img{

        height:160px;

    }

    .blog-content{

        padding:0 18px;

    }

    .blog-content .lead{

        font-size:1rem;

    }

    .blog-content h2{

        font-size:1.6rem;

    }

    blockquote{

        font-size:1.3rem;

    }

    .story-gallery{

        padding:0 18px 50px;

    }

    .blog-author{

        margin:0 18px 50px;

    }

    .related-posts{

        padding:45px 18px;

    }

}


/*-------------------------
       CONTACT PAGE       |
--------------------------/*

/* ==========================
   CONTACT HERO
========================== */

.contact-hero {
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 80px;

    padding: 90px 60px 70px;

    background: var(--color-primary-light);
    background-image:
        radial-gradient(#1b22304b 1px, transparent 1px);

    background-size: 20px 20px;

    position: relative;

    overflow: hidden;
}


/* LEFT CONTENT */

.contact-hero-content {
    flex: 1;
    max-width: 650px;

    position: relative;
    z-index: 2;
}

/* EYEBROW */

.conn {
    display: flex;
    align-items: center;

    color: var(--color-premium);
}

.conn::before {
    content: "";

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #1d23307e;

    flex-shrink: 0;
}

.conn::after {
    content: "";

    width: 60px;
    height: 1px;

    background: #1d23307e;
}

/* HEADING */

.contact-hero-content h1 {
    font-family: var(--special-font);

    font-size: 5rem;
    font-weight: 300;

    line-height: .88;
    letter-spacing: -1px;

    color: var(--color-premium);

    margin: 25px 0 30px;
}

/* TEXT */

.contact-hero-content p {
    max-width: 560px;

    line-height: 1.9;

    color: #666;
}

/* BADGE */

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-top: 30px;

    padding: 12px 18px;

    border-radius: 50px;

    background: rgba(255, 255, 255, .7);

    backdrop-filter: blur(10px);

    color: var(--color-premium);

    font-size: .9rem;

    border: 1px solid rgba(0, 0, 0, .05);
}

/* ==========================
   CONTACT CARD
========================== */

.contact-info-panel {
    width: 420px;

    background: rgba(255, 255, 255, .88);

    backdrop-filter: blur(20px);

    border: 1px solid rgba(255, 255, 255, .7);

    border-radius: 30px;

    padding: 35px;

    position: relative;

    z-index: 2;

    box-shadow:
        0 30px 80px rgba(0, 0, 0, .08);
}

/* TOP ACCENT */

.contact-info-panel::before {
    content: "";

    position: absolute;

    top: 0;
    left: 35px;

    width: 90px;
    height: 3px;

    border-radius: 50px;
}

/* ITEMS */

.info-item {
    display: flex;
    align-items: flex-start;

    gap: 18px;

    padding: 22px 0;

    border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.info-item:last-child {
    border: none;
}

/* ICON */

.info-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    background: #f7f3ee;

    color: var(--color-premium);

    font-size: 1rem;
}

/* TEXT */

.info-item span {
    display: block;

    margin-bottom: 8px;

    font-size: .75rem;

    text-transform: uppercase;
    letter-spacing: 2px;

    color: #999;
}

.info-item p {
    color: #1d2330;

    line-height: 1.7;
}

/* ==========================
   RESPONSIVE
========================== */

@media(max-width:992px) {

    .contact-hero {
        flex-direction: column;
        align-items: flex-start;

        min-height: auto;
    }

    .contact-info-panel {
        width: 100%;
        max-width: 600px;
    }

    .contact-hero h1 {
        font-size: 4rem;
    }

    .contact-hero::before {
        display: none;
    }

}

@media(max-width:768px) {

    .contact-hero {
        padding: 80px 20px;
        gap: 50px;
    }

    .contact-hero-content h1 {
        font-size: 3rem;
    }

    .contact-info-panel {
        padding: 25px;
    }

    .info-item {
        gap: 15px;
    }

    .info-icon {
        width: 42px;
        height: 42px;
    }

}



/* ==========================
   CONTACT SECTION
========================== */

.contact-section {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 70px;

    padding: 70px 60px;

    background: var(--color-premium);
    color: var(--color-white);
    overflow: hidden;
    border-bottom: 1px solid white;
}

/* LEFT */

.contact-details {
    flex: 1;
    max-width: 500px;
}

.contact-kicker {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 20px;

    letter-spacing: 2px;
    text-transform: uppercase;

    color: var(--color-white);
}

.contact-kicker::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--color-text-light);
    flex-shrink: 0;
}

.contact-kicker::after {
    content: "";
    bottom: 0;
    width: 50%;
    height: 1px;
    background: rgba(255, 255, 255, 0.45);
}

.contact-details h2 {
    font-family: var(--special-font);
    color: var(--color-text-light);

    font-size: 4rem;
    font-weight: 300;

    line-height: 1;

    margin-bottom: 25px;
}

.contact-details>p {
    line-height: 1.9;
    color: #ffffff;

    margin-bottom: 40px;
}


/* FAQ */
.contact-faq {
    margin-top: 40px;

    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: #faf7f2;
    border-radius: 18px;
    overflow: hidden;
}

.faq-question {
    width: 100%;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 22px 25px;

    background: none;
    border: none;

    cursor: pointer;

    font-size: 1rem;
    text-align: left;

    color: var(--color-premium);
}

.faq-question span {
    font-size: 1.4rem;
    transition: .3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;

    transition: max-height .35s ease;
}

.faq-answer p {
    padding: 0 25px 25px;

    line-height: 1.8;
    color: #666;
}

/* Active */
.faq-item.active .faq-answer {
    max-height: 150px;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
}

.contact-form-wrapper {
    background: #fff;

    padding: 40px;

    border-radius: 28px;

    box-shadow:
        0 15px 50px rgba(0, 0, 0, .06);

    border: 1px solid rgba(0, 0, 0, .05);
}

/* HEADER */

.form-header {
    margin-bottom: 30px;
}

.form-header span {
    display: block;

    margin-bottom: 8px;

    font-size: .75rem;
    letter-spacing: 2px;
    text-transform: uppercase;

    color: var(--color-premium);
}

.form-header h3 {
    font-family: var(--special-font);

    font-size: 2rem;
    font-weight: 300;
    color: var(--color-premium);
}

/* ROW */

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

/* GROUP */

.input-group {
    position: relative;

    margin-bottom: 18px;
}

/* INPUTS */

.input-group input,
.input-group textarea,
.input-group select {
    width: 100%;

    padding: 18px 18px;

    border: 1px solid rgba(0, 0, 0, .08);

    border-radius: 16px;

    background: #faf8f4;

    outline: none;

    font-size: .95rem;

    transition: .3s;
}

.input-group textarea {
    resize: none;
}

/* LABELS */

.input-group label {
    position: absolute;

    left: 18px;
    top: 18px;

    pointer-events: none;

    background: #faf8f4;

    padding: 0 5px;

    color: #777;

    transition: .3s;
}

/* FLOAT EFFECT */

.input-group input:focus,
.input-group textarea:focus,
.input-group select:focus {
    color: var(--color-premium);
}

.input-group input:focus+label,
.input-group input:valid+label,
.input-group textarea:focus+label,
.input-group textarea:valid+label,
.input-group select:focus+label,
.input-group select:valid+label {
    top: -10px;
    font-size: .75rem;
    color: var(--color-premium);
}

/* BUTTON */

.submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 16px 32px;

    border: none;

    border-radius: 50px;

    background: var(--color-premium);
    color: #fff;

    cursor: pointer;

    transition: .3s;
}

.submit-btn:hover {
    transform: translateY(-3px);
}

.submit-btn span {
    transition: .3s;
}

.submit-btn:hover span {
    transform: translateX(4px);
}


.alert-success{
    background:#e8fff0;
    color:#0f7a38;
    padding:15px 20px;
    margin-bottom:20px;
    border-radius:10px;
}

.alert-error{
    background:#ffeaea;
    color:#c62828;
    padding:15px 20px;
    margin-bottom:20px;
    border-radius:10px;
}



/* =========================================
   📱 CONTACT SECTION RESPONSIVE
========================================= */

/* ---------- Laptop ---------- */
@media (max-width:1200px){

    .contact-section{

        padding:70px 40px;

        gap:50px;

    }

    .contact-details h2{

        font-size:3.6rem;

    }

}


/* ---------- Tablet ---------- */
@media (max-width:992px){

    .contact-section{

        flex-direction:column;

        align-items:center;

        gap:45px;

        padding:60px 35px;

    }

    .contact-details{

        max-width:700px;

        text-align:center;

    }

    .contact-details > p{

        margin-bottom:30px;

    }

    .contact-kicker{

        justify-content:center;

    }

    .contact-kicker::after{

        width:60px;

    }

    .contact-details h2{

        font-size:clamp(2.8rem,6vw,4rem);

        line-height:1.1;

    }

    .contact-form-wrapper{

        width:100%;

        max-width:700px;

    }

}


/* ---------- Mobile ---------- */
@media (max-width:768px){

    .contact-section{

        padding:55px 24px;

        gap:35px;

    }

    .contact-details h2{

        font-size:clamp(2.2rem,8vw,3.3rem);

    }

    .contact-details > p{

        font-size:15px;

        line-height:1.8;

    }

    .contact-faq{

        gap:12px;

    }

    .faq-question{

        padding:18px 20px;

        font-size:.95rem;

    }

    .faq-answer p{

        padding:0 20px 20px;

        font-size:.92rem;

    }

    .contact-form-wrapper{

        padding:28px 24px;

        border-radius:22px;

    }

    .form-row{

        grid-template-columns:1fr;

        gap:0;

    }

    .form-header{

        text-align:center;

    }

    .form-header h3{

        font-size:1.8rem;

    }

    .submit-btn{

        width:100%;

        justify-content:center;

    }

}


/* ---------- Small Mobile ---------- */
@media (max-width:576px){

    .contact-section{

        padding:50px 20px;

    }

    .contact-details h2{

        font-size:2rem;

    }

    .contact-form-wrapper{

        padding:24px 20px;

        border-radius:18px;

    }

    .input-group input,
    .input-group textarea,
    .input-group select{

        padding:16px;

        font-size:.92rem;

    }

    .input-group label{

        left:16px;

        top:16px;

    }

    .form-header h3{

        font-size:1.6rem;

    }

    .submit-btn{

        padding:15px 24px;

    }

}


/* ---------- Extra Small ---------- */
@media (max-width:400px){

    .contact-section{

        padding:45px 18px;

    }

    .contact-details h2{

        font-size:1.8rem;

    }

    .contact-form-wrapper{

        padding:20px 18px;

    }

    .faq-question{

        padding:16px 18px;

        font-size:.9rem;

    }

    .faq-answer p{

        padding:0 18px 18px;

    }

    .form-header h3{

        font-size:1.4rem;

    }

}




.legal-page{

    padding:80px 60px;
}

.legal-hero{

    max-width:900px;

    margin-bottom:80px;
}

.leg {
    display: flex;
    align-items: center;
    color: var(--color-premium);
}

.leg::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #1d23307e;
    flex-shrink: 0;
}

.leg::after {
    content: "";
    bottom: 0;
    width: 50%;
    height: 1px;
    background: #1d23307e;
}


.legal-hero h1{

    font-family:var(--special-font);

    font-size:5rem;
    font-weight:300;

    line-height:.95;

    margin:20px 0;
    color: var(--color-premium);
}

.legal-hero p{

    max-width:600px;

    color:#666;

    line-height:1.9;
}

.updated{

    display:inline-block;

    margin-top:25px;

    color:#999;
}

.legal-layout{

    display:grid;

    grid-template-columns:280px 1fr;

    gap:80px;
}

.legal-sidebar{

    position:sticky;

    top:120px;

    display:flex;

    flex-direction:column;

    gap:18px;

    height:max-content;
}

.legal-sidebar a{

    text-decoration:none;

    color:#555;

    transition:.3s;
}

.legal-sidebar a:hover{

    color:var(--color-premium);

    padding-left:8px;
}

.legal-content section{

    margin-bottom:70px;
}

.legal-content h2{

    font-family:var(--special-font);

    font-size:2.4rem;
    font-weight:300;

    margin-bottom:20px;

    color:var(--color-premium);
}

.legal-content p{

    line-height:2;

    color:#555;
}




/* =========================================
   📱 LEGAL PAGE RESPONSIVE
========================================= */

/* ---------- Laptop ---------- */

@media (max-width:1200px){

    .legal-page{
        padding:70px 40px;
    }

    .legal-layout{
        grid-template-columns:240px 1fr;
        gap:50px;
    }

    .legal-hero h1{
        font-size:4.3rem;
    }

}

/* ---------- Tablet ---------- */

@media (max-width:992px){

    .legal-page{
        padding:60px 35px;
    }

    .legal-hero{
        margin-bottom:60px;
    }

    .legal-hero h1{
        font-size:3.5rem;
    }

    .legal-layout{
        grid-template-columns:1fr;
        gap:45px;
    }

    .legal-sidebar{

        position:static;

        flex-direction:row;
        flex-wrap:wrap;

        gap:12px;

    }

    .legal-sidebar a{

        padding:10px 18px;

        border:1px solid rgba(0,0,0,.12);

        border-radius:50px;

    }

    .legal-sidebar a:hover{

        padding-left:18px;

    }

}

/* ---------- Mobile ---------- */

@media (max-width:768px){

    .legal-page{
        padding: 120px 24px 60px;
    }

    .legal-hero{
        margin-bottom:50px;
    }

    .legal-hero h1{

        font-size:2.7rem;
        line-height:1.05;

    }

    .legal-hero p{

        font-size:15px;
        line-height:1.8;

    }

    .updated{

        margin-top:18px;
        font-size:.9rem;

    }

    .legal-layout{

        gap:35px;

    }

    .legal-sidebar{

        justify-content:center;

    }

    .legal-sidebar a{

        font-size:.9rem;

    }

    .legal-content section{

        margin-bottom:50px;

    }

    .legal-content h2{

        font-size:2rem;

    }

    .legal-content p{

        line-height:1.8;

    }

}

/* ---------- Small Mobile ---------- */

@media (max-width:576px){

    .legal-page{
        padding: 120px 20px 55px;
    }

    .legal-hero h1{

        font-size:2.2rem;

    }

    .legal-hero p{

        font-size:14px;

    }

    .legal-sidebar{

        display:grid;

        grid-template-columns:repeat(2,1fr);

        gap:12px;

    }

    .legal-sidebar a{

        text-align:center;

        padding:10px;

        font-size:.85rem;

    }

    .legal-content h2{

        font-size:1.8rem;

    }

}

/* ---------- Extra Small ---------- */

@media (max-width:400px){

    .legal-page{
        padding:40px 18px;
    }

    .legal-hero h1{

        font-size:1.9rem;

    }

    .legal-sidebar{

        grid-template-columns:1fr;

    }

    .legal-sidebar a{

        width:100%;

    }

    .legal-content h2{

        font-size:1.6rem;

    }

    .legal-content p{

        font-size:14px;

    }

}






/* 🌟 TESTIMONIAL SECTION */
.testimonial-section {
  position: relative;
  padding: 75px 60px;
  background: var(--color-premium);
  color: #fff;
  border-bottom: 1px solid var(--color-white);
}

/* ✨ GLOW */
.testimonial-glow {
  position: absolute;
  top: -150px;
  right: 0px;

  width: 420px;
  height: 420px;

  background: radial-gradient(circle,
      rgba(184, 155, 103, .12),
      transparent 70%);
   pointer-events:none;
}

/* 🏷 HEADER */
.testimonial-header {
  position: relative;
  z-index: 2;

  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;

  margin-bottom: 50px;
}

/* 👁️ EYEBROW */
.testimonial-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;

  margin-bottom: 18px;

  font-size: .82rem;
  letter-spacing: 2px;
  text-transform: uppercase;

  color: rgba(255, 255, 255, .7);
}

.testimonial-eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #b89b67;
}

.testimonial-eyebrow::after {
  content: "";
  width: 90px;
  height: 1px;
  background: rgba(255, 255, 255, .22);
}

/* 🏨 TITLE */
.testimonial-header h2 {
  font-family: var(--special-font);
  color: #b89b67;
  font-size: var(--fs-h2);
  font-weight: 300;
  line-height: .95;
}


/* 🧩 ROW */
.testimonial-wrapper {
  display: flex;
  gap: 26px;

  overflow-x: auto;
  scrollbar-width: none;

  position: relative;
  z-index: 2;
}

.testimonial-wrapper::-webkit-scrollbar {
  display: none;
}

/* 🃏 CARD */
.testimonial-card {
  flex: 0 0 380px;

  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);

  backdrop-filter: blur(10px);

  border-radius: 28px;

  padding: 28px;

  transition: .35s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(184, 155, 103, .4);
}

/* 👤 TOP */
.testimonial-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;

  margin-bottom: 24px;
}

/* USER */
.testimonial-user {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-user img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-user h4 {
  color: var(--color-white);
  font-size: 1rem;
  margin-bottom: 4px;
}

.testimonial-user span {
  font-size: .85rem;
  color: rgba(255, 255, 255, .55);
}

/* ⭐ */
.testimonial-rating {
  color: #b89b67;
  font-size: 1rem;
  letter-spacing: 2px;
}

/* 📝 TEXT */
.testimonial-card p {
  font-size: 1rem;
  line-height: 1.9;

  color: rgba(255, 255, 255, .78);
}
/* =========================================
   📱 TESTIMONIALS RESPONSIVE
========================================= */

/* ---------- Laptop ---------- */
@media (max-width:1200px){

    .testimonial-section{
        padding:70px 40px;
    }

}


/* ---------- Tablet ---------- */
@media (max-width:992px){

    .testimonial-section{
        padding:60px 35px;
    }

    .testimonial-header{

        margin-bottom:40px;

    }

    .testimonial-header h2{

        font-size:clamp(2.8rem,6vw,4rem);

    }

}


/* ---------- Mobile ---------- */
@media (max-width:768px){

    .testimonial-section{

        padding:55px 24px;

    }

    .testimonial-header{

        justify-content:center;
        text-align:center;

        margin-bottom:35px;

    }

    .testimonial-eyebrow{

        justify-content:center;

    }

    .testimonial-eyebrow::after{

        width:60px;

    }

    .testimonial-header h2{

        font-size:clamp(2.2rem,8vw,3.5rem);

        line-height:1.1;

    }

    .testimonial-wrapper{

        gap:20px;

        scroll-snap-type:x mandatory;
        scroll-padding-inline:24px;

        overscroll-behavior-x:contain;
        touch-action:pan-x;

    }

    .testimonial-card{

        flex:0 0 85%;

        scroll-snap-align:start;
        scroll-snap-stop:always;

        padding:24px;

    }

}


/* ---------- Small Mobile ---------- */
@media (max-width:576px){

    .testimonial-section{

        padding:50px 20px;

    }

    .testimonial-header h2{

        font-size:2rem;

    }

    .testimonial-card{

        flex:0 0 92%;

        padding:22px;

    }

    .testimonial-top{

        flex-direction:column;

        gap:16px;

    }

    .testimonial-rating{

        align-self:flex-start;

    }

    .testimonial-user img{

        width:52px;
        height:52px;

    }

    .testimonial-card p{

        font-size:.95rem;
        line-height:1.8;

    }

}


/* ---------- Extra Small ---------- */
@media (max-width:400px){

    .testimonial-section{

        padding:45px 18px;

    }

    .testimonial-header h2{

        font-size:1.8rem;

    }

    .testimonial-card{

        flex:0 0 96%;

        padding:20px;

    }

    .testimonial-user{

        gap:12px;

    }

    .testimonial-user img{

        width:48px;
        height:48px;

    }

    .testimonial-user h4{

        font-size:.95rem;

    }

}



/* 🌟 FOOTER */
.lux-footer {
  position: relative;
  background: #0b1320;
  color: #fff;
  padding: 55px 60px 22px;
  overflow: hidden;
}

/* Glow */
.footer-glow {
  position: absolute;
  top: 0;
  left: -120px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle,
      rgba(184, 155, 103, .15),
      transparent 70%);
   pointer-events:none;
}

/* TOP */
.lux-footer-top {
  display: flex;
  justify-content: space-between;
  gap: 45px;
  margin-bottom: 35px;
}

/* LEFT */
.footer-left {
  flex: 1;
}

.footer-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: .8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .65);
}

.footer-tag::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #b89b67;
}

.footer-tag::after {
  content: "";
  width: 75px;
  height: 1px;
  background: rgba(255, 255, 255, .22);
}

.footer-left h2 {
  font-family: var(--special-font);
  color: var(--color-white);
  font-size: 4.3rem;
  font-weight: 300;
  line-height: .95;
  margin-bottom: 16px;
}

.footer-left p {
  max-width: 470px;
  line-height: 1.8;
  color: rgba(255, 255, 255, .7);
  margin-bottom: 24px;
}

/* SOCIALS */
.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .12);

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  text-decoration: none;

  background: rgba(255, 255, 255, .04);
  transition: .35s;
}

.footer-socials a:hover {
  background: #b89b67;
  transform: translateY(-4px);
}

/* RIGHT */
.footer-right {
  width: 430px;
}

/* CONTACT CARD */
.footer-contact-card {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(10px);

  border-radius: 22px;
  padding: 24px;
  margin-bottom: 20px;
}

.footer-contact-card h4 {
  margin-bottom: 16px;
  color: var(--color-white);
}

.footer-contact-card a,
.footer-contact-card p {
  display: flex;
  gap: 12px;
  align-items: center;

  color: rgba(255, 255, 255, .72);
  text-decoration: none;
  line-height: 2;
}

/* NEWSLETTER */
.footer-newsletter span {
  display: block;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, .75);
}

.footer-newsletter form {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, .15);
  padding-bottom: 12px;
}

.footer-newsletter input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: #fff;
}

.footer-newsletter button {
  border: none;
  background: none;
  color: #fff;
  display: flex;
  gap: 10px;
  cursor: pointer;
}

/* MAP */
.footer-map {
  height: 260px;
  overflow: hidden;
  border-radius: 24px;
  margin-bottom: 32px;
}

.footer-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(100%) contrast(110%);
}

/* BOTTOM */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;

  padding-bottom: 18px;
  margin-bottom: 18px;

  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer-bottom h4 {
  margin-bottom: 14px;
  color: var(--color-white);
}

.footer-bottom a {
  display: block;
  color: rgba(255, 255, 255, .68);
  text-decoration: none;
  line-height: 2;
  transition: .3s;
}

.footer-bottom a:hover {
  color: #fff;
  transform: translateX(4px);
}

/* COPY */
.footer-copy {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-copy p,
.footer-copy a {
  color: rgba(255, 255, 255, .45);
  text-decoration: none;
  font-size: .9rem;
}

.footer-copy-links{
    display:flex;
    align-items:center;
    gap:12px;
    flex-wrap:wrap;
}

.footer-copy-links span{
    color:rgba(255,255,255,.35);
}

.footer-copy-links a{
    color:rgba(255,255,255,.45);
    text-decoration:none;
    transition:.3s;
}

.footer-copy-links a:hover{
    color:#b89b67;
}

/* MOBILE */
@media(max-width:992px) {

  .lux-footer-top {
    flex-direction: column;
  }

  .footer-right {
    width: 100%;
  }

}

@media(max-width:768px) {

  .lux-footer {
    padding: 45px 20px 22px;
  }

  .footer-left h2 {
    font-size: 3rem;
  }

  .footer-map {
    height: 220px;
  }

  .footer-copy {
    flex-direction: column;
    align-items: flex-start;
  }

}