/* Font Awesome icon sizing fixes */
.imp-feat-icon .fa {
  font-size: 1.8rem;
  color: var(--gold);
}

.imp-amenity-icon .fa {
  font-size: 1.9rem;
  color: var(--gold);
}

.imp-gallery-overlay .fa {
  font-size: 1.8rem;
  color: var(--gold);
}

.imp-hero-badge .fa {
  font-size: 0.85rem;
}

.imp-footer-col ul li .fa {
  margin-right: 4px;
}

/* ==============================================
   HOTEL IMPERIAL DIEGO â€” LUXURY DESIGN SYSTEM
   Palette: Deep Navy #0a1628 | Gold #c9a84c | Ivory #f5f0e8
   Fonts: Playfair Display + Inter
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Inter:wght@300;400;500;600&display=swap');

/* â”€â”€â”€ RESET & BASE â”€â”€â”€ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #0d261e;
  /* Deep emerald dark */
  --navy2: #071711;
  --gold: #d16b34;
  /* Sunset Orange */
  --gold2: #e07a41;
  --ivory: #f3efe8;
  /* Limestone beige */
  --white: #ffffff;
  --grey: #75837a;
  --light: #faf8f5;
  --emerald: #145942;
  /* Deep emerald green */
  --shadow: 0 16px 48px rgba(13, 38, 30, 0.15);
  --shadow2: 0 6px 24px rgba(13, 38, 30, 0.08);
  --radius: 16px;
  --trans: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--light);
  color: var(--navy);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Playfair Display', serif;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: var(--trans);
}

a:hover {
  color: var(--gold2);
}

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

/* â”€â”€â”€ SCROLLBAR â”€â”€â”€ */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--navy);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
}

/* â”€â”€â”€ NAVBAR â”€â”€â”€ */
.imp-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 84px;
  background: rgba(255, 255, 255, 0.85);
  /* Light glassmorphism */
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(13, 38, 30, 0.08);
  transition: var(--trans);
}

.imp-nav.scrolled {
  height: 70px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
}

.imp-logo {
  font-family: 'Playfair Display', serif;
  color: var(--navy);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.imp-logo span {
  color: var(--gold);
}

.imp-logo img {
  height: 44px;
  width: auto;
}

.imp-nav-links {
  display: flex;
  gap: 6px;
  list-style: none;
  align-items: center;
}

.imp-nav-links a {
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 6px;
  position: relative;
  transition: var(--trans);
}

.imp-nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
  transition: var(--trans);
}

.imp-nav-links a:hover,
.imp-nav-links a.active {
  color: var(--gold);
  background: rgba(13, 38, 30, 0.05);
}

.imp-nav-links a:hover::after,
.imp-nav-links a.active::after {
  width: 60%;
}

.imp-nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 8px;
}

.imp-nav-cta:hover {
  background: var(--gold2) !important;
  color: var(--navy) !important;
  transform: translateY(-1px);
}

.imp-nav-cta::after {
  display: none !important;
}

/* Mobile hamburger */
.imp-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
}

.imp-hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--trans);
}

.imp-hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.imp-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.imp-hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* â”€â”€â”€ HERO â”€â”€â”€ */
.imp-hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.imp-hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/184148.jpg') center/cover no-repeat;
}

.imp-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><radialGradient id="g" cx="50%" cy="40%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.3"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><rect width="1200" height="800" fill="url(%23g)"/></svg>') center/cover;
}

.imp-hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* ─── BOOKING WIDGET ─── */
.imp-booking-wrapper {
  position: relative;
  z-index: 20;
  margin-top: -80px;
  padding: 0 24px;
}

.imp-booking-widget {
  background: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  padding: 12px 24px;
  gap: 20px;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.imp-bw-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  border-right: 1px solid rgba(13, 38, 30, 0.1);
  padding-right: 20px;
}

.imp-bw-group:last-of-type {
  border-right: none;
  padding-right: 0;
}

.imp-bw-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--emerald);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.imp-bw-input {
  border: none;
  background: transparent;
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--navy);
  outline: none;
  cursor: pointer;
  width: 100%;
}

