/* =========================================================
   THE LAKE HERITAGE - Luxury Heritage Resort
   Global Stylesheet
   Palette: Royal Maroon, Antique Gold, Ivory
   ========================================================= */

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

:root {
  --maroon: #5C1A1B;
  --maroon-dark: #3D0F10;
  --maroon-deep: #2A0A0B;
  --gold: #C9A961;
  --gold-light: #E0C896;
  --gold-dark: #9C7F3F;
  --ivory: #FAF6EE;
  --cream: #F1E9D8;
  --parchment: #EFE6D2;
  --charcoal: #1F1A17;
  --ink: #2B2520;
  --muted: #8B7E6F;
  --line: #D9CDB6;
  --shadow-soft: 0 12px 40px rgba(31, 26, 23, 0.12);
  --shadow-deep: 0 24px 60px rgba(31, 26, 23, 0.22);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Bodoni Moda', 'Playfair Display', serif;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--charcoal);
  margin: 0 0 0.6em;
}

h1 { font-size: clamp(2.6rem, 5vw, 4rem); line-height: 1.05; }
h2 { font-size: clamp(2rem, 3.2vw, 3rem); line-height: 1.1; }
h3 { font-size: clamp(1.4rem, 1.7vw, 1.3rem); line-height: 1.2; }

p { margin: 0 0 1.1em; color: var(--ink); }

a { color: var(--maroon); text-decoration: none; transition: color .3s var(--ease); }
a:hover { color: var(--gold-dark); }

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

.container, .container-fluid { padding-left: 1.4rem; padding-right: 1.4rem; }

/* ============ TYPOGRAPHY HELPERS ============ */
.eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 500;
  margin-bottom: 1.2rem;
  position: relative;
  padding-left: 46px;
}
.eyebrow::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 34px; height: 1px;
  background: var(--gold);
}
.eyebrow.center { padding-left: 0; padding: 0 56px; }
.eyebrow.center::before { display: none; }
.eyebrow.center::after,
.eyebrow.center span::before {
  content: ""; position: absolute; top: 50%; width: 34px; height: 1px; background: var(--gold);
}
.eyebrow.center::after { right: 0; }
.eyebrow.center { display: inline-flex; align-items: center; justify-content: center; }
.eyebrow.center::before { content: ""; display: block; position: absolute; left: 0; top: 50%; width: 34px; height: 1px; background: var(--gold); }

.script {
  font-family: 'Bodoni Moda', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--gold-dark);
}

.divider-ornament {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; color: var(--gold); margin: 1.4rem auto;
}
.divider-ornament .line { width: 60px; height: 1px; background: var(--gold); opacity: .8; }
.divider-ornament .diamond { width: 8px; height: 8px; background: var(--gold); transform: rotate(45deg); }

/* ============ BUTTONS ============ */
.btn-luxe {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 12px; letter-spacing: 0.32em; text-transform: uppercase;
  font-weight: 500;
  padding: 18px 38px;
  background: var(--maroon);
  color: var(--ivory);
  border: 1px solid var(--maroon);
  border-radius: 0;
  cursor: pointer;
  transition: all .4s var(--ease);
  position: relative; overflow: hidden;
}
.btn-luxe:hover { background: var(--maroon-dark); color: var(--gold-light); border-color: var(--maroon-dark); }
.btn-luxe .arrow { transition: transform .4s var(--ease); }
.btn-luxe:hover .arrow { transform: translateX(6px); }

.btn-gold {
  background: var(--gold); border-color: var(--gold); color: var(--maroon-deep);
}
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: var(--ivory); }

.btn-ghost {
  background: transparent; color: var(--ivory); border: 1px solid var(--ivory);
}
.btn-ghost:hover { background: var(--ivory); color: var(--maroon-deep); }

.btn-outline-gold {
  background: transparent; color: var(--gold); border: 1px solid var(--gold);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--maroon-deep); }

