* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Barlow", sans-serif;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Cal Sans", sans-serif;
}
body {
  overflow-x: hidden;
}
html {
  scroll-behavior: smooth;
}

/* NAVBAR */

.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 5%;
  z-index: 1000;
}
/* When navbar is scrolled */
.navbar.scrolled {
  position: fixed;
  top: 0;
  width: 100%;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgb(0 0 0 / 22%);
  background: white;
  transition: 0.5s;
  z-index: 999;
}

/* Link color when scrolled */
.navbar.scrolled .nav-links a{
  color: #000;
}

/* Book button style when scrolled */
.navbar.scrolled .book-btn{
  color: white;
  background: #94281c;
}

/* Reset styles on smaller screens */
@media (max-width: 900px){

  .navbar.scrolled .nav-links a{
    color: white;
  }

  .navbar.scrolled .book-btn{
    color: inherit;
    background: inherit;
  }

}

.logo img {
    margin-top: 10px;
  height: 55px;
}

/* NAV LINKS */

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: rgb(255, 255, 255);
  font-size: 14px;
  font-weight: 400;
  transition: 0.3s;
}

.nav-links a:hover {
  opacity: 0.7;
}

/* BOOK BUTTON */

.book-btn {
  background: white;
  color: black;
  padding: 8px 15px;
  border-radius: 25px;
  font-weight: 400;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}
.book-btn:hover {
  color: #94281c;
}

/* HERO */

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 5%;
  color: white;
  overflow: hidden;
}

/* BACKGROUND IMAGE */

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("images/bg1.jpg") center center no-repeat;
  background-size: cover;
  background-position: 30%;
  animation: bgZoom 20s ease-in-out infinite alternate;
  z-index: 0;
}

/* DARK OVERLAY */

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.40);
  z-index: 1;
}

/* HERO CONTENT */

.hero-content {
  max-width: 650px;
  position: relative;
  z-index: 5;
}

/* TEXT */

.hero h1 {
  font-size: 130px;
  font-weight: 500;
  letter-spacing: 5%;
}

.hero h3 {
  margin-top: -10px;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 5%;
}

.hero p {
  line-height: 1.3;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 5%;
  color: #eee;
}

/* CTA BUTTON CONTAINER */

.hero-cta {
  position: absolute;
  bottom: 40px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 6;
}

/* CTA BUTTON */

.hero-btn {
  border: 3px solid rgb(255, 255, 255);
  padding: 8px 16px;
  border-radius: 12px;
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  font-size: 16px;

  /* Glass effect */
  background: transparent;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(4px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0);
  display: inline-block;
}

.hero-btn:hover {
  background: white;
  color: #94281c;
}

/* BACKGROUND ZOOM */

@keyframes bgZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

/* HAMBURGER */

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
  z-index: 2000;
}

.menu-toggle div {
  width: 26px;
  height: 3px;
  background: #94281c;
  transition: 0.4s;
}

/* CROSS */

.menu-toggle.active div:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.menu-toggle.active div:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active div:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* MOBILE */

@media (max-width: 900px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100vh;
    background: #111;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    transition: 0.4s;
    z-index: 1500;
  }
  .nav-links a {
    color: white;
  }

  .nav-links.active {
    right: 0;
  }

  .book-btn {
    display: none;
  }

  .hero h1 {
    font-size: 60px;
    margin-bottom: 10px;
  }
}

@media (max-width: 600px) {
  .hero {
    text-align: center;
    /*min-height: 70vh;*/
  }

  .hero h1 {
    font-size: 42px;
  }
  .hero h1,
  .hero h3 {
    font-weight: 400;
  }

  .hero p {
    font-size: 13px;
  }

}

@media (max-width: 768px) {
  .hero-btn {
    padding: 12px 20px;
    font-size: 13px;
    border-radius: 10px;
  }
}

@media (max-width: 480px) {
    .logo img {
    margin-top: 3px;
    height: 42px;
}
  .hero-btn {
    padding: 10px 18px;
    font-size: 12px;
    display: block;
    width: fit-content;
    margin: auto;
  }
}

/* about section  */

/* ── ABOUT SECTION ── */
.about {
  max-width: 1500px;
  margin: 0 auto;
  padding: 80px 60px 100px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 30px;
  align-items: center;
  position: relative;
}

/* ── IMAGE SIDE ── */
.about__image-wrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4/3.2;
  box-shadow:
    0 24px 64px rgba(26, 26, 24, 0.15),
    0 4px 16px rgba(26, 26, 24, 0.08);
  opacity: 0;
  transform: translateX(-32px);
  animation: fadeInLeft 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}