.imp-bw-btn {
  background: var(--gold);
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  padding: 16px 32px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: var(--trans);
  white-space: nowrap;
  flex-shrink: 0;
}

.imp-bw-btn:hover {
  background: var(--gold2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(209, 107, 52, 0.35);
}

.imp-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
  animation: fadeUp 1s ease both;
}

.imp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(13, 38, 30, 0.1);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 99px;
  margin-bottom: 28px;
  box-shadow: var(--shadow2);
}

.imp-hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.imp-hero h1 span {
  color: var(--gold);
  display: block;
}

.imp-hero-sub {
  font-size: 1.15rem;
  color: rgb(255, 255, 255);
  margin-bottom: 40px;
  max-width: 560px;
  margin-inline: auto;
}

.imp-hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  padding: 14px 36px;
  border-radius: 10px;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: var(--trans);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-gold:hover {
  background: var(--gold2);
  border-color: var(--gold2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(209, 107, 52, 0.35);
  color: var(--navy);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 36px;
  border-radius: 10px;
  border: 2px solid var(--white);
  cursor: pointer;
  transition: var(--trans);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.imp-hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.imp-hero-scroll::before {
  content: '';
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(transparent, var(--gold));
  animation: scrollLine 1.8s ease-in-out infinite;
}

/* â”€â”€â”€ FEATURES STRIP â”€â”€â”€ */
.imp-features-strip {
  background: var(--white);
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  box-shadow: var(--shadow2);
}

.imp-feat {
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid rgba(13, 38, 30, 0.06);
  transition: var(--trans);
}

.imp-feat:last-child {
  border-right: none;
}

.imp-feat:hover {
  background: rgba(13, 38, 30, 0.03);
}

.imp-feat-icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.imp-feat-title {
  color: var(--navy);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.imp-feat-text {
  color: var(--grey);
  font-size: 0.82rem;
}

/* â”€â”€â”€ SECTIONS â”€â”€â”€ */
.imp-section {
  padding: 96px 0;
}

.imp-section-alt {
  background-color: var(--ivory);
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 20.5V18H0v-2h20v-2H0v-2h20v-2H0V8h20V6H0V4h20V2H0V0h22v20h2V0h2v20h2V0h2v20h2V0h2v20h2V0h2v20h2v2H20v-1.5zM0 20h2v20H0V20zm4 0h2v20H4V20zm4 0h2v20H8V20zm4 0h2v20h-2V20zm4 0h2v20h-2V20zm4 4h20v2H20v-2zm0 4h20v2H20v-2zm0 4h20v2H20v-2zm0 4h20v2H20v-2z' fill='%23145942' fill-opacity='0.02' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.imp-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.imp-label {
  display: inline-block;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.imp-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
}

.imp-title span {
  color: var(--gold);
}

.imp-text {
  color: #4a5568;
  line-height: 1.85;
  max-width: 620px;
}

/* â”€â”€â”€ CARDS â”€â”€â”€ */
.imp-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.imp-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow2);
  transition: var(--trans);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.imp-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: rgba(209, 107, 52, 0.2);
}

.imp-card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.imp-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.imp-card:hover .imp-card-img img {
  transform: scale(1.06);
}

.imp-card-body {
  padding: 24px;
}

.imp-card-tag {
  display: inline-block;
  background: rgba(209, 107, 52, 0.12);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 99px;
  margin-bottom: 10px;
}

.imp-card-title {
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.imp-card-text {
  color: #6b7280;
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 18px;
}

.imp-card-list {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 8px;
}

.imp-card-list li {
  font-size: 0.85rem;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 6px;
}

.imp-card-list li i {
  color: var(--gold);
  font-size: 1rem;
  width: 16px;
  text-align: center;
}

.imp-card-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 700;
}

.imp-card-price small {
  font-size: 0.75rem;
  color: var(--grey);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

/* â”€â”€â”€ AMENITIES GRID â”€â”€â”€ */
.imp-amenities {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin-top: 48px;
}

.imp-amenity {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  box-shadow: var(--shadow2);
  transition: var(--trans);
  border: 1px solid rgba(13, 38, 30, 0.08);
}

.imp-amenity:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.imp-amenity-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.imp-amenity-name {
  color: var(--navy);
  font-weight: 600;
  font-size: 0.9rem;
}

/* â”€â”€â”€ PRICING TABLE â”€â”€â”€ */
.imp-pricing {
  margin-top: 48px;
}

.imp-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  margin-bottom: 12px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow2);
  border: 1px solid rgba(13, 38, 30, 0.10);
  transition: var(--trans);
}