/* ============ NAVIGATION ============ */
.top-bar {
  background: var(--maroon-deep);
  color: var(--gold-light);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.16em;
  padding: 10px 0;
}
.top-bar a { color: var(--gold-light); }
.top-bar a:hover { color: var(--ivory); }

.navbar-luxe {
  background: rgba(250, 246, 238, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201, 169, 97, 0.18);
 padding: 9px 0;
  transition: all .4s var(--ease);
  position: sticky; top: 0; z-index: 1030;
}
.navbar-luxe.scrolled {
  padding: 10px 0;
  box-shadow: 0 6px 30px rgba(31, 26, 23, 0.08);
}

.brand img{
	width: 121px;
}
.navbar-luxe .brand {
  font-family: 'Bodoni Moda', serif;
  font-size: 22px;
  letter-spacing: 0.22em;
  color: var(--maroon);
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1;
  display: inline-flex; flex-direction: column; align-items: center;
}
.navbar-luxe .brand small {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 11px;
  letter-spacing: 0.34em;
  color: var(--gold-dark);
  margin-top: 4px;
  text-transform: uppercase;
  font-weight: 400;
}
.navbar-luxe .nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--charcoal) !important;
  padding: 8px 14px !important;
  position: relative;
  transition: color .3s var(--ease);
}
.navbar-luxe .nav-link:hover, .navbar-luxe .nav-link.active {
  color: var(--maroon) !important;
}
.navbar-luxe .nav-link::after {
  content: ""; position: absolute; left: 50%; bottom: -2px;
  width: 0; height: 1px; background: var(--gold);
  transition: all .35s var(--ease);
}
.navbar-luxe .nav-link:hover::after { left: 14px; width: calc(100% - 28px); }

.has-mega { position: static; }
.mega-menu {
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: var(--ivory);
  border-top: 1px solid var(--line);
  border-bottom: 3px solid var(--gold);
  padding: 40px 0;
  box-shadow: var(--shadow-soft);
  opacity: 0; visibility: hidden;
  transform: translateY(10px);
  transition: all .4s var(--ease);
  z-index: 1020;
}
.has-mega:hover .mega-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-col h6 {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 16px;
}
.mega-col ul { list-style: none; padding: 0; margin: 0; }
.mega-col li { margin-bottom: 10px; }
.mega-col a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--charcoal);
}
.mega-col a:hover { color: var(--maroon); }
.mega-feature {
  background-size: cover; background-position: center;
  padding: 30px; min-height: 200px;
  display: flex; align-items: flex-end; color: #fff;
  position: relative;
}
.mega-feature::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(transparent 40%, rgba(0,0,0,0.7));
}
.mega-feature > * { position: relative; z-index: 2; }

.book-btn {
  font-family: 'Inter', sans-serif; font-size: 11px;
  letter-spacing: 0.32em; text-transform: uppercase;
  background: var(--maroon); color: var(--ivory);
  padding: 12px 22px; display: inline-block;
  border: 1px solid var(--maroon);
  transition: all .35s var(--ease);
}
.book-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--maroon-deep); }

.menu-toggle {
  width: 44px; height: 44px;
  border: 1px solid var(--line); background: transparent;
  display: none; align-items: center; justify-content: center;
  cursor: pointer;
}
.menu-toggle span {
  display: block; width: 20px; height: 1px; background: var(--charcoal);
  position: relative;
}
.menu-toggle span::before, .menu-toggle span::after {
  content: ""; position: absolute; left: 0; width: 20px; height: 1px; background: var(--charcoal);
  transition: all .3s var(--ease);
}
.menu-toggle span::before { top: -7px; }
.menu-toggle span::after { top: 7px; }

