
/* ============================================
   DESIGN SYSTEM — DUAL THEME
   Dark: deep teal night  ·  Light: warm cream gold
   ============================================ */
:root {
  /* DARK PALETTE */
  --night:        #0a1614;
  --night-2:      #111e1c;
  --night-3:      #1a2e2a;
  --night-4:      #243d38;
  --teal:         #2d6b62;
  --teal-bright:  #3d8c82;

  /* LIGHT PALETTE */
  --cream:        #f7f2e8;
  --cream-2:      #efe8d8;
  --parchment:    #e8ddc8;
  --warm-white:   #faf7f2;

  /* GOLD — bridges both themes */
  --gold:         #c9a84c;
  --gold-2:       #debb6a;
  --gold-3:       #e8cc7e;
  --gold-pale:    #f3e6b8;

  /* EARTH */
  --earth:        #8b6535;
  --earth-2:      #a67c42;
  --stone:        #9a8f7e;

  /* TYPE */
  --type-dark:    #0d1a18;
  --type-mid:     #3a3530;
  --type-muted:   #7a7060;
  --type-light:   #f7f2e8;
  --type-ghost:   rgba(247,242,232,0.55);

  /* RADIUS / SIZING */
  --r: 0px; /* sharp corners — editorial */
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--cream);
  color: var(--type-dark);
  overflow-x: hidden;
}

h1,h2,h3,h4 { font-family: 'Cinzel', serif; }

/* ══════════════════════════════════
   NAV — always dark
══════════════════════════════════ */
nav {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  background: var(--night);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
  border-bottom: 1px solid rgba(201,168,76,0.2);
  transition: background 0.4s, box-shadow 0.4s;
}
nav.scrolled {
  background: rgba(10,22,20,0.98);
  box-shadow: 0 4px 40px rgba(0,0,0,0.4);
  backdrop-filter: blur(12px);
}

.nav-brand {
  display: flex; align-items: center; gap: 12px;
}
.nav-brand-icon {
  width: 36px; height: 36px;
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 0.85rem;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  color: var(--cream); font-size: 1.15rem; font-weight: 700;
  letter-spacing: 0.5px; line-height: 1.2;
}
.nav-logo span {
  display: block; font-size: 0.58rem; letter-spacing: 3px;
  color: var(--gold); font-family: 'Outfit', sans-serif;
  font-weight: 400; text-transform: uppercase; margin-top: 1px;
}

.nav-links { display: flex; gap: 2.2rem; list-style: none; }
.nav-links a {
  color: var(--type-ghost); text-decoration: none; font-size: 0.72rem;
  letter-spacing: 2px; text-transform: uppercase; font-weight: 400;
  transition: color 0.3s; 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 { color: var(--gold-3); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--gold); color: var(--night) !important;
  padding: 8px 20px; font-weight: 600 !important;
  letter-spacing: 1.5px !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-2) !important; color: var(--night) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 1.5px; background: var(--gold); transition: 0.3s; }

/* ══════════════════════════════════
   HERO — DARK THEME
══════════════════════════════════ */
#home {
  min-height: 100vh;
  background: var(--night);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}

.hero {
    position: relative;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8); /* 20% black */
    z-index: 1;
}

.hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* Dark overlay on top of photo */
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,22,20,0.45) 40%,
    rgba(10,22,20,0.25) 80%,
    rgba(10,22,20,0.65) 100%
  );
}

