/* ============================================
   MAISON DE TOURS — Responsive Stylesheet
   Breakpoints: 1024px (tablet), 768px (mobile), 420px (small)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Crimson+Pro:ital,wght@0,300;0,400;0,600;1,300;1,400&family=IM+Fell+English:ital@0;1&family=Playfair+Display:ital,wght@0,400;0,500;1,400;1,500&display=swap');

:root {
  --bg:        #0b150b;
  --bg2:       #112011;
  --bg3:       #172917;
  --gold:      #c9a96e;
  --gold-lt:   #e2c896;
  --gold-dk:   #8c6f3e;
  --ivory:     #f0f4eb;
  --ivory-dk:  #c8d4bc;
  --muted:     #6b8a5e;
  --border:    rgba(100,160,80,0.22);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Crimson Pro', Georgia, serif;
  --font-accent:  'IM Fell English', Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background-color: var(--bg);
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 18px; /* 18px = ~13.5pt — bumped to ensure all rem sizes hit 14pt minimum */
  line-height: 1.75;
  min-height: 100vh;
}

img { display: block; max-width: 100%; }
a { color: var(--gold); text-decoration: none; transition: color .25s; }
a:hover { color: var(--gold-lt); }

/* ════════════════════════════
   SITE HEADER
════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Brand row: spacer | title center | social right */
.brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0 12px;
  border-bottom: 1px solid var(--border);
}
.brand-left-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.brand-left {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.brand-name {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: .28em;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1.05;
  white-space: nowrap;
}
.brand-name a { color: inherit; }
.brand-tagline {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: .95rem;
  color: var(--gold-lt);
  letter-spacing: .08em;
  margin-top: 4px;
}
.brand-book-btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 7px 18px;
  background: var(--gold);
  color: var(--bg);
  border-radius: 2px;
  transition: background .2s;
}
.brand-book-btn:hover { background: var(--gold-lt); color: var(--bg); }
.brand-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}
.brand-right a img {
  width: 30px;
  height: 30px;
  border-radius: 4px;
  transition: opacity .2s;
}
.brand-right a:hover img { opacity: 0.75; }

/* ── Mobile CTA bar (hidden on desktop, shown on mobile below hero) ── */
.mobile-cta-bar { display: none; }

/* ── Page Hero Title (replaces hero on inner pages) ── */
.page-hero-title {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: #ffffff;
  text-align: center;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin: 10px 0 20px;
}

.ornament {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--gold-dk);
  font-size: 1.1rem;
  margin: 1.5rem 0;
}
.ornament::before, .ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dk), transparent);
}

/* Hamburger — hidden on desktop */
.hamburger {
  display: none;
  background: none;
  border: 1px solid var(--border);
  cursor: pointer;
  padding: 8px 10px;
  border-radius: 4px;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all .25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Desktop nav */
nav.desktop-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 10px 0 12px;
}
nav.desktop-nav a {
  font-family: var(--font-display);
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ivory-dk);
  padding: 4px 15px;
  border-right: 1px solid var(--border);
  transition: color .2s;
}
nav.desktop-nav a:last-child { border-right: none; }
nav.desktop-nav a:hover, nav.desktop-nav a.active { color: var(--gold); }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ivory-dk);
  padding: 14px 24px;
  border-bottom: 1px solid var(--border);
  transition: color .2s, background .2s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover, .mobile-nav a.active {
  color: var(--gold);
  background: rgba(201,169,110,.06);
}
.mobile-nav.open { display: flex; }

/* ════════════════════════════
   HERO
════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  height: 680px;
  overflow: hidden;
}
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}
.hero-overlay { display: none; }

/* ── Home Page Title Block ── */
.home-title-block {
  text-align: center;
  padding: 48px 24px 32px;
  background: var(--bg);
}
.home-title {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 300;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.1;
}
.home-subtitle {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--gold-lt);
  margin-top: 12px;
}