.mobile-drawer {
  position: fixed; inset: 0;
  background: var(--maroon-deep);
  color: var(--ivory);
  padding: 90px 36px 40px;
  transform: translateX(100%);
  transition: transform .5s var(--ease);
  z-index: 1050;
  overflow-y: auto;
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer a {
  display: block; color: var(--ivory);
  font-family: 'Bodoni Moda', serif;
  font-size: 26px; padding: 14px 0;
  border-bottom: 1px solid rgba(201, 169, 97, 0.2);
}
.mobile-drawer a:hover { color: var(--gold); }
.drawer-close {
  position: absolute; top: 24px; right: 24px;
  width: 44px; height: 44px; background: transparent;
  border: 1px solid var(--gold); color: var(--gold);
  font-family: 'Inter', sans-serif; cursor: pointer;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 92vh;
  color: var(--ivory);
  overflow: hidden;
  display: flex; align-items: center;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  transition: opacity 1.4s var(--ease), transform 8s linear;
  transform: scale(1.08);
}
.hero-slide.active { opacity: 1; transform: scale(1); }
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(42,10,11,0.25) 0%, rgba(42,10,11,0.55) 50%, rgba(42,10,11,0.85) 100%);
}
.hero-inner {
  position: relative; z-index: 3;
  padding: 90px 0 110px;
  width: 100%;
}
.hero h1 {
  color: var(--ivory);
  font-family: 'Bodoni Moda', serif;
  font-weight: 500;
  font-size: clamp(2rem, 5vw, 4.4rem);
  letter-spacing: -0.01em;
  text-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.hero h1 .script {
  display: block; font-style: italic; color: var(--gold-light);
  font-size: 0.5em; font-weight: 400; margin-top: 8px;
}
.hero-eyebrow {
  color: var(--gold-light);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.44em;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: inline-block;
}
.hero-sub {
  max-width: 620px;
  font-size: 1.25rem;
  color: rgba(250, 246, 238, 0.86);
  margin: 1.5rem 0 2.4rem;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-meta {
  position: absolute; bottom: 36px; left: 0; right: 0;
  z-index: 3;
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 3rem;
  color: var(--ivory);
  font-family: 'Inter', sans-serif;
  font-size: 11px; letter-spacing: 0.36em; text-transform: uppercase;
}
.hero-meta .dots { display: flex; gap: 10px; }
.hero-meta .dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.3); cursor: pointer; transition: all .3s; }
.hero-meta .dot.active { background: var(--gold); width: 24px; border-radius: 4px; }

.page-hero {
  position: relative;
  min-height: 60vh;
  color: var(--ivory);
  display: flex; align-items: center;
  background-size: cover; background-position: center;
  background-attachment: fixed;
}
.page-hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(42,10,11,0.4), rgba(42,10,11,0.75));
}
.page-hero .container { position: relative; z-index: 2; padding: 100px 1.4rem 80px; }
.page-hero h1 { color: var(--ivory); }
.page-hero .breadcrumbs {
  font-family: 'Inter', sans-serif; font-size: 11px;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: rgba(250, 246, 238, 0.7);
}
.page-hero .breadcrumbs a { color: var(--gold-light); }

/* ============ SECTIONS ============ */
section { padding: 110px 0; position: relative; }
section.tight { padding: 70px 0; }

.section-title-block { max-width: 720px; margin: 0 auto 60px; text-align: center; }
.section-title-block.left { text-align: left; margin-left: 0; }

.story-section { background: var(--cream); position: relative; }
.story-section::before {
  content: ""; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><circle cx='60' cy='60' r='55' fill='none' stroke='%23C9A961' stroke-opacity='0.08'/></svg>");
  background-size: 240px;
  opacity: 0.7; pointer-events: none;
}
.story-section .container { position: relative; }
.story-img {
  position: relative; overflow: hidden;
}
.story-img img { width: 100%; }
.story-img::before {
  content: ""; position: absolute; inset: 14px; border: 1px solid var(--gold); pointer-events: none; z-index: 2;
}
.story-stats {
  display: flex; gap: 50px; margin-top: 40px; flex-wrap: wrap;
  padding-top: 36px; border-top: 1px solid var(--line);
}
.story-stats .stat-num {
  font-family: 'Bodoni Moda', serif;
  font-size: 2.6rem; color: var(--maroon);
  line-height: 1; font-weight: 500;
}
.story-stats .stat-label {
  font-family: 'Inter', sans-serif; font-size: 11px;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--muted); margin-top: 8px;
}