/* Prayer flags rope */
.prayer-rope {
  position: absolute; top: 80px; left: 0; right: 0; height: 3px; z-index: 4;
  overflow: visible; pointer-events: none;
}
.prayer-rope::before {
  content: '';
  position: absolute; top: 0; left: -2%; right: -2%; height: 1.5px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.2) 15%, rgba(255,255,255,0.2) 85%, transparent);
}
.prayer-flags-row {
  position: absolute; top: -12px; left: 5%; display: flex; gap: 0;
}
.pflag {
  width: 22px; height: 16px; margin-right: 8px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  opacity: 0.75;
}
.pflag:nth-child(5n+1) { background: #e8193c; }
.pflag:nth-child(5n+2) { background: #f7f2e8; }
.pflag:nth-child(5n+3) { background: #1a5bd1; }
.pflag:nth-child(5n+4) { background: #28a745; }
.pflag:nth-child(5n+5) { background: #f7a800; }

.hero-content {
  text-align: center; position: relative; z-index: 5;
  padding: 2rem; max-width: 800px;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid rgba(201,168,76,0.4); color: var(--gold-3);
  font-size: 0.62rem; letter-spacing: 5px; text-transform: uppercase;
  padding: 7px 22px; margin-bottom: 2rem;
  animation: fadeUp 1s ease forwards;
}
.hero-eyebrow i { font-size: 0.55rem; }

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  color: var(--cream); font-weight: 900; line-height: 1.02;
  margin-bottom: 0.6rem; letter-spacing: -1px;
  animation: fadeUp 1s 0.15s ease both;
}
.hero-title em {
  color: var(--gold); font-style: italic; font-weight: 700;
  display: block; font-size: 0.75em;
}

.hero-sub {
  font-family: 'Cinzel', serif;
  font-style: italic; color: var(--warm-white);
  font-size: clamp(1rem, 2vw, 1.25rem);
  letter-spacing: 1px; margin-bottom: 0.8rem;
  animation: fadeUp 1s 0.3s ease both;
}

.hero-loc {
  font-size: 0.68rem; letter-spacing: 4px; text-transform: uppercase;
  color: rgba(201,168,76,0.8); margin-bottom: 2.8rem;
  animation: fadeUp 1s 0.45s ease both;
}

.hero-btns {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  animation: fadeUp 1s 0.6s ease both;
}

@keyframes fadeUp { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:translateY(0); } }

.btn-dark-primary {
  background: var(--gold); color: var(--night);
  padding: 15px 40px; font-size: 0.7rem; letter-spacing: 3px;
  text-transform: uppercase; font-weight: 600;
  border: none; cursor: pointer; text-decoration: none; display: inline-block;
  transition: all 0.3s; font-family: 'Outfit', sans-serif;
}
.btn-dark-primary:hover { background: var(--gold-2); transform: translateY(-3px); box-shadow: 0 12px 30px rgba(201,168,76,0.35); }

.btn-dark-outline {
  background: transparent; color: var(--cream);
  padding: 14px 40px; font-size: 0.7rem; letter-spacing: 3px;
  text-transform: uppercase; font-weight: 400;
  border: 1px solid rgba(247,242,232,0.3); cursor: pointer;
  text-decoration: none; display: inline-block; transition: all 0.3s;
  font-family: 'Outfit', sans-serif;
}
.btn-dark-outline:hover { border-color: var(--gold); color: var(--gold); }

.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  z-index: 5; display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero-scroll span { font-size: 0.58rem; letter-spacing: 4px; color: var(--type-ghost); text-transform: uppercase; }
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollAnim 2s ease-in-out infinite;
}
@keyframes scrollAnim { 0%,100%{ opacity:1; transform:scaleY(1); } 50%{ opacity:0.4; transform:scaleY(0.5); } }

/* ══════════════════════════════════
   ABOUT — LIGHT THEME
══════════════════════════════════ */
#about {
  background: var(--warm-white);
  padding: 7rem 5%;
  position: relative;
}

.about-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: center;
  position: relative;
}

/* Section label */
.label-light {
  font-size: 0.62rem; letter-spacing: 5px; text-transform: uppercase;
  color: var(--earth); font-weight: 500; margin-bottom: 1rem;
  display: flex; align-items: center; gap: 10px;
}
.label-light::before {
  content: ''; width: 30px; height: 1px; background: var(--gold);
}

.title-light {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  color: var(--type-dark); font-weight: 700; line-height: 1.15;
  margin-bottom: 1.8rem;
}
.title-light em { font-style: italic; color: var(--earth); font-weight: 400; }

.about-text p {
  color: var(--type-mid); line-height: 1.95; margin-bottom: 1.3rem;
  font-size: 0.9rem; font-weight: 300;
}

.about-divider {
  width: 50px; height: 2px;
  background: linear-gradient(to right, var(--gold), var(--gold-pale));
  margin: 1.8rem 0;
}

.features-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; margin-top: 2rem;
}

.feature-box {
  background: var(--cream); padding: 1.4rem 1.2rem;
  border-top: 2px solid var(--gold);
  transition: transform 0.3s, box-shadow 0.3s;
}
.feature-box:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(139,101,53,0.1); }
.feature-box i { color: var(--gold); font-size: 1.1rem; margin-bottom: 0.7rem; display: block; }
.feature-box h4 { font-family: 'Outfit', sans-serif; font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; color: var(--type-dark); margin-bottom: 0.4rem; font-weight: 600; }
.feature-box p { font-size: 0.78rem; color: var(--type-muted); margin: 0; line-height: 1.6; }