/* ── Home CTA Buttons ── */
.home-cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
}
.btn-cta {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: 2px;
  background: var(--gold);
  color: var(--bg);
  text-decoration: none;
  transition: background .25s, color .25s, transform .15s;
}
.btn-cta:hover { background: var(--gold-lt); color: var(--bg); transform: translateY(-2px); }
.btn-cta-outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-cta-outline:hover { background: rgba(255,255,255,0.1); color: #ffffff; border-color: #ffffff; }

/* ════════════════════════════
   FEATURES SECTION
════════════════════════════ */
.features-section {
  background: var(--bg2);
  padding: 32px 60px 36px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.features-headline {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 300;
  color: var(--ivory);
  text-align: center;
  line-height: 1.4;
  margin-bottom: 36px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.feature-card {
  display: flex;
  flex-direction: column;
}
.feature-img-wrap {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 6px;
  margin-bottom: 14px;
}
.feature-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.feature-card:hover .feature-img-wrap img { transform: scale(1.04); }
.feature-card h3 {
  font-family: var(--font-body);
  font-size: .98rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.4;
  max-width: 85%;
}
.feature-card p {
  font-size: .88rem;
  color: var(--ivory-dk);
  line-height: 1.65;
  max-width: 85%;
}

/* ════════════════════════════
   INSTAGRAM FEED SECTION
════════════════════════════ */
.insta-section {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 60px 40px 70px;
  margin-top: 0;
}
.insta-header {
  text-align: center;
  margin-bottom: 36px;
}
.insta-label {
  display: block;
  font-family: var(--font-accent);
  font-style: italic;
  font-size: .95rem;
  color: var(--gold);
  letter-spacing: .15em;
  margin-bottom: 8px;
}
.insta-title {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 300;
  letter-spacing: .15em;
  color: #ffffff;
  margin-bottom: 10px;
}
.insta-sub {
  font-family: var(--font-body);
  color: var(--ivory-dk);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto;
}
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
  max-width: 1100px;
  margin: 0 auto;
}
.insta-grid a {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  background: var(--bg3);
}
.insta-grid a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease, filter .4s ease;
  filter: brightness(.95);
}
.insta-grid a:hover img { transform: scale(1.06); filter: brightness(1.1); }
.insta-grid a .insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s;
}
.insta-grid a:hover .insta-overlay { background: rgba(0,0,0,0.28); }
.insta-overlay svg { opacity: 0; transition: opacity .3s; fill: white; width: 28px; height: 28px; }
.insta-grid a:hover .insta-overlay svg { opacity: 1; }
/* Skeleton loader tiles */
.insta-skeleton {
  aspect-ratio: 1;
  background: linear-gradient(90deg, var(--bg3) 25%, var(--bg2) 50%, var(--bg3) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}
@keyframes shimmer { 0%{background-position:200% 0} 100%{background-position:-200% 0} }

/* ════════════════════════════
   PAGE WRAPPER
════════════════════════════ */
.page-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 36px 40px 50px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: .08em;
  margin-bottom: .2rem;
}
.section-subtitle {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--muted);
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 36px 40px;
  margin-bottom: 36px;
}

/* ════════════════════════════
   WELCOME SPLIT SECTION (home page)
════════════════════════════ */
.welcome-bg-section {
  position: relative;
  width: 100%;
  min-height: 620px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  margin-bottom: 0;
  border: 8px solid #000000;
  box-sizing: border-box;
}
/* hide the old full-bleed bg img */
.welcome-bg-section .welcome-bg-img {
  display: none;
}
.welcome-bg-section .welcome-bg-overlay {
  display: none;
}
.welcome-text-box {
  position: relative;
  z-index: 2;
  background: var(--bg2);
  color: var(--ivory);
  padding: 72px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 8px solid #000000;
}
.welcome-text-box h2 {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 0.6rem;
}
.welcome-text-box .ornament {
  color: var(--gold-dk);
  margin: 0.5rem 0 1.2rem;
}
.welcome-text-box .ornament::before,
.welcome-text-box .ornament::after {
  background: linear-gradient(90deg, transparent, var(--gold-dk), transparent);
}
.welcome-text-box p {
  color: var(--ivory-dk);
  font-size: 1.05rem;
  line-height: 1.85;
}
.welcome-text-box .btn-gold {
  display: inline-block;
  margin-top: 1.8rem;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 13px 30px;
  background: var(--gold);
  color: var(--bg);
  border-radius: 2px;
  transition: background .25s;
  align-self: flex-start;
}
.welcome-text-box .btn-gold:hover { background: var(--gold-lt); }
.welcome-photo-side {
  position: relative;
  overflow: hidden;
  min-height: 620px;
}
.welcome-photo-side img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}