/* ============ ROOM CARDS ============ */
.room-card {
  position: relative;
  background: #fff;
  margin-bottom: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.room-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-deep); }
.room-card .img-wrap { overflow: hidden; height: 380px; position: relative; }
.room-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.room-card:hover .img-wrap img { transform: scale(1.08); }
.room-card .room-tag {
  position: absolute; top: 20px; left: 20px;
  background: var(--ivory); color: var(--maroon);
  font-family: 'Inter', sans-serif; font-size: 10px;
  letter-spacing: 0.32em; text-transform: uppercase;
  padding: 8px 14px; z-index: 2;
}
.room-card .body { padding: 32px 30px 36px; }
.room-card h3 { margin-bottom: 6px; font-size: 1.7rem; }
.room-card .view-line { color: var(--gold-dark); font-style: italic; margin-bottom: 16px; }
.room-card .specs {
  display: flex; gap: 18px; flex-wrap: wrap;
  font-family: 'Inter', sans-serif; font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted);
  padding: 16px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  margin: 16px 0 22px;
}
.room-card .specs span { display: inline-flex; align-items: center; gap: 6px; }
.room-card .price-row {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.room-card .price {
  font-family: 'Bodoni Moda', serif; color: var(--maroon);
  font-size: 1.4rem;
}
.room-card .price small { color: var(--muted); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; font-family: 'Inter', sans-serif; }
.room-card .more {
  font-family: 'Inter', sans-serif; font-size: 11px;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--maroon); border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
}

/* ============ EXPERIENCE GRID ============ */
.experience-card {
  position: relative; overflow: hidden;
  height: 460px; color: var(--ivory);
  display: flex; align-items: flex-end;
  padding: 36px;
  background-size: cover; background-position: center;
  margin-bottom: 30px;
}
.experience-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(transparent 30%, rgba(42,10,11,0.85));
  transition: background .5s var(--ease);
}
.experience-card:hover::after {
  background: linear-gradient(rgba(42,10,11,0.3) 0%, rgba(42,10,11,0.92));
}
.experience-card > * { position: relative; z-index: 2; }
.experience-card h3 { color: var(--ivory); margin-bottom: 8px; }
.experience-card p { color: rgba(250, 246, 238, 0.85); margin: 0; }
.experience-card .num {
  font-family: 'Bodoni Moda', serif; font-style: italic;
  color: var(--gold-light); font-size: 14px;
  margin-bottom: 10px; letter-spacing: 0.2em;
}

/* ============ DINING / ALTERNATE ============ */
.dining-section { background: var(--maroon-deep); color: var(--ivory); }
.dining-section h2 { color: var(--ivory); }
.dining-section .eyebrow { color: var(--gold-light); }
.dining-section p { color: rgba(250, 246, 238, 0.78); }
.dining-img-wrap { position: relative; }
.dining-img-wrap img { width: 100%; height: 560px; object-fit: cover; }
.dining-img-wrap::before {
  content: ""; position: absolute; inset: -14px; border: 1px solid var(--gold); pointer-events: none;
}

/* ============ GALLERY ============ */
.gallery-grid {
  display: grid; grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}
