/* =====================================================
   London Resort Lane — Premium Hotel & Entertainment
   Color: Burgundy #6B1E2E | Gold #C9A84C | Cream #F5F0E8
   Fonts: Cormorant Garamond (display) + Jost (body)
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --burgundy:     #6B1E2E;
  --burgundy-dk:  #4A1220;
  --burgundy-lt:  #8B2D42;
  --gold:         #C9A84C;
  --gold-lt:      #E0C47A;
  --gold-dk:      #A8872E;
  --cream:        #F5F0E8;
  --cream-dk:     #EDE4D4;
  --white:        #FFFFFF;
  --charcoal:     #1C1C1C;
  --gray:         #5A5A5A;
  --gray-lt:      #9A9A9A;
  --border:       rgba(201,168,76,0.25);
  --shadow:       0 8px 40px rgba(107,30,46,0.15);
  --shadow-lg:    0 20px 60px rgba(107,30,46,0.2);
  --radius:       4px;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', sans-serif;
  --transition:   0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

/* ── TYPOGRAPHY ── */
.display-heading {
  font-family: var(--font-display);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.15;
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; }
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); font-weight: 300; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 400; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); font-weight: 400; }
h4 { font-size: 1.2rem; font-weight: 500; }

p { font-size: 1rem; color: var(--gray); line-height: 1.8; }

/* ── LAYOUT ── */
.container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section { padding: 7rem 0; }
.section-sm { padding: 4rem 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }

/* ── HEADER ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  background: transparent;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: var(--burgundy-dk);
  padding: 0.8rem 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 2rem;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--cream);
}

.logo-icon {
  width: 44px; height: 44px;
  border: 1.5px solid var(--gold);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.logo-icon svg { width: 26px; height: 26px; }

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.06em;
}

.logo-sub {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

.nav-primary {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-primary a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.85);
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.nav-primary a:hover,
.nav-primary a.active {
  color: var(--gold);
}

.nav-cta {
  background: transparent !important;
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
  padding: 0.5rem 1.4rem !important;
}

.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--burgundy-dk) !important;
}

.burger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.4rem;
  background: none;
  border: none;
}

.burger-btn span {
  width: 24px;
  height: 1.5px;
  background: var(--cream);
  display: block;
  transition: all var(--transition);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--burgundy-dk);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 0.05em;
}

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

.mobile-nav-close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  background: none; border: none;
  color: var(--cream);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
}

/* ── HERO ── */
.hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}

.hero-bg.loaded { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(74,18,32,0.78) 0%,
    rgba(74,18,32,0.45) 55%,
    rgba(0,0,0,0.15) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 2rem;
  padding-top: 6rem;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero-eyebrow::before {
  content: '';
  width: 40px; height: 1px;
  background: var(--gold);
}

.hero-eyebrow span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero h1 {
  color: var(--white);
  max-width: 700px;
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-lt);
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(245,240,232,0.82);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(245,240,232,0.6);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: scrollBounce 2s infinite;
}

.hero-scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(245,240,232,0.6), transparent);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-gold {
  background: var(--gold);
  color: var(--burgundy-dk);
}

.btn-gold:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(245,240,232,0.5);
}

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

.btn-burgundy {
  background: var(--burgundy);
  color: var(--cream);
}

.btn-burgundy:hover {
  background: var(--burgundy-dk);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-outline-dark {
  background: transparent;
  color: var(--burgundy);
  border: 1.5px solid var(--burgundy);
}

.btn-outline-dark:hover {
  background: var(--burgundy);
  color: var(--cream);
}

/* ── SECTION HEADER ── */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header .section-eyebrow {
  display: block;
  margin-bottom: 1rem;
}

.section-header h2 {
  color: var(--burgundy-dk);
  margin-bottom: 1.2rem;
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.2rem;
}

.section-divider span {
  width: 50px; height: 1px;
  background: var(--gold);
}

.section-divider .diamond {
  width: 6px; height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
}

/* ── CARDS ── */
.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

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

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

.card-body { padding: 1.8rem; }

.card-eyebrow {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.card-body h3 {
  color: var(--burgundy-dk);
  margin-bottom: 0.8rem;
  font-size: 1.4rem;
}

.card-body p { font-size: 0.92rem; }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-top: 1.2rem;
}

.card-link::after {
  content: '→';
  transition: transform var(--transition);
}

.card-link:hover::after { transform: translateX(4px); }
.card-link:hover { color: var(--gold-dk); }

/* ── FEATURE STRIP ── */
.feature-strip {
  background: var(--burgundy-dk);
  padding: 3rem 0;
}

.feature-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.feature-item {
  text-align: center;
  padding: 1.5rem 2rem;
  border-right: 1px solid rgba(201,168,76,0.2);
}

.feature-item:last-child { border-right: none; }

.feature-icon {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
  line-height: 1;
}

.feature-item h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.3rem;
}