.img-text-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 50px;
}
.img-text-row.reverse { direction: rtl; }
.img-text-row.reverse > * { direction: ltr; }
.img-text-row img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border: 1px solid var(--border);
}
.img-text-body h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 1rem;
}
.img-text-body p { color: var(--ivory-dk); font-size: 1rem; }
.img-text-body ul { list-style: none; margin-top: .8rem; }
.img-text-body ul li {
  padding: 4px 0 4px 20px;
  position: relative;
  color: var(--ivory-dk);
  font-size: .97rem;
}
.img-text-body ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold-dk);
  font-size: .65rem;
  top: 7px;
}

/* ════════════════════════════
   PRICING CARDS
════════════════════════════ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 30px 0;
}
.price-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  padding: 28px 20px;
  text-align: center;
  border-radius: 4px;
}
.price-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: .5rem;
}
.price-card .price {
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--ivory);
  margin: .5rem 0;
}
.price-card p { font-size: .88rem; color: var(--muted); }

/* ════════════════════════════
   FAQ
════════════════════════════ */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--gold-lt);
  padding: 20px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  user-select: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '＋';
  font-size: 1.2rem;
  color: var(--gold-dk);
  flex-shrink: 0;
  margin-left: 16px;
}
details[open] .faq-question::after { content: '－'; }
.faq-answer {
  color: var(--ivory-dk);
  font-size: .98rem;
  padding: 0 0 20px 0;
  line-height: 1.8;
}

/* ════════════════════════════
   GALLERY + LIGHTBOX
════════════════════════════ */
.masonry-grid {
  columns: 4;
  column-gap: 12px;
  margin-bottom: 50px;
}
.masonry-grid img {
  width: 100%;
  display: block;
  margin-bottom: 12px;
  cursor: pointer;
  border: 1px solid var(--border);
  border-radius: 2px;
  transition: transform .3s, filter .3s, opacity .3s;
  filter: brightness(.92);
  break-inside: avoid;
}
.masonry-grid img:hover {
  transform: scale(1.02);
  filter: brightness(1.05);
  opacity: .95;
  position: relative;
  z-index: 1;
}
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; border: 1px solid var(--border); }
.lightbox-close {
  position: absolute;
  top: 20px; right: 30px;
  font-size: 2.5rem;
  color: var(--gold);
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}

/* ════════════════════════════
   TESTIMONIAL
════════════════════════════ */
/* ── Testimonial Slider ── */
.section-title-white {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 300;
  color: #ffffff;
  text-align: center;
  letter-spacing: .12em;
  margin: 28px 0 16px;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 0 0 24px;
}
.testimonial-card {
  background: var(--bg3);
  border-left: 3px solid var(--gold-dk);
  padding: 22px 22px 18px;
  display: flex;
  flex-direction: column;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 14px;
  letter-spacing: .08em;
}
.testimonial-card p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: .92rem;
  color: var(--ivory-dk);
  line-height: 1.75;
  flex: 1;
}
.testimonial-card cite {
  display: block;
  margin-top: 12px;
  font-style: normal;
  font-size: .8rem;
  color: var(--muted);
  font-family: var(--font-body);
  letter-spacing: .1em;
}

/* ════════════════════════════
   BAR INVENTORY TIERS
════════════════════════════ */
.inv-tier-block {
  margin-bottom: 10px;
}
.inv-tier-header {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 14px 24px;
  margin-bottom: 24px;
  border-left: 4px solid;
  border-radius: 2px;
}
.inv-silver  { color: #c8d4bc; border-color: #9bb08a; background: rgba(155,176,138,.08); }
.inv-gold    { color: var(--gold-lt); border-color: var(--gold); background: rgba(201,169,110,.08); }
.inv-platinum { color: #c8d8e8; border-color: #8ab0d0; background: rgba(138,176,208,.08); }
.inv-diamond  { color: #ffffff; border-color: #ffffff; background: rgba(255,255,255,.06); }
.inv-well     { color: var(--ivory-dk); border-color: var(--gold-dk); background: rgba(100,160,80,.06); }
.inv-specialty { color: var(--gold); border-color: var(--gold); background: rgba(201,169,110,.05); }

/* ════════════════════════════
   BAR INVENTORY
════════════════════════════ */
.bar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 28px;
  margin-top: 30px;
}
.bar-grid.bar-grid-2col .bar-category ul {
  columns: 2;
  column-gap: 24px;
}
.bar-category h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--gold);
  letter-spacing: .08em;
  border-bottom: 1px solid var(--border);
  padding-bottom: 8px;
  margin-bottom: 10px;
}
.bar-category ul { list-style: none; }
.bar-category ul li {
  padding: 3px 0 3px 14px;
  position: relative;
  font-size: .9rem;
  color: var(--ivory-dk);
}
.bar-category ul li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--gold-dk);
  font-size: 1.2rem;
  top: 0;
  line-height: 1.4;
}