/* About visual side */
.about-visual { position: relative; padding-bottom: 1.5rem; padding-right: 1.5rem; }

.about-img-main {
  width: 100%; height: 480px;
  position: relative; overflow: hidden;
  display: block;
}
.about-img-main img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}

.about-stat-badge {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: var(--gold); padding: 1.8rem 2rem;
  text-align: center; min-width: 140px;
}
.about-stat-badge .stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem; font-weight: 900; color: var(--night); line-height: 1; display: block;
}
.about-stat-badge .stat-lbl {
  font-size: 0.58rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--night-3); margin-top: 4px; display: block; font-weight: 600;
}

/* Small accent image */
.about-accent-img {
  position: absolute; top: 2rem; left: -2rem;
  width: 120px; height: 80px;
  overflow: hidden;
  border: 3px solid var(--warm-white);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.about-accent-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

/* ══════════════════════════════════
   ACCOMMODATION — LIGHT THEME (warm cream)
══════════════════════════════════ */
#accommodation {
  background: var(--cream);
  padding: 7rem 5%;
  position: relative;
}

.section-header { text-align: center; margin-bottom: 4.5rem; }
.section-header .title-light { max-width: 600px; margin: 0 auto 1.8rem; }
.section-header p {
  color: var(--type-muted); font-size: 0.88rem; line-height: 1.8;
  max-width: 500px; margin: 0 auto; font-weight: 300;
}
.section-header .about-divider { margin: 1.5rem auto; }

.rooms-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem; max-width: 1200px; margin: 0 auto;
}

.room-card {
  background: var(--warm-white);
  overflow: hidden; position: relative;
  transition: transform 0.4s, box-shadow 0.4s;
  border-bottom: 3px solid transparent;
}
.room-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(26,46,42,0.12);
  border-bottom-color: var(--gold);
}

.room-img {
  height: 230px; position: relative; overflow: hidden;
}
.room-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  transition: transform 0.5s ease;
}
.room-card:hover .room-img img { transform: scale(1.06); }

.room-badge {
  position: absolute; top: 1.2rem; left: 0;
  background: var(--gold); color: var(--night);
  font-size: 0.58rem; letter-spacing: 2px; text-transform: uppercase;
  padding: 5px 14px; font-weight: 600;
}

.room-body { padding: 2rem; }
.room-body h3 {
  font-size: 1.35rem; color: var(--type-dark);
  margin-bottom: 0.5rem; font-weight: 700;
}
.room-body p { font-size: 0.82rem; color: var(--type-mid); line-height: 1.75; margin-bottom: 1.4rem; font-weight: 300; }

.room-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }
.room-tag {
  font-size: 0.62rem; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--type-dark); border: 1px solid var(--parchment);
  background: var(--cream-2); padding: 4px 11px; font-weight: 500;
}

.room-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 1.2rem; border-top: 1px solid var(--cream-2);
}

.room-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; color: var(--earth); font-weight: 700;
}
.room-price span { font-family: 'Outfit', sans-serif; font-size: 0.7rem; color: var(--stone); font-weight: 300; }

.btn-light-primary {
  background: var(--night); color: var(--cream);
  padding: 10px 22px; font-size: 0.65rem; letter-spacing: 2px;
  text-transform: uppercase; font-weight: 500;
  border: none; cursor: pointer; text-decoration: none; display: inline-block;
  transition: all 0.3s; font-family: 'Outfit', sans-serif;
}
.btn-light-primary:hover { background: var(--teal); color: var(--gold-3); }

/* Amenities strip */
.amenities-strip {
  background: var(--night); color: var(--cream);
  padding: 2.5rem 5%; margin-top: 4rem;
  display: flex; justify-content: center; gap: 4rem; flex-wrap: wrap;
}
.amenity-item { text-align: center; }
.amenity-item i { font-size: 1.3rem; color: var(--gold); display: block; margin-bottom: 0.6rem; }
.amenity-item p { font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase; color: var(--type-ghost); font-weight: 300; }

/* ══════════════════════════════════
   GALLERY — DARK THEME
══════════════════════════════════ */
#gallery {
  background: var(--night-2);
  padding: 7rem 5%;
}

.dark-section-label {
  font-size: 0.62rem; letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 1rem;
  display: flex; align-items: center; gap: 10px;
}
.dark-section-label::before {
  content: ''; width: 30px; height: 1px; background: var(--gold);
}

.dark-section-header { text-align: center; margin-bottom: 4rem; }
.dark-section-header .dark-section-label { justify-content: center; }
.dark-section-header .dark-section-label::before { display: none; }