.imp-price-row:hover {
  border-color: var(--gold);
  transform: translateX(4px);
}

.imp-price-row.featured {
  background: var(--white);
  border: 2px solid var(--gold);
  transform: scale(1.02);
}

.imp-price-row.featured .imp-price-name {
  color: var(--navy);
}

.imp-price-row.featured .imp-price-desc {
  color: var(--grey);
}

.imp-price-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--navy);
  font-weight: 700;
}

.imp-price-desc {
  color: var(--grey);
  font-size: 0.85rem;
  margin-top: 2px;
}

.imp-price-list {
  list-style: none;
  padding: 0;
  margin-top: 6px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
}

.imp-price-list li {
  font-size: 0.85rem;
  color: var(--grey);
  display: flex;
  align-items: center;
  gap: 6px;
}

.imp-price-row.featured .imp-price-list li {
  color: var(--grey);
}

.imp-price-list li i {
  color: var(--gold);
  font-size: 0.95rem;
  width: 14px;
  text-align: center;
}

.imp-price-val {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 700;
  white-space: nowrap;
}

/* â”€â”€â”€ GALLERY â”€â”€â”€ */
.imp-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 12px;
  margin-top: 48px;
}

.imp-gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.imp-gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.imp-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.imp-gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 40, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--trans);
}

.imp-gallery-overlay span {
  color: var(--gold);
  font-size: 2rem;
}

.imp-gallery-item:hover .imp-gallery-overlay {
  opacity: 1;
}

/* â”€â”€â”€ FORM â”€â”€â”€ */
.imp-form {
  max-width: 720px;
  margin-top: 48px;
}

.imp-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.imp-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.imp-form-group.full {
  grid-column: span 2;
}

.imp-form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.04em;
}

.imp-form-group input,
.imp-form-group select,
.imp-form-group textarea {
  padding: 12px 16px;
  border-radius: 8px;
  border: 1.5px solid rgba(13, 38, 30, 0.15);
  background: var(--white);
  color: var(--navy);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: var(--trans);
  outline: none;
}

.imp-form-group input:focus,
.imp-form-group select:focus,
.imp-form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(209, 107, 52, 0.15);
}

.imp-form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.imp-form-divider {
  border: none;
  border-top: 1px solid rgba(13, 38, 30, 0.15);
  margin: 32px 0;
  position: relative;
}

.imp-form-divider::after {
  content: 'Informations complÃ©mentaires';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--light);
  padding: 0 16px;
  font-size: 0.8rem;
  color: var(--grey);
  white-space: nowrap;
}

.imp-radio-group {
  display: flex;
  gap: 20px;
  align-items: center;
}

.imp-radio-group label {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-weight: 400 !important;
}

input[type="radio"] {
  accent-color: var(--gold);
  width: 16px;
  height: 16px;
}

.imp-res-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 64px;
  align-items: start;
}

/* â”€â”€â”€ REGION / INFO SECTION â”€â”€â”€ */
.imp-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 48px;
}

.imp-info-list {
  list-style: none;
  padding: 0;
}

.imp-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(13, 38, 30, 0.1);
}

.imp-info-list li:last-child {
  border-bottom: none;
}

