:root {
  /* ── COLORS ── */
  --onyx:   #1A1611;
  --gold:   #C9A84C;
  --bronze: #A08C5A;
  --walnut: #3D3020;
  --cream:  #F3E3D8;
  --linen:  #E8E5D0;
  --white:  #FFFFFF;

  /* ── FONTS ── */
  --font-logo:    'Cinzel', serif;           /* Logo / Favicon — weight 600, uppercase */
  --font-heading: 'Cormorant Garamond', serif; /* Headings — weight 400 */
  --font-nav:     'Montserrat', sans-serif;  /* Navigation / Labels — weight 500–600, uppercase */
  --font-body:    'Lato', sans-serif;        /* Body copy — weight 300, line-height 1.7 */
  
    --max-w:      1200px;
  --pad-x:      3.5rem;
  --section-gap: 5rem;
  
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

::-webkit-scrollbar{
  display: none;
}




/* ── NAVBAR BASE ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 56px;
  height: 72px;
  width: 100%;
  background: rgba(26, 22, 17, 0.96);
  border-bottom: 1px solid rgba(201, 168, 76, 0.35);
  backdrop-filter: blur(8px);
  transition: height 0.3s;
}
nav.shrunk { height: 60px; }

.nav-logo {
  font-family: var(--font-logo);
  font-size: 18px;
  color: var(--white);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  word-spacing: 4px;
  text-decoration: none;
}
.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-nav);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--linen);
  opacity: 0.8;
  text-decoration: none;
  transition: opacity 0.2s, color 0.2s;
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover { opacity: 1; color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--linen);
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* ── FOOTER BASE ── */
footer {
  background: var(--onyx);
  border-top: 1px solid rgba(201, 168, 76, 0.35);
  width: 100%;
}
.footer-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  padding: 56px 56px 40px;
  width: 100%;
  box-sizing: border-box;
}
.footer-logo {
  font-family: var(--font-logo);
  font-size: 20px;
  color: var(--white);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  word-spacing: 4px;
  margin-bottom: 10px;
}
.footer-logo span { color: var(--gold); }

.footer-tagline {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(232, 229, 208, 0.55);
  max-width: 240px;
  line-height: 1.7;
}
.footer-contact-title,
.footer-social-title {
  font-family: var(--font-nav);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.footer-contact p,
.footer-contact a {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 2;
  color: rgba(232, 229, 208, 0.7);
  text-decoration: none;
  display: block;
}
.footer-contact a:hover { color: var(--gold); }

.social-links { display: flex; flex-direction: column; gap: 8px; }
.social-links a {
  font-family: var(--font-nav);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--linen);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.2s;
}
.social-links a::before {
  content: '';
  width: 20px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.social-links a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--gold);
  text-align: center;
  padding: 20px 56px;
  width: 100%;
  box-sizing: border-box;
  font-family: var(--font-nav);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(232, 229, 208, 0.4);
}

/* ── DESKTOP (913px+) ── */
@media (min-width: 913px) {
  nav {
    padding: 0 56px;
    height: 72px;
    flex-wrap: nowrap;
  }
  .hamburger { display: none; }
  .nav-links { display: flex; flex-direction: row; gap: 36px; }
  .footer-main { padding: 56px 56px 40px; flex-direction: row; }
  .footer-bottom { padding: 20px 56px; }
}

/* ── TABLET (421px – 912px) ── */
@media (min-width: 421px) and (max-width: 912px) {
  nav {
    padding: 10px 24px;
    height: auto;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
  }
  .hamburger { display: none !important; }
  .nav-logo { width: 100%; text-align: center; font-size: 16px; }
  .nav-links {
    display: flex !important;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 20px;
    width: 100%;
    position: static;
    background: transparent;
    border: none;
    padding: 0 0 8px;
  }
  .nav-links li { padding: 0; }
  .nav-links a { font-size: 10px; letter-spacing: 0.14em; }
}