.title-dark {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  color: var(--cream); font-weight: 700; line-height: 1.15;
}
.title-dark em { font-style: italic; color: var(--gold); font-weight: 400; }

.dark-divider {
  width: 50px; height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin: 1.5rem auto;
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 220px 220px;
  gap: 10px; max-width: 1200px; margin: 0 auto;
}

.g-item {
  overflow: hidden; cursor: pointer; position: relative;
  transition: transform 0.4s;
  max-height: 400px;
}
.g-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.g-item:nth-child(5) { grid-column: span 2; }

.g-item:hover { transform: scale(1.02); z-index: 2; }

.g-box {
  width: 100%; height: 100%; min-height: 220px;
  position: relative; overflow: hidden;
}
.g-box img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  transition: transform 0.5s ease, filter 0.4s;
}
.g-item:nth-child(1) .g-box { min-height: 450px; }
.g-item:hover .g-box img { transform: scale(1.06); filter: brightness(1.08); }

.g-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,22,20,0.75) 0%, transparent 55%);
  display: flex; align-items: flex-end; padding: 1.5rem;
  transition: background 0.3s;
}
.g-item:hover .g-overlay { background: linear-gradient(to top, rgba(10,22,20,0.88) 0%, rgba(10,22,20,0.1) 60%); }

.g-label {
  font-family: 'Playfair Display', serif; color: var(--cream);
  font-size: 1.05rem; font-style: italic;
  transform: translateY(6px); opacity: 0.85;
  transition: all 0.3s;
}
.g-item:hover .g-label { transform: translateY(0); opacity: 1; }

.gallery-note {
  text-align: center; margin-top: 2rem;
  font-size: 0.65rem; letter-spacing: 3px; color: rgba(154,143,126,0.5);
  text-transform: uppercase;
}

/* ══════════════════════════════════
   TESTIMONIALS — LIGHT THEME
══════════════════════════════════ */
#testimonials {
  background: var(--warm-white);
  padding: 7rem 5%;
  position: relative; overflow: hidden;
}

/* Large decorative quote in background */
#testimonials::before {
  content: '\201C';
  position: absolute; top: -2rem; left: 4%;
  font-family: 'Playfair Display', serif;
  font-size: 20rem; color: rgba(201,168,76,0.06);
  line-height: 1; pointer-events: none; z-index: 0;
}

.test-inner { position: relative; z-index: 1; }
.test-header { text-align: center; margin-bottom: 4rem; }

.test-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem; max-width: 1200px; margin: 0 auto;
}

.test-card {
  background: var(--cream);
  padding: 2.5rem; position: relative;
  transition: transform 0.35s, box-shadow 0.35s;
  border-left: 3px solid var(--gold-pale);
}
.test-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 50px rgba(26,46,42,0.1);
  border-left-color: var(--gold);
}

.quote-icon {
  font-family: 'Playfair Display', serif;
  font-size: 4.5rem; color: var(--gold-pale);
  line-height: 0.4; position: absolute;
  top: 1.8rem; left: 2rem; font-weight: 900;
}

.test-stars { color: var(--gold); font-size: 0.75rem; margin-bottom: 1.2rem; letter-spacing: 2px; }

.test-text {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; color: var(--type-mid);
  line-height: 1.85; font-style: italic;
  margin-bottom: 1.8rem; position: relative; z-index: 1;
  margin-top: 1.2rem;
}

.test-author { display: flex; align-items: center; gap: 1rem; }
.author-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--night-3), var(--teal));
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-3); font-weight: 600; font-size: 0.85rem;
  flex-shrink: 0; font-family: 'Outfit', sans-serif;
}
.author-info h4 { font-family: 'Outfit', sans-serif; font-size: 0.78rem; letter-spacing: 1px; text-transform: uppercase; color: var(--type-dark); margin-bottom: 2px; font-weight: 600; }
.author-info span { font-size: 0.72rem; color: var(--stone); }

/* ══════════════════════════════════
   CONTACT — DARK THEME
══════════════════════════════════ */
#contact {
  background: var(--night);
  padding: 7rem 5%;
  position: relative; overflow: hidden;
}