.feature-item p {
  font-size: 0.8rem;
  color: rgba(245,240,232,0.55);
  line-height: 1.5;
}

/* ── SPLIT SECTION ── */
.split-img {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.split-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  min-height: 520px;
}

.split-img-badge {
  position: absolute;
  bottom: 2rem; left: 2rem;
  background: var(--burgundy);
  color: var(--cream);
  padding: 0.8rem 1.4rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  border-left: 3px solid var(--gold);
}

.split-content { padding: 2rem 0; }

.split-content .section-eyebrow { margin-bottom: 1rem; }

.split-content h2 {
  color: var(--burgundy-dk);
  margin-bottom: 1.5rem;
}

.split-content p { margin-bottom: 1.2rem; }

.feature-list {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.92rem;
  color: var(--gray);
}

.feature-list li::before {
  content: '◆';
  color: var(--gold);
  font-size: 0.5rem;
  margin-top: 0.5rem;
  flex-shrink: 0;
}

/* ── TESTIMONIALS ── */
.testimonials-bg {
  background: var(--cream);
}

.testimonial-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius);
  border-top: 3px solid var(--gold);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.author-initial {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--burgundy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
}

.author-info strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--charcoal);
}

.author-info span {
  font-size: 0.75rem;
  color: var(--gray-lt);
}

/* ── STATS ── */
.stats-section {
  background: var(--burgundy);
  padding: 5rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {}

.stat-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.7);
}

/* ── BANNER CTA ── */
.banner-cta {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
  text-align: center;
}

.banner-cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.banner-cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(74,18,32,0.75);
}

.banner-cta-content {
  position: relative;
  z-index: 2;
}

.banner-cta h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.banner-cta p {
  color: rgba(245,240,232,0.8);
  max-width: 540px;
  margin: 0 auto 2.5rem;
  font-size: 1.05rem;
}

/* ── PAGE HERO ── */
.page-hero {
  height: 52vh;
  min-height: 420px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-bottom: 4rem;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(74,18,32,0.85) 0%, rgba(74,18,32,0.35) 60%, rgba(0,0,0,0.1) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 2rem;
}

.page-hero-content .section-eyebrow { margin-bottom: 0.8rem; display: block; }
.page-hero-content h1 { color: var(--white); font-size: clamp(2.2rem, 5vw, 4rem); }

/* ── BREADCRUMB ── */
.breadcrumb {
  background: var(--cream-dk);
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border);
}

.breadcrumb-inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  color: var(--gray);
}

.breadcrumb a { color: var(--burgundy); }
.breadcrumb a:hover { color: var(--gold-dk); }
.breadcrumb .sep { color: var(--gray-lt); }

/* ── ROOM CARDS ── */
.room-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all var(--transition);
}

.room-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.room-img {
  position: relative;
  overflow: hidden;
}

.room-img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.room-card:hover .room-img img { transform: scale(1.05); }

.room-badge {
  position: absolute;
  top: 1.2rem; right: 1.2rem;
  background: var(--burgundy);
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
}

.room-info { padding: 2rem; }

.room-info h3 {
  color: var(--burgundy-dk);
  margin-bottom: 0.6rem;
  font-size: 1.5rem;
}

.room-info p { font-size: 0.9rem; margin-bottom: 1.2rem; }

.room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.amenity-tag {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  background: var(--cream);
  color: var(--gray);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  border: 1px solid var(--cream-dk);
}