/* ── MOBILE (≤ 420px) ── */
@media (max-width: 420px) {
  nav {
    padding: 0 20px;
    height: 60px;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
  }
  .hamburger { display: flex !important; }
  .nav-links {
    display: none;
    position: fixed;
    top: 60px;
    left: 0; right: 0;
    background: rgba(26, 22, 17, 0.98);
    flex-direction: column;
    padding: 20px 24px 28px;
    gap: 0;
    border-top: 1px solid rgba(201, 168, 76, 0.25);
  }
  .nav-links.open { display: flex !important; }
  .nav-links li { padding: 12px 0; border-bottom: 1px solid rgba(201,168,76,0.1); }
  .nav-links a { font-size: 11px; letter-spacing: 0.18em; }
}
/* ── HERO ── */
.hero {
  position: relative;
  background-image: url('../images/Assets/diagonal-texture-v3.svg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 100px;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 24px 40px;
  flex: 1;
}

.hero-logo {
  width: 380px;
  max-width: 100%;
  margin-bottom: 16px;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(232, 229, 208, 0.75);
  line-height: 1.9;
  margin-bottom: 28px;
  letter-spacing: 0.04em;
  margin-top: 0;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.h-btn-primary,
.h-btn-secondary {
  font-family: var(--font-nav);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.14em;
  padding: 16px 56px;
  border-radius: 8px;
  background: var(--gold);
  border-style: none;
  color: #000;
  cursor: pointer;
  width: fit-content;
  min-width: 280px;
  white-space: nowrap;
  transition: background 0.25s, color 0.25s;
}

.h-btn-primary:hover,
.h-btn-secondary:hover {
  background: var(--bronze);
  color: var(--white);
}

.h-btn-primary:active,
.h-btn-secondary:active {
  background-color: var(--walnut);
  color: var(--gold);
}

.bg-base {
  fill: #3D3020;
}

.stripe-line {
  stroke: #C9A84C;
  stroke-width: 0.6;
  opacity: 0.45;
}

/* ── HERO MEDIA QUERIES ── */
/* Mobile */
@media (max-width: 420px) {
  .hero {
    padding-top: 60px;
    min-height: unset;
    padding-bottom: 0;
  }
  .hero-content {
    padding: 24px 16px 24px;
    flex: unset;
  }
  .hero-logo {
    width: 220px;
  }
  .hero-tagline {
    font-size: 13px;
    margin-bottom: 20px;
  }
  .hero-buttons {
    gap: 14px;
  }
  .h-btn-primary,
  .h-btn-secondary {
    padding: 14px 36px;
    font-size: 14px;
    min-width: 220px;
  }
}

/* Tablet */
@media (min-width: 421px) and (max-width: 912px) {
  .hero {
    padding-top: 80px;
  }
  .hero-content {
    padding: 50px 32px 36px;
  }
  .hero-logo {
    width: 300px;
  }
  .hero-tagline {
    font-size: 14px;
  }
  .h-btn-primary,
  .h-btn-secondary {
    min-width: 260px;
    font-size: 15px;
  }
}

/* Desktop */
@media (min-width: 913px) {
  .hero-content {
    padding: 60px 24px 40px;
  }
  .hero-logo {
    width: 380px;
  }
  .hero-buttons {
    flex-direction: row;
  }
}

/* ── STATS BAR ── */
.stats-bar {
  width: 100%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 32px 56px;
  position: relative;
  z-index: 1;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
}

.stat:not(:last-child)::after {
  display: none;
}

.stat:not(:last-child) {
  border-right: 1px solid rgba(26, 22, 17, 0.3);
  padding-right: 80px;
}

.stat:not(:first-child) {
  padding-left: 80px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 400;
  color: var(--onyx);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-nav);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: var(--onyx);
  opacity: 1;
}

/* ── STATS BAR MEDIA QUERIES ── */
/* Mobile */
@media (max-width: 420px) {
  .stats-bar {
    flex-direction: row;
    flex-wrap: nowrap;
    padding: 20px 16px;
    gap: 0;
    justify-content: space-between;
    align-items: center;
  }
  .stat {
    flex: 1;
    padding: 0;
  }
  .stat:not(:last-child) {
    border-right: 1px solid rgba(26, 22, 17, 0.3);
    padding-right: 0;
  }
  .stat:not(:first-child) {
    padding-left: 0;
  }
  .stat:not(:last-child)::after {
    display: none;
  }
  .stat-number {
    font-size: 24px;
  }
  .stat-label {
    font-size: 8px;
    letter-spacing: 0.15em;
  }
}

/* Tablet */
@media (min-width: 421px) and (max-width: 912px) {
  .stats-bar {
    padding: 24px 32px;
    flex-wrap: nowrap;
    gap: 0;
    justify-content: space-between;
  }
  .stat {
    flex: 1;
  }
  .stat:not(:last-child) {
    border-right: 1px solid rgba(26, 22, 17, 0.3);
    padding-right: 0;
  }
  .stat:not(:first-child) {
    padding-left: 0;
  }
  .stat-number {
    font-size: 36px;
  }
}

/* Desktop */
@media (min-width: 913px) {
  .stats-bar {
    padding: 32px 56px;
  }
  .stat-number {
    font-size: 42px;
  }
}

/* ── WELCOME SECTION ── */
.welcome-section {
  padding: 50px 40px;
  text-align: center;
  background: var(--white);
}

.welcome-label {
  font-family: var(--font-nav);
  font-size: 13px;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.welcome-title {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 400;
  color: var(--onyx);
  margin: 0 0 24px;
}

.welcome-title span {
  font-style: italic;
}

.bracket-box {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  padding: 50px 80px;
  background: var(--linen);
}

.bracket-box::before,
.bracket-box::after {
  content: '';
  position: absolute;
  width: 28px;
  height: 28px;
  border-color: var(--gold);
  border-style: solid;
}

.bracket-box::before {
  top: 12px;
  left: 12px;
  border-width: 2px 0 0 2px;
}

.bracket-box::after {
  bottom: 12px;
  right: 12px;
  border-width: 0 2px 2px 0;
}

.bracket-box p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.9;
  color: var(--walnut);
  margin: 0 0 20px;
  text-align: center;
}

.bracket-box p:last-child {
  margin-bottom: 0;
}

/* Mobile */
@media (max-width: 420px) {
  .welcome-section {
    padding: 50px 20px;
  }
  .welcome-title {
    font-size: 28px;
    margin-bottom: 28px;
  }
  .bracket-box {
    padding: 28px 24px;
  }
  .bracket-box p {
    font-size: 14px;
    line-height: 1.8;
  }
  .bracket-box::before,
  .bracket-box::after {
    width: 20px;
    height: 20px;
  }
}

/* Tablet */
@media (min-width: 421px) and (max-width: 912px) {
  .welcome-section {
    padding: 60px 32px;
  }
  .welcome-title {
    font-size: 38px;
    margin-bottom: 32px;
  }
  .bracket-box {
    padding: 36px 40px;
  }
  .bracket-box p {
    font-size: 15px;
  }
}

/* Desktop */
@media (min-width: 913px) {
  .welcome-section {
    padding: 50px 40px;
  }
  .welcome-title {
    font-size: 48px;
  }
}
/* ── FEATURES SECTION ── */
.features-section {
  padding: 60px 40px;
  text-align: center;
  background: var(--linen);
}

.features-label {
  font-family: var(--font-nav);
  font-size: 13px;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.features-title {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 400;
  color: var(--onyx);
  margin: 0 0 40px;
}

.features-title span {
  font-style: italic;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.feature-card {
  background: var(--white);
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 4px;
  padding: 36px 40px;
  text-align: center;
}

.feature-icon {
  font-size: 42px;
  margin-bottom: 16px;
}

.feature-name {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 400;
  color: var(--onyx);
  margin-bottom: 10px;
}

.feature-desc {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.8;
  color: var(--walnut);
}

/* Mobile */
@media (max-width: 420px) {
  .features-section {
    padding: 40px 20px;
  }
  .features-title {
    font-size: 28px;
  }
  .feature-card {
    padding: 28px 24px;
  }
  .feature-icon {
    font-size: 36px;
  }
  .feature-name {
    font-size: 20px;
  }
  .feature-desc {
    font-size: 14px;
  }
}

/* Tablet */
@media (min-width: 421px) and (max-width: 912px) {
  .features-section {
    padding: 50px 32px;
  }
  .features-title {
    font-size: 34px;
  }
  .feature-card {
    padding: 32px 36px;
  }
}

/* Desktop */
@media (min-width: 913px) {
  .features-section {
    padding: 60px 40px;
  }
  .features-title {
    font-size: 42px;
  }
}
/* ── CTA SECTION ── */
.cta-section {
  background: var(--walnut);
  padding: 80px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 400;
  color: var(--white);
}

.cta-desc {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
  color: rgba(232, 229, 208, 0.7);
}

.h-btn-primary,
.h-btn-secondary {
  font-family: var(--font-nav);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.14em;
  padding: 16px 56px;
  border-radius: 8px;
  background: var(--gold);
  border: none;
  color: var(--onyx);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.25s, color 0.25s;
}

.h-btn-primary:hover,
.h-btn-secondary:hover {
  background: var(--bronze);
  color: var(--white);
}

.h-btn-primary:active,
.h-btn-secondary:active {
  background: var(--onyx);
  color: var(--gold);
}

/* Mobile */
@media (max-width: 420px) {
  .cta-section {
    padding: 50px 20px;
  }
  .cta-title {
    font-size: 26px;
  }
  .cta-desc {
    font-size: 14px;
  }
  .h-btn-primary {
    padding: 14px 36px;
    font-size: 14px;
  }
}

/* Tablet */
@media (min-width: 421px) and (max-width: 912px) {
  .cta-section {
    padding: 60px 32px;
  }
  .cta-title {
    font-size: 32px;
  }
}

/* Desktop */
@media (min-width: 913px) {
  .cta-section {
    padding: 80px 40px;
  }
  .cta-title {
    font-size: 42px;
  }
}


/* ABOUT PAGE */
/* ── ABOUT HERO ── */
.about-hero {
  background-image: url('../images/Assets/diagonal-texture-v3.svg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: var(--walnut);
  padding: 160px 56px 80px;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
}

.about-hero-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-hero-label {
  font-family: var(--font-logo);
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
}

.about-hero-title {
  font-family: var(--font-heading);
  font-size: 96px;
  font-weight: 100;
  color: var(--white);
}

/* Mobile */
@media (max-width: 420px) {
  .about-hero {
    padding: 120px 20px 50px;
    min-height: 200px;
  }
  .about-hero-title {
    font-size: 32px;
  }
}

/* Tablet */
@media (min-width: 421px) and (max-width: 912px) {
  .about-hero {
    padding: 140px 32px 60px;
  }
  .about-hero-title {
    font-size: 42px;
  }
}

/* Desktop */
@media (min-width: 913px) {
  .about-hero {
    padding: 160px 56px 80px;
  }
  .about-hero-title {
    font-size: 52px;
  }
}

/* ── ABOUT VILLA SECTION ── */
.about-villa {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 60px;
  padding: 80px 56px;
  background: var(--white);
}

.about-villa-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-villa-label {
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 700;
}

.about-villa-title {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 400;
  color: var(--onyx);
  line-height: 1.2;
}

.about-villa-divider {
  width: 50px;
  height: 2px;
  background: var(--gold);
}

.about-villa-text {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.9;
  color: var(--walnut);
}

.about-location-box {
  border: 1px solid rgba(201, 168, 76, 0.4);
  background: var(--linen);
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 10px;
}

.about-location-label {
  font-family: var(--font-nav);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.about-location-text {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--onyx);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.about-villa-right {
  flex: 1;
}

.about-villa-img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  display: block;
}

/* Mobile */
@media (max-width: 420px) {
  .about-villa {
    flex-direction: column;
    padding: 40px 20px;
    gap: 32px;
  }
  .about-villa-title {
    font-size: 28px;
  }
  .about-villa-right {
    width: 100%;
  }
  .about-villa-img {
    width: 100%;
    height: 260px;
    min-height: unset;
  }
}

/* Tablet */
@media (min-width: 421px) and (max-width: 912px) {
  .about-villa {
    flex-direction: column;
    padding: 60px 32px;
    gap: 40px;
  }
  .about-villa-title {
    font-size: 34px;
  }
  .about-villa-right {
    width: 100%;
  }
  .about-villa-img {
    width: 100%;
    height: 420px;
    min-height: unset;
  }
}

/* Desktop */
@media (min-width: 913px) {
  .about-villa {
    flex-direction: row;
    padding: 80px 56px;
  }
  .about-villa-title {
    font-size: 42px;
  }
}

/* ── ABOUT PURPOSE SECTION ── */
.about-purpose {
  padding: 80px 56px;
  background: var(--white);
  text-align: center;
}

.about-purpose-label {
  font-family: var(--font-nav);
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.about-purpose-title {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 400;
  color: var(--onyx);
  margin-bottom: 40px;
}
.about-purpose .bracket-box {
  background: var(--white);
  box-shadow: 0 30px 20px rgba(0, 0, 0, 0.08);
}

.about-purpose {
  background: var(--linen);
}

/* ── ABOUT PURPOSE MEDIA QUERIES ── */
/* Mobile */
@media (max-width: 420px) {
  .about-purpose {
    padding: 40px 20px;
  }
  .about-purpose-title {
    font-size: 28px;
    margin-bottom: 28px;
  }
}

/* Tablet */
@media (min-width: 421px) and (max-width: 912px) {
  .about-purpose {
    padding: 60px 32px;
  }
  .about-purpose-title {
    font-size: 34px;
  }
}

/* Desktop */
@media (min-width: 913px) {
  .about-purpose {
    padding: 80px 56px;
  }
  .about-purpose-title {
    font-size: 42px;
  }
}

/* ── HIGHLIGHTS SECTION ── */
.highlights-section {
  padding: 80px 56px;
  background: var(--white);
}

.highlights-label {
  font-family: var(--font-nav);
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.highlights-title {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 400;
  color: var(--onyx);
  margin-bottom: 40px;
}

.highlights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(201, 168, 76, 0.3);
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 20px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.3);
}

.highlight-item:nth-child(odd) {
  border-right: 1px solid rgba(201, 168, 76, 0.3);
}

.highlight-icon {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.highlight-name {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--onyx);
}

/* Mobile */
@media (max-width: 420px) {
  .highlights-section {
    padding: 40px 20px;
  }
  .highlights-title {
    font-size: 28px;
  }
  .highlights-grid {
    grid-template-columns: 1fr;
  }
  .highlight-item:nth-child(odd) {
    border-right: none;
  }
  .highlight-icon {
    width: 40px;
    height: 40px;
  }
  .highlight-name {
    font-size: 14px;
  }
}

/* Tablet */
@media (min-width: 421px) and (max-width: 912px) {
  .highlights-section {
    padding: 60px 32px;
  }
  .highlights-title {
    font-size: 34px;
  }
  .highlight-icon {
    width: 46px;
    height: 46px;
  }
}

/* Desktop */
@media (min-width: 913px) {
  .highlights-section {
    padding: 80px 56px;
  }
  .highlights-title {
    font-size: 42px;
  }
}

    /* GALLERY PAGE */
    /* ── GALLERY HERO ── */
.gallery-hero {
  background-image: url('../images/Assets/diagonal-texture-v3.svg');
  background-size: cover;
  background-color: var(--walnut);
  padding: 160px 56px 80px;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
}

.gallery-hero-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gallery-hero-label {
  font-family: var(--font-nav);
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
}

.gallery-hero-title {
  font-family: var(--font-heading);
  font-size: 64px;
  font-weight: 400;
  color: var(--white);
  font-style: italic;
}

.gallery-hero-desc {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(232, 229, 208, 0.7);
}

/* ── GALLERY UNIT ── */
.gallery-unit {
  padding: 80px 56px;
  background: var(--white);
}

.gallery-unit-dark {
  background: var(--walnut);
}

.gallery-unit-label {
  font-family: var(--font-nav);
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.gallery-unit-title {
  font-family: var(--font-heading);
  font-size: 70px;
  font-weight: 600;
  color: var(--onyx);
  margin-bottom: 10px;
}

.gallery-unit-dark .gallery-unit-title {
  color: var(--white);
}

.gallery-unit-title span {
  font-style: italic;
  color: var(--gold);
}

.gallery-unit-divider {
  width: 50px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 20px;
}

.gallery-unit-desc {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.8;
  color: var(--walnut);
  max-width: 760px;
  margin-bottom: 32px;
}

.gallery-unit-dark .gallery-unit-desc {
  color: rgba(232, 229, 208, 0.7);
}

/* ── SLIDESHOW ── */
.slideshow-wrapper {
  max-width: 100%;
  width: 100%;
}

.slideshow-box {
  padding: 16px 16px 24px;
  background: var(--white);
  max-width: 100%;
}

.bracket-box-dark {
  background: rgba(255,255,255,0.05);
}

.slideshow {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
}

.slide-img {
  position: absolute;
  top: 0; left: 0;
  transform: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.slide-img.active {
  opacity: 1;
}

.slide-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 16px;
}

.slide-btn {
  font-family: var(--font-nav);
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--gold);
  background: transparent;
  border: 1px solid var(--gold);
  padding: 8px 20px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.slide-btn:hover {
  background: var(--gold);
  color: var(--onyx);
}

.slide-btn:disabled {
  opacity: 0;
  pointer-events: none;
}

.slide-counter {
  font-family: var(--font-nav);
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--bronze);
}

/* ── DEMO REEL ── */
.demo-reel {
  padding: 80px 56px;
  background: var(--linen);
  display: flex;
  justify-content: flex-start;
}

.demo-reel-box {
  max-width: 100%;
  width: 100%;
  padding: 40px;
  background: var(--linen);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.demo-reel-box video {
  width: 100%;
  border-radius: 8px;
  display: block;
}

.demo-reel-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-style: italic;
  color: var(--onyx);
}

.demo-reel-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-style: italic;
  color: var(--white);
}

/* Mobile */
@media (max-width: 420px) {
  .gallery-hero { padding: 120px 20px 50px; }
  .gallery-hero-title { font-size: 40px; }
  .gallery-hero-desc { font-size: 13px; }
  .gallery-unit { padding: 40px 20px; }
  .gallery-unit-title { font-size: 32px; }
  .demo-reel { padding: 40px 20px; }
  .demo-video-placeholder { height: 220px; }
  .demo-reel-title { font-size: 20px; }
}

/* Tablet */
@media (min-width: 421px) and (max-width: 912px) {
  .gallery-hero { padding: 140px 32px 60px; }
  .gallery-hero-title { font-size: 52px; }
  .gallery-hero-desc { font-size: 14px; }
  .gallery-unit { padding: 60px 32px; }
  .gallery-unit-title { font-size: 40px; }

  .demo-reel { padding: 60px 32px; }
  .demo-video-placeholder { height: 300px; }
}

/* Desktop */
@media (min-width: 913px) {
  .gallery-hero { padding: 160px 56px 80px; }
  .gallery-unit { padding: 80px 56px; }
  .demo-reel { padding: 80px 56px; }
}


/* ── RATES HERO ── */
.rates-hero {
  background-image: url('../images/Assets/diagonal-texture-v3.svg');
  background-size: cover;
  background-color: var(--walnut);
  padding: 160px 56px 80px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
}

.rates-hero-label {
  font-family: var(--font-nav);
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.rates-hero-title {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 400;
  color: var(--white);
}

/* ── RATES SECTION ── */
.rates-section {
  padding: 60px 56px;
  background: var(--linen);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

/* ── TOGGLE ── */
.rates-toggle {
  display: flex;
  gap: 0;
  border: 1px solid var(--gold);
}

.toggle-btn {
  font-family: var(--font-nav);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 12px 40px;
  background: transparent;
  color: var(--gold);
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.toggle-btn.active {
  background: var(--gold);
  color: var(--onyx);
}

.toggle-btn:hover {
  background: var(--bronze);
  color: var(--white);
}

/* ── VILLA CARD ── */
.villa-card {
  background: var(--walnut);
  max-width: 520px;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
}

.villa-card-header {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.3);
}

.villa-card-label {
  font-family: var(--font-nav);
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
}

.villa-card-title {
  font-family: var(--font-logo);
  font-size: 22px;
  letter-spacing: 0.2em;
  display: flex;
  gap: 10px;
  align-items: center;
}

.tc-gold { color: var(--gold); }
.tc-white { color: var(--white); }
.tc-italic { font-style: italic; }

.villa-guest-box {
  background: var(--white);
  padding: 12px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin: 8px 0;
}

.villa-guest-number {
  font-family: var(--font-heading);
  font-size: 36px;
  color: var(--gold);
  line-height: 1;
}

.villa-guest-label {
  font-family: var(--font-nav);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--onyx);
}

.villa-details {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(232, 229, 208, 0.6);
  text-align: center;
}

/* ── RATE OPTIONS ── */
.villa-card-body {
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.rate-option {
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.rate-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 4px;
}

.rate-desc {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(232, 229, 208, 0.6);
  line-height: 1.6;
}

.rate-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.rate-amount {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--gold);
  white-space: nowrap;
}

.rate-per {
  font-family: var(--font-nav);
  font-size: 10px;
  color: rgba(232, 229, 208, 0.5);
  letter-spacing: 1px;
}

/* ── AMENITIES ── */
.amenities-header {
  display: flex;
  gap: 8px;
  align-items: center;
  padding-top: 8px;
}

.amenities-label {
  font-family: var(--font-nav);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--gold);
}

.amenities-count {
  font-family: var(--font-nav);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--gold);
}

.amenities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(232, 229, 208, 0.8);
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.amenity-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: invert(1) opacity(0.7);
}

/* ── VILLA BUTTONS ── */
.villa-card-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.villa-btn-primary {
  font-family: var(--font-nav);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 16px;
  background: var(--gold);
  color: var(--onyx);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  display: block;
  transition: background 0.2s, color 0.2s;
}

.villa-btn-primary:hover {
  background: var(--bronze);
  color: var(--white);
}

.villa-btn-secondary {
  font-family: var(--font-nav);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 16px;
  background: var(--gold);
  color: var(--onyx);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.villa-btn-secondary:hover {
  background: var(--bronze);
  color: var(--white);
}

/* Mobile */
@media (max-width: 420px) {
  .rates-hero {
    padding: 120px 20px 50px;
  }
  .rates-hero-title {
    font-size: 32px;
  }
  .rates-section {
    padding: 40px 20px;
  }
  .toggle-btn {
    padding: 10px 24px;
    font-size: 11px;
  }
  .rate-option {
    flex-direction: column;
    align-items: flex-start;
  }
  .rate-price {
    align-items: flex-start;
  }
}

/* Tablet */
@media (min-width: 421px) and (max-width: 912px) {
  .rates-hero {
    padding: 140px 32px 60px;
  }
  .rates-hero-title {
    font-size: 42px;
  }
  .rates-section {
    padding: 50px 32px;
  }
}

/* Desktop */
@media (min-width: 913px) {
  .rates-hero {
    padding: 160px 56px 80px;
  }
  .rates-hero-title {
    font-size: 52px;
  }
  .rates-section {
    padding: 60px 56px;
  }
}

/* ── BOOKING ───────────────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* ── BOOKING MEDIA QUERIES ── */
/* Mobile */
@media (max-width: 420px) {
  .page-header {
    padding: 44px 20px 36px;
  }
  .page-header h1 {
    font-size: 28px;
  }
  .form-wrap {
    padding: 28px 16px;
  }
  .fgrid {
    grid-template-columns: 1fr;
  }
}

/* Tablet */
@media (min-width: 421px) and (max-width: 912px) {
  .page-header {
    padding: 52px 32px 44px;
  }
  .page-header h1 {
    font-size: 32px;
  }
  .form-wrap {
    padding: 36px 24px;
  }
}

/* Desktop */
@media (min-width: 913px) {
  .page-header {
    padding: 60px 56px 52px;
  }
  .page-header h1 {
    font-size: 38px;
  }
  .form-wrap {
    padding: 40px 56px;
  }
}

.page-header { background-color: var(--walnut); background-image: url('../images/Assets/diagonal-texture-v3.svg'); background-size: cover; background-repeat: no-repeat; background-position: center; padding: 60px 28px 52px; text-align: center; }
.overline { font-family: 'Montserrat', sans-serif; font-size: 9px; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; color: rgba(201,168,76,0.6); margin-bottom: 12px; }
.page-header h1 { font-family: 'Cormorant Garamond', serif; font-size: 38px; font-weight: 400; color: var(--white); margin-bottom: 8px; line-height: 1.2; }
.page-header p { font-family: 'Lato', sans-serif; font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.4); line-height: 1.7; }
 
/* FORM */
.form-wrap { background: var(--linen); padding: 40px 20px; background-image: repeating-linear-gradient(45deg, transparent, transparent 26px, rgba(201,168,76,0.03) 26px, rgba(201,168,76,0.03) 27px); }
.form-card { background: var(--form-bg); border: 1px solid rgba(201,168,76,0.2); border-radius: 6px; padding: 28px 22px; max-width: 680px; margin: 0 auto; box-shadow: 0 4px 24px rgba(26,22,17,0.07); }
.fsec-title { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 600; color: var(--onyx); margin-bottom: 18px; padding-bottom: 10px; border-bottom: 1px solid rgba(201,168,76,0.25); }
.fgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 20px; }
.fgrid.full { grid-template-columns: 1fr; }
.fgroup { display: flex; flex-direction: column; gap: 5px; }
.fgroup.span2 { grid-column: 1 / -1; }
label { font-family: 'Montserrat', sans-serif; font-size: 9px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--bronze); }
label .req { color: var(--gold); margin-left: 2px; }
input, select, textarea { font-family: 'Lato', sans-serif; font-size: 13px; font-weight: 300; color: var(--onyx); background: var(--white); border: 1px solid rgba(160,140,90,0.3); border-radius: 4px; padding: 10px 12px; outline: none; transition: border-color 0.2s, box-shadow 0.2s; width: 100%; }
input::placeholder, textarea::placeholder { color: rgba(26,22,17,0.3); }
input:focus, select:focus, textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.1); }
select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23A08C5A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 32px; }
textarea { resize: vertical; min-height: 100px; }
 