.imp-info-list li::before {
  content: '\f105';
  font-family: 'FontAwesome';
  color: var(--gold);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.imp-info-text {
  color: #4a5568;
  line-height: 1.7;
}

.imp-info-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.imp-info-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

/* â”€â”€â”€ HERO PAGE INNER (sous-pages) â”€â”€â”€ */
.imp-page-hero {
  min-height: 38vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  padding-top: 80px;
}

.imp-hero-galerie {
  background: url('../images/182353.jpg') center/cover no-repeat;
}

.imp-hero-region {
  background: url('../images/204902.jpg') center/cover no-repeat;
}

.imp-hero-reservation {
  background: url('../images/home/real_diego_suarez.png') center/cover no-repeat;
}

.imp-hero-tarifs {
  background: url('../images/202345.jpg') center/cover no-repeat;
}

.imp-page-hero-content {
  text-align: center;
  z-index: 2;
  position: relative;
  padding: 48px 24px;
}

.imp-page-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 12px;
}

.imp-page-hero p {
  color: rgb(255, 255, 255);
  font-size: 1.05rem;
}

.imp-breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

.imp-breadcrumb a {
  color: var(--gold);
}

.imp-breadcrumb span {
  color: rgb(255, 255, 255);
}

/* â”€â”€â”€ FOOTER â”€â”€â”€ */
.imp-footer {
  background: var(--white);
  color: var(--navy);
  padding: 64px 0 0;
  border-top: 1px solid rgba(13, 38, 30, 0.08);
}

.imp-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(13, 38, 30, 0.08);
}

.imp-footer-brand p {
  color: var(--grey);
  font-size: 0.9rem;
  line-height: 1.8;
  margin: 16px 0;
  max-width: 280px;
}

.imp-footer-col h4 {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 16px;
}

.imp-footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.imp-footer-col ul a {
  color: var(--grey);
  font-size: 0.9rem;
  transition: var(--trans);
}

.imp-footer-col ul a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.imp-footer-col p {
  color: var(--grey);
  font-size: 0.9rem;
  line-height: 1.8;
}

.imp-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 0.82rem;
  color: var(--grey);
}

.imp-footer-bottom a {
  color: var(--gold);
}

/* ─── LIGHTBOX ─── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
}

.lb-close {
  position: fixed;
  top: 24px;
  right: 32px;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  z-index: 10000;
  background: none;
  border: none;
  width: 44px;
  height: 44px;
  transition: var(--trans);
}

.lb-close:hover {
  color: var(--gold);
  transform: scale(1.1);
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollLine {

  0%,
  100% {
    opacity: 0;
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    opacity: 1;
    transform: scaleY(1);
    transform-origin: top;
  }
}

.anim-fade-up {
  animation: fadeUp 0.7s ease both;
}

.anim-delay-1 {
  animation-delay: 0.1s;
}

.anim-delay-2 {
  animation-delay: 0.2s;
}

.anim-delay-3 {
  animation-delay: 0.3s;
}

/* â”€â”€â”€ RESPONSIVE â”€â”€â”€ */
@media (max-width: 1024px) {
  .imp-footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .imp-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

@media (max-width: 768px) {

  .imp-nav-links,
  .imp-nav .btn-gold {
    display: none;
  }

  .imp-hamburger {
    display: flex;
  }

  .imp-mobile-menu {
    position: fixed;
    inset: 80px 0 0 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    display: none;
  }

  .imp-mobile-menu.open {
    display: flex;
  }

  .imp-mobile-menu a {
    color: var(--navy);
    font-size: 1.4rem;
    font-family: 'Playfair Display', serif;
  }

  .imp-mobile-menu a:hover {
    color: var(--gold);
  }

  .imp-info-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .imp-form-group.full {
    grid-column: span 1;
  }

  .imp-footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .imp-footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

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

  .imp-res-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .imp-booking-wrapper {
    margin-top: -80px;
    padding: 0 16px;
  }

  .imp-booking-widget {
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    align-items: stretch;
    border: none;
    box-shadow: var(--shadow);
  }

  .imp-bw-group {
    border-right: none;
    border-bottom: 1px solid rgba(13, 38, 30, 0.1);
    padding-right: 0;
    padding-bottom: 12px;
  }

  .imp-bw-group:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
  }

  .imp-bw-btn {
    padding: 16px;
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .imp-gallery-grid {
    grid-template-columns: 1fr;
  }

  .imp-gallery-item.large {
    grid-column: span 1;
  }

  .imp-features-strip {
    grid-template-columns: 1fr 1fr;
  }
}