#contact::before {
  content: '';
  position: absolute; top: 0; right: 0; width: 50%; height: 100%;
  background: radial-gradient(ellipse 80% 100% at 100% 50%, rgba(45,107,98,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.contact-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: 5rem; position: relative; z-index: 1;
}

.contact-info .dark-section-label { margin-bottom: 1.2rem; }

.contact-info > p {
  color: var(--type-ghost); font-size: 0.85rem; line-height: 1.85;
  margin-bottom: 2.5rem; font-weight: 300;
}

.contact-list { list-style: none; margin-bottom: 3rem; }
.contact-list li {
  display: flex; align-items: flex-start; gap: 1.2rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.contact-icon-box {
  width: 38px; height: 38px; flex-shrink: 0;
  border: 1px solid rgba(201,168,76,0.4);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 0.85rem;
  transition: background 0.3s;
}
.contact-list li:hover .contact-icon-box { background: rgba(201,168,76,0.1); }
.contact-text label {
  display: block; font-size: 0.58rem; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(154,143,126,0.6); margin-bottom: 3px;
}
.contact-text span { font-size: 0.88rem; color: var(--cream); }
.contact-text a { color: var(--cream); text-decoration: none; transition: color 0.3s; }
.contact-text a:hover { color: var(--gold-3); }

.social-row { display: flex; gap: 0.8rem; }
.social-btn {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--stone); font-size: 0.9rem;
  transition: all 0.3s; text-decoration: none;
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.08); }

/* Form */
.contact-form-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 3rem;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.f-group { margin-bottom: 1rem; }
.f-group label {
  display: block; font-size: 0.6rem; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(154,143,126,0.7); margin-bottom: 8px;
}
.f-group input,
.f-group textarea,
.f-group select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--cream); padding: 14px 16px;
  font-family: 'Outfit', sans-serif; font-size: 0.85rem;
  outline: none; transition: border-color 0.3s;
  -webkit-appearance: none;
}
.f-group input:focus,
.f-group textarea:focus,
.f-group select:focus { border-color: var(--gold); background: rgba(201,168,76,0.04); }
.f-group input::placeholder,
.f-group textarea::placeholder { color: rgba(247,242,232,0.2); }
.f-group textarea { height: 110px; resize: vertical; }
.f-group select option { background: var(--night-2); color: var(--cream); }

.btn-form-submit {
  width: 100%; background: var(--gold); color: var(--night);
  padding: 17px; font-size: 0.72rem; letter-spacing: 3px;
  text-transform: uppercase; font-weight: 700;
  border: none; cursor: pointer; font-family: 'Outfit', sans-serif;
  transition: all 0.3s; display: flex; align-items: center; justify-content: center; gap: 10px;
}
.btn-form-submit:hover { background: var(--gold-2); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(201,168,76,0.3); }

/* ══════════════════════════════════
   FOOTER — DARKEST
══════════════════════════════════ */
footer {
  background: var(--night);
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 2.5rem 5%;
  text-align: center;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; color: var(--cream);
  margin-bottom: 0.4rem; font-weight: 700;
}
footer p { font-size: 0.68rem; letter-spacing: 1.5px; color: var(--stone); line-height: 2; }
footer span { color: var(--gold); }
.footer-divider {
  width: 40px; height: 1px; background: var(--gold);
  margin: 1.2rem auto;
}

/* ══════════════════════════════════
   SECTION TRANSITIONS — gradient blends
══════════════════════════════════ */
.theme-bridge-dark-to-light {
  height: 3px;
  background: linear-gradient(to right, var(--gold), var(--earth), var(--gold));
}

/* ══════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 960px) {
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { display: none; }
  .rooms-grid { grid-template-columns: 1fr 1fr; }
  .gallery-masonry { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .g-item:nth-child(1) { grid-column: span 2; }
  .g-item:nth-child(5) { grid-column: span 2; }
  .g-item:nth-child(1) .g-box { min-height: 300px; }
  .test-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .amenities-strip { gap: 2rem; }
}

@media (max-width: 640px) {
  nav { padding: 0 1.2rem; }
  .nav-links {
    display: none; flex-direction: column;
    position: fixed; top: 68px; left: 0; right: 0;
    background: var(--night); padding: 2rem 1.5rem;
    gap: 1.5rem; border-bottom: 1px solid rgba(201,168,76,0.15);
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .nav-cta { display: none; }
  section, #about, #accommodation, #gallery, #testimonials, #contact { padding: 5rem 1.2rem; }
  .rooms-grid { grid-template-columns: 1fr; }
  .gallery-masonry { grid-template-columns: 1fr; }
  .g-item:nth-child(1) { grid-column: span 1; }
  .g-item:nth-child(5) { grid-column: span 1; }
  .form-row { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .amenities-strip { gap: 1.5rem; }
  .contact-form-card { padding: 1.8rem; }
}