/* DATE TRIGGER BUTTON */
.date-trigger { font-family: 'Lato', sans-serif; font-size: 13px; font-weight: 300; background: var(--white); border: 1px solid rgba(160,140,90,0.3); border-radius: 4px; padding: 10px 12px; cursor: pointer; width: 100%; text-align: left; display: flex; align-items: center; justify-content: space-between; transition: border-color 0.2s, box-shadow 0.2s; color: rgba(26,22,17,0.3); }
.date-trigger.has-value { color: var(--onyx); }
.date-trigger:hover { border-color: rgba(201,168,76,0.5); }
.date-trigger.error { border-color: rgba(200,60,60,0.6) !important; box-shadow: 0 0 0 3px rgba(200,60,60,0.08) !important; }
.date-ico { width: 15px; height: 15px; flex-shrink: 0; opacity: 0.4; }
 
.form-divider { height: 1px; background: rgba(201,168,76,0.2); margin: 24px 0; }
 
.reminders { background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.3); border-left: 3px solid var(--gold); border-radius: 4px; padding: 16px 18px; margin-bottom: 22px; }
.rem-title { font-family: 'Montserrat', sans-serif; font-size: 9px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--bronze); margin-bottom: 10px; display: flex; align-items: center; gap: 6px; }
.reminders ul { list-style: none; display: flex; flex-direction: column; gap: 5px; }
.reminders li { font-family: 'Lato', sans-serif; font-size: 11px; font-weight: 300; color: #666; padding-left: 14px; position: relative; line-height: 1.5; }
.reminders li::before { content: '•'; color: var(--gold); position: absolute; left: 0; }
 
.btn-submit { width: 100%; font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; background: var(--gold); color: var(--onyx); border: none; padding: 15px; border-radius: 4px; cursor: pointer; transition: background 0.2s, transform 0.15s; margin-bottom: 10px; }
.btn-submit:hover { background: var(--bronze); transform: translateY(-1px); }
.form-terms { font-family: 'Lato', sans-serif; font-size: 10px; font-weight: 300; color: rgba(26,22,17,0.35); text-align: center; line-height: 1.6; }
 
/* CONTACT */
.contact-sec { padding: 44px 20px; background: var(--white); text-align: center; }
.contact-sec h2 { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 400; color: var(--onyx); margin-bottom: 6px; }
.contact-sec p { font-family: 'Lato', sans-serif; font-size: 13px; font-weight: 300; color: #888; margin-bottom: 28px; }
.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; max-width: 420px; margin: 0 auto; }
.contact-card { background: var(--linen); border: 1px solid rgba(201,168,76,0.2); border-radius: 6px; padding: 24px 18px; text-align: center; transition: transform 0.2s, box-shadow 0.2s; }
.contact-card:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(26,22,17,0.08); }
.contact-icon { width: 52px; height: 52px; border-radius: 50%; border: 1.5px solid var(--gold); background: rgba(201,168,76,0.08); display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; }
.contact-icon svg { width: 24px; height: 24px; }
.contact-label { font-family: 'Montserrat', sans-serif; font-size: 9px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--bronze); margin-bottom: 4px; }
.contact-value { font-family: 'Lato', sans-serif; font-size: 12px; font-weight: 400; color: var(--onyx); }
 