/* ── FOOTER ── */
.site-footer {
  background: var(--burgundy-dk);
  padding: 5rem 0 0;
  color: rgba(245,240,232,0.75);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

.footer-brand .logo-name { color: var(--cream); font-size: 1.3rem; }
.footer-brand .logo-sub { color: var(--gold); }

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(245,240,232,0.6);
  line-height: 1.8;
  margin-top: 1.2rem;
  margin-bottom: 1.5rem;
}

.footer-gold-line {
  width: 40px; height: 1px;
  background: var(--gold);
  margin: 1.2rem 0;
}

.footer-col h5 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 1.4rem;
  letter-spacing: 0.05em;
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }

.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(245,240,232,0.6);
  transition: color var(--transition);
}

.footer-col ul li a:hover { color: var(--gold); }

.footer-contact li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.85rem;
  color: rgba(245,240,232,0.6);
}

.footer-contact li span:first-child {
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.footer-bottom {
  max-width: 1260px;
  margin: 0 auto;
  padding: 1.8rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom-text {
  font-size: 0.78rem;
  color: rgba(245,240,232,0.4);
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-legal-links a {
  font-size: 0.75rem;
  color: rgba(245,240,232,0.4);
}

.footer-legal-links a:hover { color: var(--gold); }

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 2000;
  background: var(--burgundy-dk);
  border-top: 2px solid var(--gold);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.5s ease;
}

.cookie-banner.show { transform: translateY(0); }

.cookie-text {
  font-size: 0.85rem;
  color: rgba(245,240,232,0.8);
  flex: 1;
  min-width: 250px;
}

.cookie-text a { color: var(--gold); text-decoration: underline; }

.cookie-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-shrink: 0;
}

/* ── GALLERY GRID ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 0.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(0.85);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(74,18,32,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

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

.gallery-overlay-icon {
  color: var(--cream);
  font-size: 2rem;
  font-weight: 300;
}

/* ── CONTACT ── */
.contact-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 2.5rem;
  border-left: 4px solid var(--gold);
}

.contact-card h4 {
  font-family: var(--font-display);
  color: var(--burgundy-dk);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.contact-detail-icon {
  width: 36px; height: 36px;
  background: var(--burgundy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.contact-detail-text strong { display: block; font-size: 0.8rem; color: var(--gray-lt); margin-bottom: 0.2rem; }
.contact-detail-text span { font-size: 0.95rem; color: var(--charcoal); }

/* ── LEGAL PAGES ── */
.legal-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.legal-content h2 {
  color: var(--burgundy-dk);
  font-size: 1.9rem;
  margin: 2.5rem 0 1rem;
}

.legal-content h3 {
  color: var(--burgundy);
  font-size: 1.35rem;
  margin: 2rem 0 0.8rem;
}

.legal-content p {
  margin-bottom: 1.2rem;
  line-height: 1.85;
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.2rem;
}

.legal-content ul li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.7;
}

.legal-meta {
  background: var(--cream);
  border-left: 4px solid var(--gold);
  padding: 1rem 1.5rem;
  margin-bottom: 3rem;
  font-size: 0.85rem;
  color: var(--gray);
}

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

.lightbox.open { display: flex; }

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border: 2px solid rgba(201,168,76,0.3);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  font-size: 2.5rem;
  color: var(--cream);
  cursor: pointer;
  line-height: 1;
  background: none;
  border: none;
}

/* ── UTILITIES ── */
.bg-cream { background: var(--cream); }
.bg-burgundy { background: var(--burgundy); }
.bg-dark { background: var(--burgundy-dk); }
.text-gold { color: var(--gold); }
.text-burgundy { color: var(--burgundy); }
.text-cream { color: var(--cream); }
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .feature-items { grid-template-columns: repeat(2, 1fr); }
  .feature-item { border-right: none; border-bottom: 1px solid rgba(201,168,76,0.2); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 4.5rem 0; }
  .grid-2 { grid-template-columns: 1fr; gap: 2.5rem; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .nav-primary { display: none; }
  .burger-btn { display: flex; }
  .hero h1 { font-size: 2.4rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.wide { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cookie-banner { flex-direction: column; align-items: flex-start; }
  .split-img img { min-height: 320px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .container { padding: 0 1.2rem; }
  .hero-actions { flex-direction: column; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.wide, .gallery-item.tall { grid-column: span 1; grid-row: span 1; }
  .section-header { margin-bottom: 2.5rem; }
  h2 { font-size: 1.8rem; }
}