.bar-notes {
  background: var(--bg3);
  border: 1px solid var(--border);
  padding: 28px 36px;
  margin-bottom: 40px;
  border-radius: 4px;
}
.bar-notes ul { list-style: none; }
.bar-notes ul li {
  padding: 5px 0 5px 22px;
  position: relative;
  color: var(--ivory-dk);
  font-size: .97rem;
}
.bar-notes ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold-dk);
  font-size: .6rem;
  top: 9px;
}

.bar-party-photo {
  width: 100%;
  height: 480px;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid var(--border);
}
.bar-party-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.pkg-notes-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.pkg-notes-photo {
  height: 100%;
  min-height: 420px;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid var(--border);
}
.pkg-notes-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  background: var(--bg);
}

/* ════════════════════════════
   BAR PACKAGE TABLE
════════════════════════════ */
.pkg-table-wrap {
  width: 100%;
  overflow-x: auto;
  margin: 0 0 8px;
  border-radius: 4px;
}
.pkg-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-body);
  font-size: 1rem;
}
.pkg-table thead tr {
  background: var(--bg3);
  border-bottom: 2px solid var(--gold-dk);
}
.pkg-table thead th {
  padding: 14px 20px;
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: .06em;
  white-space: nowrap;
}
.pkg-table thead th:first-child {
  text-align: left;
  color: var(--ivory);
}
.pkg-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background .15s;
}
.pkg-table tbody tr:hover { background: rgba(255,255,255,0.03); }
.pkg-table tbody td {
  padding: 13px 20px;
  text-align: center;
  color: var(--ivory-dk);
  font-size: .97rem;
}
.pkg-table tbody td:first-child {
  text-align: left;
  color: var(--ivory);
  font-size: 1rem;
}
.pkg-price-row td {
  background: var(--bg3);
  color: var(--gold) !important;
  font-family: var(--font-display);
  font-size: 1.2rem !important;
}
.pkg-included {
  color: #7ab87a !important;
  font-weight: 500;
}
.pkg-optional {
  color: var(--gold-lt) !important;
  font-style: italic;
}

/* ════════════════════════════
   CONTACT FORM
════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.contact-info p { color: var(--ivory-dk); margin-bottom: .8rem; font-size: 1rem; }
.contact-info .detail {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: .8rem;
}
.contact-social { display: flex; gap: 14px; margin-top: 24px; }
.contact-social a img { width: 30px; height: 30px; }

.contact-form label {
  display: block;
  font-family: var(--font-display);
  font-size: .83rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 12px 16px;
  border-radius: 3px;
  outline: none;
  margin-bottom: 20px;
  transition: border-color .2s;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--gold-dk); }
.contact-form textarea { height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.btn-gold {
  display: inline-block;
  font-family: var(--font-display);
  font-size: .9rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--gold);
  border: none;
  padding: 14px 40px;
  cursor: pointer;
  border-radius: 3px;
  transition: background .2s, transform .15s;
}
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-1px); }

.form-success {
  display: none;
  color: var(--gold);
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.05rem;
  margin-top: 14px;
}

/* ════════════════════════════
   MAP EMBED
════════════════════════════ */
.map-embed {
  width: 100%;
  height: 400px;
  border: 1px solid var(--border);
  filter: grayscale(.6) sepia(.3);
}

/* ════════════════════════════
   HISTORY
════════════════════════════ */
.history-body { font-size: 1.05rem; color: var(--ivory-dk); line-height: 1.9; }
.history-body p { margin-bottom: 1.5rem; }
.history-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 40px 0;
}
.history-images img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border: 1px solid var(--border);
}

/* ════════════════════════════
   SPECIAL EVENTS
════════════════════════════ */
.events-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 30px 0;
}
.event-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  padding: 28px;
  border-radius: 4px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.event-card img {
  width: 130px;
  height: 130px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--gold-dk);
  flex-shrink: 0;
}
.event-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: .4rem;
}
.event-card p { font-size: .9rem; color: var(--ivory-dk); }