/* FOOTER */
.footer { background: var(--onyx); border-top: 1px solid rgba(201,168,76,0.15); padding: 32px 28px 18px; }
.footer-logo { font-family: 'Cinzel', serif; font-size: 13px; font-weight: 600; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 4px; }
.footer-tag { font-size: 11px; font-weight: 300; color: rgba(255,255,255,0.3); margin-bottom: 22px; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; margin-bottom: 20px; }
.fcol-title { font-family: 'Montserrat', sans-serif; font-size: 8px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.ftext { font-size: 11px; font-weight: 300; color: rgba(255,255,255,0.38); line-height: 1.8; }
.flink { color: rgba(255,255,255,0.38); font-size: 11px; text-decoration: none; display: block; margin-bottom: 4px; transition: color 0.2s; }
.flink:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(201,168,76,0.1); padding-top: 12px; font-size: 10px; font-weight: 300; color: rgba(255,255,255,0.2); text-align: center; letter-spacing: 1px; }

/* ── CONTACT & FOOTER (BOOKING PAGE) MEDIA QUERIES ── */
/* Mobile */
@media (max-width: 420px) {
  .contact-sec {
    padding: 36px 16px;
  }
  .contact-cards {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
  .contact-card {
    padding: 20px 14px;
  }
  .footer {
    padding: 28px 16px 14px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Tablet */
@media (min-width: 421px) and (max-width: 912px) {
  .contact-sec {
    padding: 40px 24px;
  }
  .contact-cards {
    max-width: 560px;
    grid-template-columns: 1fr 1fr;
  }
  .footer {
    padding: 32px 24px 16px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Desktop */
@media (min-width: 913px) {
  .contact-sec {
    padding: 44px 56px;
  }
  .footer {
    padding: 32px 56px 18px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
 
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.on { opacity: 1; transform: none; }
 
/* ── CALENDAR MODAL ── */
.cal-overlay { display: none; position: fixed; inset: 0; background: rgba(26,22,17,0.82); backdrop-filter: blur(6px); z-index: 999; align-items: center; justify-content: center; padding: 16px; }
.cal-overlay.open { display: flex; }
.cal-modal { background: var(--onyx); border: 1px solid rgba(201,168,76,0.3); border-radius: 10px; width: 100%; max-width: 400px; box-shadow: 0 24px 64px rgba(0,0,0,0.65); animation: calIn 0.28s cubic-bezier(0.34,1.56,0.64,1); overflow: hidden; }
@keyframes calIn { from { opacity: 0; transform: translateY(24px) scale(0.96); } to { opacity: 1; transform: none; } }
 
.cal-head { background: rgba(201,168,76,0.07); border-bottom: 1px solid rgba(201,168,76,0.15); padding: 18px 22px 14px; display: flex; align-items: flex-start; justify-content: space-between; }
.cal-pkg-label { font-family: 'Montserrat', sans-serif; font-size: 8px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(201,168,76,0.6); margin-bottom: 3px; }
.cal-pkg-name { font-family: 'Cormorant Garamond', serif; font-size: 21px; font-weight: 600; color: var(--white); font-style: italic; }
.cal-pkg-sub { font-family: 'Lato', sans-serif; font-size: 11px; font-weight: 300; color: rgba(255,255,255,0.35); margin-top: 2px; }
.cal-close { background: none; border: none; cursor: pointer; color: rgba(255,255,255,0.3); font-size: 18px; padding: 2px 4px; transition: color 0.2s; line-height: 1; }
.cal-close:hover { color: var(--gold); }
 
.cal-body { padding: 22px 22px 0; }
.cal-nav { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.cal-nav-btn { background: none; border: 1px solid rgba(201,168,76,0.2); border-radius: 5px; color: rgba(255,255,255,0.5); font-size: 18px; cursor: pointer; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; transition: border-color 0.2s, color 0.2s; line-height: 1; }
.cal-nav-btn:hover { border-color: var(--gold); color: var(--gold); }
.cal-month-label { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 600; color: var(--white); }
 
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; }
.cal-day-lbl { font-family: 'Montserrat', sans-serif; font-size: 8px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: rgba(201,168,76,0.45); text-align: center; padding: 3px 0 10px; }
.cal-cell { aspect-ratio: 1; border-radius: 5px; display: flex; align-items: center; justify-content: center; font-family: 'Lato', sans-serif; font-size: 12px; font-weight: 400; cursor: default; transition: background 0.15s, color 0.15s; border: 1px solid transparent; }
.cal-cell.empty { background: transparent; border-color: transparent; }
.cal-cell.past { color: rgba(255,255,255,0.15); }
.cal-cell.unavailable { background: rgba(160,30,30,0.18); color: rgba(210,80,80,0.55); border-color: rgba(160,30,30,0.25); cursor: not-allowed; text-decoration: line-through; }
.cal-cell.available { background: rgba(201,168,76,0.07); color: rgba(255,255,255,0.7); border-color: rgba(201,168,76,0.18); cursor: pointer; }
.cal-cell.available:hover { background: rgba(201,168,76,0.22); color: var(--white); border-color: rgba(201,168,76,0.6); }
.cal-cell.selected { background: var(--gold) !important; color: var(--onyx) !important; font-weight: 700; border-color: var(--gold) !important; }
.cal-cell.today-ring { outline: 2px solid rgba(201,168,76,0.5); outline-offset: 1px; }
 
.cal-legend { display: flex; gap: 16px; justify-content: center; padding: 16px 0 14px; }
.leg-item { display: flex; align-items: center; gap: 5px; font-family: 'Lato', sans-serif; font-size: 10px; font-weight: 300; color: rgba(255,255,255,0.38); }
.leg-dot { width: 11px; height: 11px; border-radius: 3px; flex-shrink: 0; }
.leg-dot.ld-avail { background: rgba(201,168,76,0.2); border: 1px solid rgba(201,168,76,0.4); }
.leg-dot.ld-unavail { background: rgba(160,30,30,0.25); border: 1px solid rgba(160,30,30,0.4); }
.leg-dot.ld-sel { background: var(--gold); }
 
.cal-strip { margin: 0 22px; padding: 12px 16px; border-radius: 5px; background: rgba(201,168,76,0.08); border: 1px solid rgba(201,168,76,0.2); display: none; }
.cal-strip.show { display: block; }
.strip-lbl { font-family: 'Montserrat', sans-serif; font-size: 8px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(201,168,76,0.6); margin-bottom: 3px; }
.strip-date { font-family: 'Cormorant Garamond', serif; font-size: 17px; font-weight: 600; color: var(--white); }
 
.cal-foot { padding: 14px 22px 22px; display: flex; gap: 10px; }
.btn-cal-cancel { font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; background: none; color: rgba(255,255,255,0.35); border: 1px solid rgba(255,255,255,0.12); padding: 13px 18px; border-radius: 4px; cursor: pointer; transition: all 0.2s; }
.btn-cal-cancel:hover { border-color: rgba(201,168,76,0.3); color: rgba(255,255,255,0.6); }
.btn-cal-confirm { flex: 1; font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; background: var(--gold); color: var(--onyx); border: none; padding: 13px; border-radius: 4px; cursor: pointer; transition: background 0.2s; opacity: 0.4; pointer-events: none; }
.btn-cal-confirm.active { opacity: 1; pointer-events: all; }
.btn-cal-confirm.active:hover { background: var(--bronze); }
 
/* TOAST */
.toast { position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(80px); background: var(--onyx); border: 1px solid var(--gold); border-radius: 6px; padding: 14px 22px; display: flex; align-items: center; gap: 10px; font-family: 'Lato', sans-serif; font-size: 13px; color: var(--white); box-shadow: 0 8px 32px rgba(0,0,0,0.4); z-index: 9999; transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), opacity 0.3s; opacity: 0; pointer-events: none; white-space: nowrap; }
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }
.toast-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }


/* ── CONTACT ───────────────────────────────────────────── */
    .container { max-width: var(--max-w); margin-inline: auto; padding-inline: var(--pad-x); }
    .eyebrow {
      font-family: var(--font-nav);
      font-size: .65rem;
      font-weight: 600;
      letter-spacing: .25em;
      text-transform: uppercase;
      color: #C9A84C(--gold);
    }
    .section-title {
      font-family: var(--font-heading);
      font-size: clamp(2rem, 4vw, 3.25rem);
      font-weight: 300;
      line-height: 1.1;
      color: var(--onyx);
    }
    .divider {
      width: 2.5rem;
      height: 2px;
      background: var(--gold);
      margin: .75rem auto 0;
    }
    .divider--left { margin-left: 0; }

    /* ── CONTACT HERO ──────────────────────────────────────────────── */
    .contact-hero {
      position: relative;
      background-image: url('../images/Assets/diagonal-texture-v3.svg');
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center;
      overflow: hidden;
      min-height: 50vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding-top: 100px;
    }
    .contact-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 80% at 50% 110%, rgba(201,168,76,.14) 0%, transparent 70%);
      pointer-events: none;
    }
    .contact-hero .eyebrow { margin-bottom: .9rem; }
    .contact-hero h1 {
      font-family: var(--font-heading);
      font-size: clamp(2.8rem, 7vw, 5.5rem);
      font-weight: 300;
      color: var(--white);
      letter-spacing: .02em;
      margin-bottom: 1rem;
    }
    .contact-hero p {
      font-family: var(--font-body);
      font-size: clamp(.85rem, 1.5vw, 1rem);
      color: rgba(243,227,216,.65);
      letter-spacing: .04em;
    }
    /* CONFIRMATION PAGE */
.confirm-icon {
  width: 60px; height: 60px;
  background: var(--bronze);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: white;
  margin: 0 auto 1rem;
}
.confirm-title { text-align: center; margin-bottom: 0.5rem; }
.confirm-sub   { text-align: center; color: #aaa; margin-bottom: 1rem; }
.confirm-table { width: 100%; border-collapse: collapse; }
.confirm-table td { padding: 0.6rem 0.5rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
.confirm-table td:first-child { color: #aaa; width: 40%; }
.status-badge { padding: 0.25rem 0.75rem; border-radius: 20px; font-size: 0.8rem; }
.status-badge.pending  { background: rgba(255,193,7,0.15); color: #ffc107; }
.status-badge.approved { background: rgba(76,175,80,0.15); color: #4caf50; }
.status-badge.declined { background: rgba(244,67,54,0.15); color: #f44336; }
.status-badge.paid     { background: rgba(33,150,243,0.15); color: #2196f3; }
.status-badge.confirmed{ background: rgba(76,175,80,0.15); color: #4caf50; }

/* PAYMENT PAGE */
.payment-options { display: flex; flex-direction: column; gap: 1rem; margin-top: 1rem; }
.payment-option {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px; cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.payment-option:hover  { border-color: var(--bronze); }
.payment-option.active { border-color: var(--bronze); background: rgba(201,168,76,0.08); }
.pay-icon  { font-size: 1.8rem; }
.pay-info  { flex: 1; }
.pay-title { font-weight: 600; }
.pay-sub   { font-size: 0.85rem; color: #aaa; }
.pay-check { color: var(--bronze); font-weight: bold; }
.card-form { margin-top: 1rem; }

/* ADMIN DASHBOARD */
.admin-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}
.stat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 1.25rem;
  text-align: center;
}
.stat-card .stat-number { font-size: 2rem; font-weight: 700; color: var(--bronze); }
.stat-card .stat-label  { font-size: 0.85rem; color: #aaa; margin-top: 0.25rem; }

/* BOOKING LIST */
.booking-list { display: flex; flex-direction: column; gap: 0.75rem; }
.booking-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px; cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  text-decoration: none; color: inherit;
}
.booking-item:hover { border-color: var(--bronze); background: rgba(201,168,76,0.05); }
.booking-ref   { font-weight: 700; color: var(--bronze); min-width: 120px; }
.booking-name  { flex: 1; }
.booking-dates { font-size: 0.85rem; color: #aaa; }
.booking-status { min-width: 100px; text-align: right; }

/* BOOKING DETAIL */
.detail-actions { display: flex; gap: 1rem; margin-top: 1.5rem; flex-wrap: wrap; }
.btn-approve {
  flex: 1; padding: 0.85rem;
  background: rgba(76,175,80,0.15);
  border: 1px solid #4caf50;
  color: #4caf50; border-radius: 8px;
  cursor: pointer; font-weight: 600;
  transition: background 0.2s;
}
.btn-approve:hover { background: rgba(76,175,80,0.3); }
.btn-decline {
  flex: 1; padding: 0.85rem;
  background: rgba(244,67,54,0.15);
  border: 1px solid #f44336;
  color: #f44336; border-radius: 8px;
  cursor: pointer; font-weight: 600;
  transition: background 0.2s;
}
.btn-decline:hover { background: rgba(244,67,54,0.3); }

/* REPLY BOX */
.reply-box { width: 100%; margin-top: 1rem; }
.reply-box textarea {
  width: 100%; min-height: 120px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px; padding: 0.85rem;
  color: inherit; font-family: inherit;
  resize: vertical;
}
/* ADMIN TOAST */
.admin-toast {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  background: var(--onyx);
  border: 1px solid var(--gold);
  border-radius: 10px;
  padding: 2rem 2.5rem;
  text-align: center;
  z-index: 9999;
  min-width: 300px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.admin-toast.show {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}
.admin-toast-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.admin-toast-msg {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.admin-toast-btn {
  background: var(--gold);
  color: var(--onyx);
  border: none;
  padding: 0.6rem 2rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  cursor: pointer;
  border-radius: 4px;
}
.admin-toast-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.admin-toast-overlay.show {
  opacity: 1;
  pointer-events: all;
}

/* PAYMENT TABLE */
.confirm-table td {
  padding: 10px 12px;
  border-bottom: 1px solid rgba(201,168,76,0.15);
  font-family: 'Lato', sans-serif;
  font-size: 13px;
}
.confirm-table td:first-child {
  color: #888;
  width: 40%;
  font-weight: 300;
}
.confirm-table td:last-child {
  color: var(--onyx);
  font-weight: 400;
}

 /* ── MAP ─────────────────────────────────────────────────── */
    .map-section { line-height: 0; }
    .map-section iframe {
      width: 100%;
      height: clamp(220px, 35vw, 460px);
      border: none;
      display: block;
    }
    /* Fallback placeholder when iframe is shown */
    .map-placeholder {
      width: 100%;
      height: clamp(220px, 35vw, 460px);
      background: #d0cdc0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-nav);
      font-size: .75rem;
      letter-spacing: .12em;
      color: #888;
      text-transform: uppercase;
    }

    /* ── FIND US ─────────────────────────────────────────────── */
    .find-us {
      background: var(--white);
      padding-block: var(--section-gap);
    }
    .find-us__header { text-align: center; margin-bottom: 3.5rem; }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
    }
    .contact-card {
      border: 1px solid var(--linen);
      padding: 2rem 1.75rem;
      display: flex;
      gap: 1.25rem;
      align-items: flex-start;
      transition: border-color .25s, box-shadow .25s;
    }
    .contact-card:hover {
      border-color: var(--gold);
      box-shadow: 0 4px 24px rgba(201,168,76,.08);
    }
    .contact-card__icon {
      width: 2.5rem;
      height: 2.5rem;
      border: 1px solid var(--gold);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: var(--gold);
    }
    .contact-card__icon svg { width: 1rem; height: 1rem; }
    .contact-card__label {
      font-family: var(--font-nav);
      font-size: .6rem;
      font-weight: 600;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--bronze);
      margin-bottom: .4rem;
    }
    .contact-card__sub {
      font-family: var(--font-body);
      font-size: .78rem;
      color: var(--bronze);
      margin-bottom: .5rem;
      font-style: italic;
    }
    .contact-card__info {
      font-family: var(--font-body);
      font-size: .9rem;
      color: var(--onyx);
      line-height: 1.6;
    }
    .contact-card__info a {
    color: var(--onyx);
    text-decoration: none;
    }
    .contact-card__info a:hover { color: var(--gold); }
    .contact-card__links {
      display: flex;
      gap: .75rem;
      margin-top: .35rem;
    }
    .contact-card__links a {
      font-family: var(--font-nav);
      font-size: .7rem;
      font-weight: 500;
      letter-spacing: .08em;
      color: var(--bronze);
      text-decoration: underline;
      text-underline-offset: 3px;
    }
    .contact-card__links a:hover { color: var(--gold); }

    /* ── GET IN TOUCH (dark) ─────────────────────────────────── */
    .get-in-touch {
      background: var(--walnut);
      padding-block: var(--section-gap);
    }
    .get-in-touch .section-title { color: var(--white); }

    /* Two-column wrapper: left = heading + info, right = form */
    .git-inner {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: clamp(2rem, 5vw, 5rem);
      align-items: start;
      margin-top: 0;
    }
    /* The eyebrow/title/divider live inside the left col now */
    .git-header { margin-bottom: 2.5rem; }

    /* Left column */
    .git-info { color: var(--linen); }
    .git-row {
      display: flex;
      gap: 1.1rem;
      align-items: flex-start;
      margin-bottom: 2rem;
    }
    .git-row__icon {
      width: 2rem;
      height: 2rem;
      border: 1px solid rgba(201,168,76,.4);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: var(--gold);
      margin-top: .1rem;
    }
    .git-row__icon svg { width: .85rem; height: .85rem; }
    .git-row__label {
      font-family: var(--font-nav);
      font-size: .58rem;
      font-weight: 600;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: .35rem;
    }
    .git-row__text {
      font-family: var(--font-body);
      font-size: .875rem;
      line-height: 1.65;
      color: rgba(232,229,208,.8);
    }

    .social-btns {
      display: flex;
      gap: .75rem;
      margin-top: .5rem;
    }
    .social-btn {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      border: 1px solid rgba(201,168,76,.35);
      padding: .45rem 1rem;
      font-family: var(--font-nav);
      font-size: .65rem;
      font-weight: 600;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--linen);
      transition: background .2s, border-color .2s, color .2s;
    }
    .social-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--onyx); }
    .social-btn svg { width: .85rem; height: .85rem; }

    /* Right column – form card */
    .form-card {
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(201,168,76,.2);
      padding: 2.5rem 2rem;
    }
    .form-card h3 {
      font-family: var(--font-heading);
      font-size: 1.6rem;
      font-weight: 400;
      color: var(--white);
      margin-bottom: .4rem;
    }
    .form-card p {
      font-family: var(--font-body);
      font-size: .8rem;
      color: rgba(232,229,208,.6);
      margin-bottom: 1.75rem;
    }

    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    .form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
    .form-group label {
      font-family: var(--font-nav);
      font-size: .58rem;
      font-weight: 600;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--bronze);
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      background: transparent;
      border: none;
      border-bottom: 1px solid rgba(201,168,76,.3);
      padding: .55rem 0;
      font-family: var(--font-body);
      font-size: .875rem;
      color: var(--white);
      outline: none;
      width: 100%;
      transition: border-color .2s;
      appearance: none;
    }
    .form-group input::placeholder,
    .form-group textarea::placeholder { color: rgba(255,255,255,.2); }
    .form-group select { background: transparent; color: rgba(255,255,255,.6); cursor: pointer; }
    .form-group select option { background: var(--walnut); color: var(--white); }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus { border-bottom-color: var(--gold); }
    .form-group textarea { resize: vertical; min-height: 90px; line-height: 1.5; }

    .select-wrapper { position: relative; }
    .select-wrapper::after {
      content: '';
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      border-left: 4px solid transparent;
      border-right: 4px solid transparent;
      border-top: 5px solid var(--bronze);
      pointer-events: none;
    }

    .btn-submit {
      display: inline-block;
      background: var(--gold);
      color: var(--onyx);
      font-family: var(--font-nav);
      font-size: .7rem;
      font-weight: 700;
      letter-spacing: .18em;
      text-transform: uppercase;
      padding: .85rem 2.5rem;
      border: none;
      cursor: pointer;
      transition: background .2s, transform .15s;
      margin-top: .5rem;
    }
    .btn-submit:hover { background: var(--bronze); transform: translateY(-1px); }

    /* ── FAQ ─────────────────────────────────────────────────── */
    .faq-section {
      background: var(--linen);
      padding-block: var(--section-gap);
    }
    .faq-section .section-title { color: var(--onyx); }
    .faq-section__header { text-align: center; margin-bottom: 3.5rem; }

    .faq-list { max-width: 780px; margin-inline: auto; }
    .faq-item {
      border-top: 1px solid rgba(160,140,90,.25);
      padding-block: 1.4rem;
    }
    .faq-item:last-child { border-bottom: 1px solid rgba(160,140,90,.25); }

    .faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
      cursor: pointer;
      list-style: none;
      font-family: var(--font-heading);
      font-size: clamp(1rem, 2vw, 1.2rem);
      font-weight: 600;
      color: var(--onyx);
      line-height: 1.35;
    }
    .faq-question::-webkit-details-marker { display: none; }
    .faq-toggle {
      width: 1.5rem;
      height: 1.5rem;
      border: 1px solid var(--gold);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: var(--gold);
      font-size: 1rem;
      font-weight: 300;
      line-height: 1;
      transition: transform .25s, background .2s;
    }
    details[open] .faq-toggle { transform: rotate(45deg); background: var(--gold); color: var(--onyx); }
    .faq-answer {
      font-family: var(--font-body);
      font-size: .9rem;
      color: #5a4f3c;
      line-height: 1.75;
      padding-top: .85rem;
      padding-right: 2.5rem;
    }

    /* ── RESPONSIVE ──────────────────────────────────────────── */

    /* Tablet (≤ 900px) */
    @media (max-width: 900px) {
      .contact-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
      .git-inner { grid-template-columns: 1fr; gap: 2.5rem; }
      .git-header { margin-bottom: 1.5rem; }
    }

    /* Mobile (≤ 600px) */
    @media (max-width: 600px) {
      :root { --pad-x: 1.25rem; }

      .contact-grid { grid-template-columns: 1fr; }
      .contact-card { padding: 1.5rem 1.25rem; }

      .git-inner { margin-top: 2.5rem; }

      .form-row { grid-template-columns: 1fr; }
      .form-card { padding: 2rem 1.25rem; }

      .social-btns { flex-wrap: wrap; }

      .faq-question { font-size: .95rem; }
      .faq-answer { padding-right: 0; }
    }

    /* CONTACT PAGE SPACING FIX */
.find-us {
  padding-block: 5rem;
}

.contact-grid {
  gap: 2rem;
}

.contact-card {
  padding: 2.5rem 2rem;
  gap: 1.5rem;
}

.get-in-touch {
  padding-block: 5rem;
}

.git-inner {
  padding-top: 3rem;
}

.git-row {
  margin-bottom: 2.5rem;
}

.faq-section {
  padding-block: 5rem;
}

.faq-item {
  padding-block: 1.8rem;
}

.find-us__header {
  margin-bottom: 4rem;
}

.faq-section__header {
  margin-bottom: 4rem;
}
/* ── FULL AMENITIES ── */
.full-amenity-group {
  margin-bottom: 1.5rem;
}
.full-amenity-category {
  font-family: var(--font-nav);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}