.gallery-item {
  position: relative; overflow: hidden; cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(transparent 50%, rgba(42,10,11,0.5));
  opacity: 0; transition: opacity .5s var(--ease);
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item .plus {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(.6);
  width: 60px; height: 60px;
  border: 1px solid var(--gold-light);
  color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Inter', sans-serif; font-weight: 300; font-size: 28px;
  opacity: 0; transition: all .5s var(--ease);
  z-index: 3;
}
.gallery-item:hover .plus { opacity: 1; transform: translate(-50%, -50%) scale(1); }

.gallery-masonry .g-1 { grid-column: span 6; grid-row: span 2; height: 620px; }
.gallery-masonry .g-2 { grid-column: span 6; height: 300px; }
.gallery-masonry .g-3 { grid-column: span 3; height: 300px; }
.gallery-masonry .g-4 { grid-column: span 3; height: 300px; }
.gallery-masonry .g-5 { grid-column: span 4; height: 340px; }
.gallery-masonry .g-6 { grid-column: span 4; height: 340px; }
.gallery-masonry .g-7 { grid-column: span 4; height: 340px; }
.gallery-masonry .g-8 { grid-column: span 8; height: 420px; }
.gallery-masonry .g-9 { grid-column: span 4; height: 420px; }

/* Filter chips */
.filter-chips { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-bottom: 50px; }
.chip {
  font-family: 'Inter', sans-serif; font-size: 11px;
  letter-spacing: 0.3em; text-transform: uppercase;
  padding: 12px 24px; background: transparent;
  border: 1px solid var(--line); color: var(--charcoal); cursor: pointer;
  transition: all .35s var(--ease);
}
.chip:hover, .chip.active {
  background: var(--maroon); color: var(--ivory); border-color: var(--maroon);
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(20, 8, 9, 0.96);
  display: none; align-items: center; justify-content: center;
  z-index: 2000; padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90%; max-height: 86vh; object-fit: contain; }
.lightbox .lb-close, .lightbox .lb-nav {
  position: absolute; background: transparent; color: var(--gold-light);
  border: 1px solid var(--gold-light); font-size: 18px; font-family: 'Inter', sans-serif;
  width: 50px; height: 50px; cursor: pointer; transition: all .3s;
}
.lightbox .lb-close:hover, .lightbox .lb-nav:hover { background: var(--gold); color: var(--maroon-deep); }
.lightbox .lb-close { top: 30px; right: 30px; }
.lightbox .lb-prev { left: 30px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-next { right: 30px; top: 50%; transform: translateY(-50%); }

/* ============ TESTIMONIALS ============ */
.testi-section { background: var(--parchment); }
.testi-track { overflow: hidden; }
.testi-slide {
  text-align: center; max-width: 820px; margin: 0 auto; padding: 0 20px;
}
.testi-slide .quote-mark {
  font-family: 'Bodoni Moda', serif; font-style: italic;
  font-size: 5rem; color: var(--gold); line-height: 0.5; margin-bottom: 30px;
}
.testi-slide p {
  font-family: 'Cormorant Garamond', serif; font-size: 1.5rem;
  font-style: italic; line-height: 1.5; color: var(--charcoal);
}
.testi-slide .author {
  font-family: 'Inter', sans-serif; font-size: 11px;
  letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--maroon); margin-top: 24px;
}
.testi-slide .author span { display: block; color: var(--muted); font-weight: 300; margin-top: 4px; }
.testi-dots { display: flex; justify-content: center; gap: 10px; margin-top: 36px; }
.testi-dots .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--line); cursor: pointer; }
.testi-dots .dot.active { background: var(--maroon); width: 28px; border-radius: 4px; }

/* ============ CTA BANNER ============ */
.cta-banner {
  background-size: cover; background-position: center;
  position: relative; color: var(--ivory);
  text-align: center;
}
.cta-banner::after {
  content: ""; position: absolute; inset: 0;
  background: rgba(42, 10, 11, 0.72);
}
.cta-banner .container { position: relative; z-index: 2; padding: 130px 1.4rem; }
.cta-banner h2 { color: var(--ivory); max-width: 760px; margin-left: auto; margin-right: auto; }