/* ════════════════════════════
   DIRECTIONS
════════════════════════════ */
.directions-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 50px;
  align-items: start;
}
.directions-text h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.directions-text p { color: var(--ivory-dk); font-size: 1rem; margin-bottom: 1rem; }
.directions-text img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border: 1px solid var(--border);
  margin: 16px 0;
}

/* ════════════════════════════
   FOOTER
════════════════════════════ */
.site-footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 40px 20px;
  text-align: center;
  margin-top: 40px;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: .4rem;
}
.footer-address { font-size: .9rem; color: #ffffff; margin-bottom: .3rem; }
.footer-address a { color: #ffffff; }
.footer-address a:hover { color: var(--gold-lt); }
.footer-service-area { font-size: .8rem; color: var(--muted); letter-spacing: .06em; margin-bottom: .6rem; font-family: var(--font-accent); font-style: italic; }
.footer-phone { font-size: .9rem; color: #ffffff; margin-bottom: 20px; }
.footer-phone a { color: #ffffff; }
.footer-phone a:hover { color: var(--gold-lt); }
.footer-social { display: flex; justify-content: center; gap: 16px; margin-bottom: 20px; }
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--bg2);
  transition: background .2s, color .2s;
}
.social-icon svg { width: 20px; height: 20px; }
.footer-social a:hover .social-icon { background: var(--gold); color: var(--bg); }

/* ════════════════════════════════════════
   TABLET  ≤ 1024px
════════════════════════════════════════ */
.special-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .header-inner { padding: 0 24px; }
  .page-wrapper { padding: 50px 28px 70px; }
  nav.desktop-nav a { padding: 4px 10px; font-size: .85rem; }
  .brand-name { font-size: 1.7rem; letter-spacing: .18em; }
  .directions-grid { grid-template-columns: 1fr; gap: 30px; }
  .map-embed { height: 320px; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .insta-section { padding: 50px 24px 60px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .features-section { padding: 40px 40px 48px; }
  .features-headline { font-size: 1.5rem; margin-bottom: 28px; }
  .welcome-text-box { padding: 48px 36px; }
  .welcome-bg-section { min-height: 500px; }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .masonry-grid { columns: 3; }
  .pkg-notes-row { grid-template-columns: 1fr; gap: 24px; }
  .pkg-notes-photo { min-height: 320px; }
  .inv-tier-header { font-size: 1.3rem; }
  .page-hero-title { font-size: 2.4rem; }
  .history-images { grid-template-columns: 1fr; gap: 16px; }
  .history-images img { height: 220px; }
  .special-features-grid { grid-template-columns: 1fr; gap: 16px; }
  .events-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .directions-grid > div[style*="padding-top"] { padding-top: 0 !important; }
  .bar-grid { grid-template-columns: repeat(2, 1fr); }
  .bar-grid.bar-grid-2col .bar-category ul { columns: 1; }
}

/* ════════════════════════════════════════
   MOBILE  ≤ 768px
════════════════════════════════════════ */
@media (max-width: 768px) {

  /* Header — mobile: just title + hamburger */
  .header-inner { padding: 0 16px; }
  .brand-row {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 12px 0;
    gap: 0;
    position: relative;
  }
  .brand-left { order: 1; align-items: center; text-align: center; flex: none; }
  .brand-left-btn { display: none; }
  .brand-right { display: none; }
  .brand-name { font-size: 1.4rem; letter-spacing: .18em; white-space: nowrap; text-align: center; }
  .brand-tagline { display: none; }

  /* Show hamburger, hide desktop nav */
  .hamburger { display: flex; position: absolute; right: 16px; top: 50%; transform: translateY(-50%); }
  nav.desktop-nav { display: none; }

  /* Mobile CTA bar — shown below hero on homepage only */
  .mobile-cta-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 14px 20px;
    background: var(--bg2);
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
  }
  .mobile-cta-bar .social-icon-link img {
    width: 28px;
    height: 28px;
    border-radius: 4px;
  }
  .mobile-cta-bar .brand-book-btn {
    display: inline-block;
    font-size: .78rem;
    padding: 7px 16px;
  }

  /* Hero */
  .hero { height: 360px; }

  /* Page title */
  .page-hero-title { font-size: 2rem; }

  /* Welcome split → stack */
  .welcome-bg-section { grid-template-columns: 1fr; border-width: 4px; }
  .welcome-text-box { padding: 36px 24px; border-right: none; border-bottom: 4px solid #000000; }
  .welcome-text-box h2 { font-size: 1.2rem; letter-spacing: .04em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .welcome-photo-side { min-height: 320px; }

  /* Page */
  .page-wrapper { padding: 28px 16px 50px; }

  /* Features */
  .features-section { padding: 36px 20px 44px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .features-headline { font-size: 1.3rem; margin-bottom: 24px; }
  .feature-card h3 { font-size: 1rem; }
  .feature-card p { font-size: .9rem; }

  /* Testimonials */
  .section-title-white { font-size: 1.6rem; margin: 30px 0 18px; }
  .testimonial-grid { grid-template-columns: 1fr; gap: 14px; }
  .testimonial-card { padding: 20px 18px; }
  .testimonial-card p { font-size: .95rem; }

  /* Grids */
  .img-text-row { grid-template-columns: 1fr; gap: 20px; }
  .img-text-row.reverse { direction: ltr; }
  .img-text-row img { height: 220px; }
  .special-features-grid { grid-template-columns: 1fr; }

  .pricing-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .price-card { padding: 18px 14px; }
  .price-card h3 { font-size: 1.1rem; }
  .price-card .price { font-size: 1.4rem; }
  .price-card p { font-size: .9rem; }

  .masonry-grid { columns: 2; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .gallery-grid img { height: 150px; }

  .events-grid { grid-template-columns: 1fr; }
  .event-card { flex-direction: column; align-items: center; text-align: center; }
  .event-card img { width: 100px; height: 100px; }

  /* History */
  .history-body { font-size: .95rem; }
  .history-images { grid-template-columns: 1fr; }
  .history-images img { height: 200px; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .directions-grid { grid-template-columns: 1fr; gap: 24px; }
  .bar-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  .bar-grid.bar-grid-2col .bar-category ul { columns: 1; }

  /* Bar packages */
  .pkg-notes-row { grid-template-columns: 1fr; gap: 24px; }
  .pkg-notes-photo { min-height: 280px; }
  .pkg-table { font-size: .85rem; }
  .pkg-table thead th { padding: 10px 12px; font-size: .95rem; }
  .pkg-table tbody td { padding: 10px 12px; }
  .inv-tier-header { font-size: 1.2rem; padding: 10px 16px; }

  /* Section titles */
  .section-title { font-size: 1.8rem; }
  .gallery-section-title { font-size: 1.6rem; }

  /* Cards */
  .card { padding: 22px 18px; }
  .bar-notes { padding: 20px 18px; }

  /* FAQ */
  .faq-question { font-size: 1rem; padding: 16px 0; }

  /* Contact — form first on mobile */
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .contact-info { order: 2; }
  .contact-form-wrap { order: 1; }

  /* Buttons */
  .btn-gold { width: 100%; text-align: center; }

  /* Map padding override on mobile */
  .directions-grid > div[style*="padding-top"] { padding-top: 0 !important; }

  /* Map */
  .map-embed { height: 260px; }

  /* Instagram */
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .insta-section { padding: 40px 16px 50px; }
  .insta-title { font-size: 1.8rem; }
}

/* ════════════════════════════════════════
   SMALL MOBILE  ≤ 420px
════════════════════════════════════════ */
@media (max-width: 420px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .masonry-grid { columns: 1; }
  .gallery-grid { grid-template-columns: 1fr; }
  .bar-grid { grid-template-columns: 1fr; }
  .bar-grid.bar-grid-2col .bar-category ul { columns: 1; }
  .features-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .history-images { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero { height: 300px; }
  .page-hero-title { font-size: 1.7rem; letter-spacing: .12em; }
  .brand-name { font-size: 1.2rem; letter-spacing: .1em; }
  .brand-tagline { font-size: .8rem; }
  .brand-book-btn { font-size: .78rem; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .welcome-text-box p { font-size: .95rem; }
  .features-section { padding: 28px 16px 36px; }
  .pkg-notes-row { grid-template-columns: 1fr; }
  .pkg-table thead th { padding: 8px 8px; font-size: .8rem; letter-spacing: 0; }
  .pkg-table tbody td { padding: 8px 8px; font-size: .82rem; }
  .inv-tier-header { font-size: 1rem; }
  .special-features-grid { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr; }
}