.about__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

.about__image-wrap:hover img {
  transform: scale(1.04);
}

/* decorative corner accent */
.about__image-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: linear-gradient(
    160deg,
    rgba(176, 58, 46, 0.08) 0%,
    transparent 50%
  );
  z-index: 1;
  pointer-events: none;
}

/* ── TEXT SIDE ── */
.about__content {
  opacity: 0;
  transform: translateX(28px);
  animation: fadeInRight 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.25s forwards;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 5%;
  color: black;
}

.about__heading {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 2%;
  color: black;
  margin-top: -15px;
}

.about__divider {
  width: 52px;
  height: 2px;
  background: linear-gradient(90deg, var(--rust), transparent);
  border-radius: 2px;
}

.about__body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about__body p {
  max-width: 600px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 3%;
  color: black;
}

.about__body p strong {
  font-weight: 500;
}

.about__cta-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 12px;
}

.btn-contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 15px;
  background: #94281c;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition:
    background 0.25s ease,
    transform 0.2s ease,
    box-shadow 0.25s ease;
  box-shadow: 0 4px 20px rgba(176, 58, 46, 0.28);
}

.btn-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(176, 58, 46, 0.36);
}

.btn-contact svg {
  transition: transform 0.2s ease;
}

.btn-contact:hover svg {
  transform: translateX(3px);
}

/* ── ANIMATIONS ── */
@keyframes fadeInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  .about {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 20px ;
  }
  .about__image-wrap {
    aspect-ratio: 16/9;
  }
  .gg {
    display: none;
  }
}

@media (max-width: 580px) {
  .gg {
    display: none;
  }
  .about__heading {
    font-size: 32px;
    margin-top: 0;
  }
  .about__content {
    gap: 10px;
  }
  .about__cta-row {
    justify-content: center;
    margin-top: 20px;
  }
}

/* accommodation */

.accommodation {
  padding: 80px 60px 100px;
  max-width: 1500px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: 64px;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 2%;
  color: #1a1814;
  margin-bottom: 10px;
}

.section-header .tagline {
  font-size: 16px;
  font-weight: 500;
      font-family: "Cal Sans", sans-serif;
  letter-spacing: 1%;
  color: #1a1814;
  margin-bottom: 6px;
}

.section-header .subtitle {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1%;
  color: #000000;
}

/* Grid */
.accommodation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 252px 252px;
  gap: 16px;
}

/* ac-card */
.ac-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
}

.ac-card-large {
  grid-row: 1 / 3;
}

.ac-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ac-card:hover img {
  transform: scale(1.05);
}

.ac-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.2) 55%,
    rgba(0, 0, 0, 0) 100%
  );
}

/* Content sits at bottom, uses flex column to push button to end */
.ac-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 20px 18px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
}

.ac-card-content h3 {
  font-size: 48px;
  font-weight: 500;
  line-height: 1.1;
  /* margin-bottom: 2px; */
  letter-spacing: 1%;
}

.ac-card-content h2 {
  font-size: 64px;
  font-weight: 500;
  line-height: 1.05;
  /* margin-bottom: 8px; */
  letter-spacing: 1%;
}

.ac-card-small .ac-card-content h2 {
  font-size: 64px;
  font-weight: 500;
  letter-spacing: 1%;

}

.ac-card-content p {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 1%;
  color: rgb(255, 255, 255);
  margin-bottom: 12px;
}

/* Row: space-between pushes btn to the right end of the paragraph row */
.ac-card-btn-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ac-card-btn-row span {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 65%;
  line-height: 1.4;
}

.btn-book {
  display: inline-block;
  background: #ffffff;
  color: #94281C;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition:
    background 0.2s,
    color 0.2s;
}

.btn-book:hover {
  color: #050505;
}

/* Divider */
.divider {
  width: 500px;
  height: 1.5px;
  background: #000000;
  margin: 80px auto 70px;
}

/* Dining */
.dining {
  text-align: center;
  padding-bottom: 80px;
}

.dining h2 {
  font-size: 64px;
  font-weight: 500;
  color: #1a1814;
  letter-spacing: 1%;
  margin-bottom: 8px;
}

.dining .tagline {
  font-size: 16px;
  font-family: "Cal Sans", sans-serif;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: #1a1814;
  margin-bottom: 10px;
}