/* ============ NEWSLETTER ============ */
.newsletter {
  background: var(--maroon-deep); color: var(--ivory);
  padding: 70px 0;
}
.newsletter h3 { color: var(--ivory); }
.newsletter .form-inline {
  display: flex; gap: 0; max-width: 540px; margin: 24px auto 0;
  border: 1px solid var(--gold);
}
.newsletter input {
  flex: 1; background: transparent; border: none; color: var(--ivory);
  padding: 16px 22px; font-family: 'Inter', sans-serif; font-size: 13px;
  letter-spacing: 0.1em; outline: none;
}
.newsletter input::placeholder { color: rgba(250, 246, 238, 0.5); }
.newsletter button {
  background: var(--gold); color: var(--maroon-deep);
  border: none; padding: 16px 28px;
  font-family: 'Inter', sans-serif; font-size: 11px;
  letter-spacing: 0.32em; text-transform: uppercase;
  cursor: pointer; transition: all .3s;
}
.newsletter button:hover { background: var(--ivory); }

/* ============ FOOTER ============ */
footer.footer {
  background: var(--charcoal); color: rgba(250, 246, 238, 0.75);
  padding: 90px 0 30px;
}
footer.footer h5 {
  font-family: 'Inter', sans-serif; font-size: 11px;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px;
}
footer.footer ul { list-style: none; padding: 0; }
footer.footer ul li { margin-bottom: 10px; }
footer.footer a { color: rgba(250, 246, 238, 0.75); font-family: 'Cormorant Garamond', serif; font-size: 17px; }
footer.footer a:hover { color: var(--gold-light); }
footer.footer .brand-foot {
  font-family: 'Bodoni Moda', serif;
  font-size: 28px; letter-spacing: 0.22em;
  color: var(--ivory); text-transform: uppercase; line-height: 1;
  margin-bottom: 6px;
}
footer.footer .brand-foot + small {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  color: var(--gold-light); letter-spacing: 0.32em; text-transform: uppercase; font-size: 11px;
}
footer.footer .socials { display: flex; gap: 12px; margin-top: 20px; }
footer.footer .socials a {
  width: 42px; height: 42px;
  border: 1px solid rgba(201, 169, 97, 0.4);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--gold-light); transition: all .3s;
}
footer.footer .socials a:hover { background: var(--gold); color: var(--maroon-deep); border-color: var(--gold); }
footer.footer .copyright {
  margin-top: 70px; padding-top: 24px;
  border-top: 1px solid rgba(250, 246, 238, 0.08);
  font-family: 'Inter', sans-serif; font-size: 11px;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(250, 246, 238, 0.45);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}

/* ============ BACK TO TOP ============ */
.back-top {
  position: fixed; bottom: 30px; right: 30px;
  width: 50px; height: 50px;
  background: var(--maroon); color: var(--gold-light);
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 999;
  opacity: 0; pointer-events: none;
  transition: all .4s var(--ease);
}
.back-top.show { opacity: 1; pointer-events: auto; }
.back-top:hover { background: var(--gold); color: var(--maroon-deep); }

/* ============ FORMS ============ */
.luxe-form { background: var(--ivory); padding: 50px; border: 1px solid var(--line); }
.luxe-form .form-label {
  font-family: 'Inter', sans-serif; font-size: 10px;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold-dark); margin-bottom: 10px;
}
.luxe-form .form-control,
.luxe-form .form-select {
  background: transparent;
  border: none; border-bottom: 1px solid var(--line);
  border-radius: 0; padding: 14px 0;
  font-family: 'Cormorant Garamond', serif; font-size: 18px;
  color: var(--charcoal);
}
.luxe-form .form-control:focus,
.luxe-form .form-select:focus {
  outline: none; box-shadow: none;
  border-color: var(--maroon);
  background: transparent;
}
.luxe-form textarea.form-control { min-height: 130px; }