.dining p {
  font-size: 16px;
  color: #000000;
  line-height: 1.3;
  max-width: 750px;
  letter-spacing: 2%;
  font-weight: 400;
  padding: 0 20px;
  margin: 0 auto;
}

/* ── MOBILE RESPONSIVE ── */
@media (max-width: 768px) {
  .accommodation {
    padding: 48px 20px 60px;
  }

  .section-header h2 {
    font-size: 2.4rem;
  }

  .accommodation-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 14px;
  }

  .ac-card-large {
    grid-row: auto;
  }

  .ac-card img,
  .ac-card-large img {
    height: 280px;
  }

  .ac-card-small img {
    height: 220px;
  }

  .ac-card-content h2 {
    font-size: 1.6rem;
  }

  .ac-card-small .ac-card-content h2 {
    font-size: 1.4rem;
  }

  .dining h2 {
      padding: 0 20px;
    font-size: 2rem;
  }

  .divider {
    margin: 50px auto 40px;
    width: 60%;
  }
}

@media (max-width: 480px) {
  .section-header h2 {
    font-size: 2rem;
  }

  .ac-card img,
  .ac-card-large img,
  .ac-card-small img {
    height: 230px;
  }

  .btn-book {
    padding: 7px 13px;
    font-size: 0.62rem;
  }
   .accommodation {
        padding: 0px 20px 0px;
    }
    .dining{
        padding-bottom: 0;
    }
}




 .features {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 80px 0px;
  }

  /* .features-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 80% 60% at 60% 20%, rgba(30,60,40,0.55) 0%, transparent 70%),
      radial-gradient(ellipse 50% 80% at 10% 100%, rgba(10,25,15,0.8) 0%, transparent 60%),
      linear-gradient(180deg, rgba(13,18,16,0.2) 0%, rgba(13,18,16,0.75) 60%, rgba(13,18,16,0.97) 100%);
    z-index: 1;
  } */

  .features-bg-img {
    position: absolute;
    inset: 0;
    background-image: url('images/amenty.jpg');
    background-size: cover;
    /* background-position: center 30%; */
    filter: brightness(0.85) saturate(0.8);
    transform: scale(1.03);
    transition: transform 20s ease;
  }

  .features-bg-img.loaded { transform: scale(1.0); }

  .features-content {
    color: white;
    position: relative;
    z-index: 2;
    padding: 0 52px;
    
  }

  .features-eyebrow {
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 1%;
    color: #ffffff;
    margin-bottom: 0px;
    opacity: 0;
    transform: translateY(16px);
    animation: fadeUp 0.8s 0.2s forwards;
  }

  .features-headline {
    font-size: clamp(44px, 6vw, 72px);
    font-weight: 500;
    line-height: 1.02;
    letter-spacing: 2%;
    color: #ffffff;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.9s 0.4s forwards;
  }

  @keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
  }

  .features-slider-section {
    position: relative;
    z-index: 2;
    margin-top: 40px;
    /* padding: 0 0 60px; */
  }

  .features-drag-hint {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 52px;
    margin-bottom: 16px;
    font-size: 11px;
    letter-spacing: 0.12em;
    color: rgba(240,237,232,0.55);
    opacity: 1;
    transition: opacity 0.5s;
  }

  .features-drag-hint.hidden { opacity: 0; }

  .features-drag-hint-line {
    flex: 0 0 32px;
    height: 1px;
    background: rgba(240,237,232,0.3);
  }

  .features-track-outer {
    overflow: hidden;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    padding: 16px 0 24px;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 88%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 88%, transparent 100%);
  }

  .features-track-outer.dragging { cursor: grabbing; }

  .features-track {
    display: flex;
    gap: 20px;
    padding: 0 52px;
    will-change: transform;
    transition: none;
  }

  .features-track.snap {
    transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
  }

  .features-item {
    
    flex: 0 0 320px;
    height: 320px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255,255,255,0.08);
    background: #1a2018;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
    -webkit-backface-visibility: hidden;
  }



  .features-item-img {
    position: absolute;
    inset: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease;
    filter: brightness(0.7) saturate(0.85);
  }

  .features-item:hover .features-item-img { transform: scale(1.06); }

  .features-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      160deg,
      transparent 30%,
      rgba(8,16,10,0.6) 65%,
      rgba(8,16,10,0.92) 100%
    );
  }

  .features-item-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px 12px;
  }

  .features-item-title {
    font-size: 32px;
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: 2%;
    color: #f0ede8;
  }

  @media (max-width: 600px) {
    .features-content { padding: 0 24px; }
    .features-track { padding: 0 24px; gap: 14px; }
    .features-drag-hint { padding: 0 24px; }
    .features-item { flex: 0 0 300px; height: 300px; }
    .features-eyebrow {
    font-size: 14px;}
    .features-item-title {
    font-size: 28px;}
  }



  .contact-section {
      padding: 60px 80px;
      display: flex;
      /* align-items: center; */
      gap: 30px;
      max-width: 1500px;
      margin: 0 auto;
    }

    .contact-left { flex: 1; }

    .contact-label {
      font-size: 20px;
      font-weight: 500;
      color: #111;
      margin-bottom: 5px;
    }

    .contact-heading {
      font-size: clamp(36px, 4.5vw, 58px);
      font-weight: 500;
      line-height: 1.05;
      color: #111;
      margin-bottom: 20px;
    }

    .contact-desc {
      font-size: 20px;
      line-height: 1.3;
      color: #000000;
    }

    .contact-right {
      flex: 1;
    }

    .form-card {
      background: #F4E9E8;
      border-radius: 16px;
      padding: 20px;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .form-card input,
    .form-card textarea {
      width: 100%;
      background: #fff;
      border: 1.5px solid #00000033;
      border-radius: 12px;
      padding: 13px 16px;
      font-size: 18px;
      color: #00000099;
      outline: none;
      transition: border-color 0.2s;
      resize: none;
    }

    .form-card input::placeholder,
    .form-card textarea::placeholder { color: #aaa; }

    .form-card input:focus,
    .form-card textarea:focus { border-color: #8b1a1a; }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .form-card textarea { height: 140px; }

    .submit-btn {
      width: 100%;
      background: #94281C;
      color: #fff;
      border: none;
      border-radius: 14px;
      padding: 13px 24px;
      font-size: 18px;
      font-weight: 500;
      cursor: pointer;
      transition: background 0.2s, transform 0.15s;
      letter-spacing: 0.03em;
    }
    .submit-btn:hover { background: #a52020; transform: translateY(-1px); }
    .submit-btn:active { transform: translateY(0); }

    .success-msg {
      display: none;
      background: #f0faf4;
      border: 1.5px solid #4caf82;
      border-radius: 10px;
      padding: 14px 18px;
      font-size: 14px;
      color: #2a7a52;
      text-align: center;
    }
    .success-msg.show { display: block; }

    .section-divider {
      border: none;
      border-top: 1px solid #e8e8e8;
      margin: 0 80px;
    }

    .escape-section {
      padding: 60px 80px 80px;
      max-width: 1500px;
      margin: 0 auto;
    }

    .escape-heading {
      font-size: clamp(40px, 5vw, 66px);
      font-weight: 500;
      line-height: 1.05;
      color: #111;
      margin-bottom: 22px;
    }

    .escape-desc {
      font-size: 20px;
      line-height: 1.3;
      color: #000000;
      max-width: 520px;
      margin-bottom: 14px;
    }

    .escape-sub {
      font-size: 20px;
      line-height: 1.3;
      color: #060606;
      max-width: 520px;
      margin-bottom: 36px;
    }

    .escape-buttons {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    .btn-primary {
      background: #94281C;
      color: #fff;
      border: none;
      border-radius: 50px;
      padding: 8px 16px;
      font-size: 16px;
      font-weight: 400;
      cursor: pointer;
      transition: background 0.2s, transform 0.15s;
    }
    .btn-primary:hover { background: #a52020; transform: translateY(-1px); }

    .btn-outline {
      background: transparent;
      color: #94281C;
      border: 1.8px solid #94281C;
      border-radius: 50px;
      padding: 8px 16px;
      font-size: 16px;
      font-weight: 400;
      cursor: pointer;
      transition: background 0.2s, color 0.2s, transform 0.15s;
    }
    .btn-outline:hover { background: #111; color: #fff; transform: translateY(-1px); border-color: transparent;}

    @media (max-width: 900px) {
      .contact-section { flex-direction: column; padding: 48px 40px; gap: 40px; }
      .contact-right { max-width: 100%; width: 100%; }
      .escape-section { padding: 48px 40px 60px; }
      .section-divider { margin: 0 40px; }
    }

    @media (max-width: 560px) {
      .contact-section { padding: 36px 20px; gap: 32px; }
      .escape-section { padding: 36px 20px 52px; }
      .section-divider { margin: 0 20px; }
      .form-row { grid-template-columns: 1fr; }
      .form-card { padding: 20px; }
      .escape-buttons { flex-wrap: wrap; align-items: flex-start; }
      .contact-desc ,.escape-desc ,.escape-sub{ font-size: 16px; }
    }







     /* ── FOOTER WRAPPER ── */
    .footer {
      position: relative;
      overflow: hidden;
      padding: 72px 6vw 0;
      color: white;
    }

    /* background image + layered overlay */
    .footer__bg {
      position: absolute;
      inset: 0;
      background:
        url('images/foot-bg.jpg') center/cover no-repeat;
      z-index: 0;
    }
    .footer__bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        160deg,
        rgba(10,22,14,0.72) 0%,
        rgba(5,15,9,0.55)   60%,
        rgba(10,22,14,0.80) 100%
      );
    }

    /* ── INNER GRID ── */
    .footer__inner {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1.6fr 1fr 1fr;
      gap: 40px 60px;
      padding-bottom: 56px;
    }

    /* ── BRAND COLUMN ── */
      .brand__logo {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 22px;
    }

    .brand__logo-circle {
      width: 58px; height: 58px;
      border-radius: 50%;
      background: #fff;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      overflow: hidden;
      box-shadow: 0 0 0 1px rgba(201,169,110,0.4), 0 4px 18px rgba(0,0,0,0.4);
    }
    .brand__logo-circle img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 50%;
    }

    .brand__tagline {
      font-family: "Cal Sans", sans-serif;
      font-size: clamp(1.55rem, 2.4vw, 2rem);
      font-weight: 500;
      color: #fff;
      line-height: 1.15;
      letter-spacing: 5%;
    }

    .brand__desc {
      font-size: 0.82rem;
      line-height: 1.3;
      color: var(--dim);
      font-weight: 400;
      max-width: 340px;
      margin-bottom: 32px;
    }

    .brand__contact { display: flex; flex-direction: column; gap: 12px; }
    .contact-item {
      display: flex; align-items: flex-start; gap: 12px;
      font-size: 0.82rem; color: var(--mist); font-weight: 300;
    }
    .contact-item svg {
      width: 16px; height: 16px;
      flex-shrink: 0; margin-top: 1px;
      stroke: white; fill: none; stroke-width: 1.8;
    }

    /* ── LINKS COLUMN ── */
    .col__heading {
      font-family: "Cal Sans", sans-serif;
      font-size: 1.05rem;
      font-weight: 500;
      color: #fff;
      letter-spacing: 5%;
      padding-bottom: 10px;
    }

    .col__links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
    .col__links a {
      text-decoration: none;
      color: var(--dim);
      font-size: 0.85rem;
      font-weight: 300;
      transition: color 0.25s, letter-spacing 0.25s;
      display: inline-block;
    }
    .col__links a:hover { color: white; letter-spacing: 0.04em; }

    /* ── SOCIAL ICONS ── */
    .social {
      display: flex; gap: 18px; margin-top: 8px;
    }
    .social a {
      display: flex; align-items: center; justify-content: center;
      width: 40px; height: 40px;
      border: 1px solid rgb(254, 254, 254);
      border-radius: 50%;
      color: var(--mist);
      transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.2s;
    }
    .social a:hover {
      background: var(--gold);
      border-color: var(--gold);
      color: #1a2a1e;
      transform: translateY(-3px);
    }
    .social svg { width: 18px; height: 18px; fill: currentColor; }

    /* ── DIVIDER ── */
    .footer__divider {
      position: relative; z-index: 1;
      height: 1px;
      background: white;
      width: 90%;
      margin: 0 auto;
    }

    /* ── COPYRIGHT ── */
    .footer__bottom {
      position: relative; z-index: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px 6vw;
    }
    .footer__copy {
      font-size: 0.75rem;
      color: var(--dim);
      letter-spacing: 0.04em;
      font-weight: 300;
      text-align: center;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      .footer__inner {
        grid-template-columns: 1fr 1fr;
      }
      .brand-col { grid-column: 1 / -1; }
    }

    @media (max-width: 560px) {
      .footer { padding: 56px 5vw 0; }
      .footer__inner {
        grid-template-columns: 1fr;
        gap: 36px;
      }
      .brand-col { grid-column: auto; }
      .brand__desc { max-width: 100%; }
      .col__links {
        flex-direction: row;
     flex-wrap: wrap;
    
}
    }