/* ============ TOAST ============ */
.luxe-toast {
  position: fixed; bottom: 36px; left: 50%; transform: translate(-50%, 30px);
  background: var(--maroon-deep); color: var(--ivory);
  padding: 18px 28px;
  font-family: 'Inter', sans-serif; font-size: 12px;
  letter-spacing: 0.22em; text-transform: uppercase;
  border: 1px solid var(--gold);
  z-index: 2500; opacity: 0; pointer-events: none;
  transition: all .5s var(--ease);
}
.luxe-toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ============ ANIMATIONS ============ */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============ AMENITIES LIST ============ */
.amenity-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 28px; }
.amenity-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid var(--line);
  font-family: 'Cormorant Garamond', serif; font-size: 17px;
}
.amenity-item .ico {
  width: 38px; height: 38px;
  border: 1px solid var(--gold); color: var(--gold-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
}

/* ============ ATTRACTION CARD ============ */
.attraction-card {
  position: relative;
  background: var(--ivory);
  margin-bottom: 30px;
  border: 1px solid var(--line);
  transition: all .4s var(--ease);
}
.attraction-card:hover { border-color: var(--gold); box-shadow: var(--shadow-soft); transform: translateY(-4px); }
.attraction-card .img { height: 280px; overflow: hidden; }
.attraction-card .img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.attraction-card:hover .img img { transform: scale(1.06); }
.attraction-card .body { padding: 28px 30px 32px; }
.attraction-card h3 { font-size: 1.5rem; margin-bottom: 6px; }
.attraction-card .meta {
  display: flex; gap: 22px;
  font-family: 'Inter', sans-serif; font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted); margin-top: 16px;
}

/* ============ LOCATION ============ */
.map-wrap {
  position: relative; height: 460px; overflow: hidden; border: 1px solid var(--line);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: sepia(20%) hue-rotate(-10deg) saturate(0.9); }

/* ============ MISC ============ */
.contact-pill {
    display: flex;
    gap: 18px;
    padding: 15px 28px;
    background: var(--ivory);
    border-left: 3px solid var(--gold);
    margin-bottom: 15px;
}
.contact-pill .ico {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--maroon); color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
}
.contact-pill h6 {
  font-family: 'Inter', sans-serif; font-size: 11px;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold-dark); margin: 0 0 6px;
}
.contact-pill p { margin: 0; font-size: 17px; color: var(--charcoal); }

/* ============ WEDDING / EVENTS ============ */
.event-card {
  position: relative; overflow: hidden;
  margin-bottom: 30px;
}
.event-card img { width: 100%; height: 380px; object-fit: cover; transition: transform 1s var(--ease); }
.event-card:hover img { transform: scale(1.06); }
.event-card .body {
  padding: 30px 0 10px; text-align: left;
}
.event-card h3 { font-size: 1.6rem; }
.event-card .body .num {
  font-family: 'Bodoni Moda', serif; font-style: italic;
  color: var(--gold-dark); font-size: 14px; letter-spacing: 0.2em;
}

/* ============ FLOATING CHIP ============ */
.float-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ivory); padding: 8px 18px;
  font-family: 'Inter', sans-serif; font-size: 11px;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--maroon); border: 1px solid var(--gold);
}
.float-chip i { color: var(--gold-dark); }

/* ============ PRINT/UTIL ============ */
.bg-cream { background: var(--cream); }
.bg-ivory { background: var(--ivory); }
.bg-parchment { background: var(--parchment); }
.bg-maroon { background: var(--maroon-deep); color: var(--ivory); }
.bg-maroon h2, .bg-maroon h3 { color: var(--ivory); }

.text-gold { color: var(--gold-dark) !important; }
.text-maroon { color: var(--maroon) !important; }
.text-cream { color: var(--cream); }

hr.gold-line { border: 0; height: 1px; background: var(--gold); opacity: .6; margin: 0; }

.footer p{
	color:#faf6eebf;
}

.cta-banner {
	padding:0;
}

.page-hero {
padding:0;	
}