/* ─── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:      #0a0a0a;
  --charcoal:   #1a1a1a;
  --charcoal2:  #242424;
  --gold:       #c9a84c;
  --gold-light: #e0c472;
  --gold-dark:  #a07830;
  --white:      #f8f4ef;
  --white2:     #ede8e0;
  --muted:      #8a8278;
  --serif:      'Cormorant Garamond', Georgia, serif;
  --sans:       'Jost', 'Helvetica Neue', sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ─── Utility ───────────────────────────────────────────────── */
.gold        { color: var(--gold); }
.serif       { font-family: var(--serif); }
.container   { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.container--narrow { max-width: 820px; margin: 0 auto; padding: 0 2rem; }

.divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 auto 1.5rem;
  width: fit-content;
}
.divider::before,
.divider::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: .6;
}
.divider span {
  font-family: var(--sans);
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
}

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: .95rem 2.4rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  transition: background .3s, color .3s;
}
.btn:hover { background: var(--gold); color: var(--black); }
.btn--filled { background: var(--gold); color: var(--black); }
.btn--filled:hover { background: var(--gold-light); border-color: var(--gold-light); }

section { padding: 7rem 0; }

/* ─── Navigation ────────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 1.4rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background .4s, padding .4s, box-shadow .4s;
}
#nav.scrolled {
  background: rgba(10,10,10,.96);
  padding: 1rem 2rem;
  box-shadow: 0 1px 0 rgba(201,168,76,.15);
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1.5rem;
  letter-spacing: .05em;
  color: var(--white);
}
.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links li {
  display: flex;
  align-items: center;
}
.nav-links a {
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--white2);
  transition: color .25s;
  font-weight: 400;
}
.nav-links a:hover { color: var(--gold); }

.nav-cta {
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: .65rem 1.6rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  transition: background .3s, color .3s;
  font-weight: 400;
}
.nav-cta:hover { background: var(--gold); color: var(--black); }

/* ─── Nav Dropdown (Services) ──────────────────────────────── */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: .35rem;
  cursor: pointer;
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--white2);
  font-weight: 400;
  transition: color .25s;
  font-family: var(--sans);
  line-height: 1;
  padding: 0;
  vertical-align: middle;
}

.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown-toggle:hover {
  color: var(--gold);
}

.nav-dropdown-arrow {
  font-size: .55rem;
  color: var(--gold);
  transition: transform .25s ease;
  display: inline-block;
}

.nav-dropdown:hover .nav-dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(10,10,10,.97);
  border: 1px solid rgba(201,168,76,.18);
  border-top: 2px solid var(--gold);
  min-width: 200px;
  /* Push menu down visually but use pseudo bridge to keep hover alive */
  padding: 1rem 0 .6rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s ease, visibility .25s;
  box-shadow: 0 16px 40px rgba(0,0,0,.5);
  z-index: 1000;
}

/* Invisible bridge above the menu so cursor can travel from link → menu */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -0.8rem;
  left: 0;
  right: 0;
  height: 0.8rem;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.nav-dropdown-menu li {
  display: block;
}

.nav-dropdown-menu li a {
  display: block;
  padding: .7rem 1.4rem;
  font-size: .62rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--white2);
  transition: color .2s, background .2s, padding-left .2s;
  white-space: nowrap;
}

.nav-dropdown-menu li a:hover {
  color: var(--gold);
  background: rgba(201,168,76,.07);
  padding-left: 1.8rem;
}

/* ─── Mobile Dropdown (Services) ───────────────────────────── */
.mobile-dropdown {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 100%;
  text-align: center;
}

.mobile-dropdown-toggle {
  font-family: var(--serif);
  font-size: 2rem;
  letter-spacing: .05em;
  color: var(--white);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: .4rem;
  transition: color .2s;
  padding: 0;
}

.mobile-dropdown-toggle:hover { color: var(--gold); }

.mobile-dropdown-arrow {
  font-size: 1rem;
  color: var(--gold);
  display: inline-block;
  transition: transform .3s ease;
}

.mobile-dropdown-toggle.open .mobile-dropdown-arrow {
  transform: rotate(180deg);
}

.mobile-dropdown-items {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .8rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, opacity .3s ease, margin .3s ease;
  opacity: 0;
  margin-top: 0;
}

.mobile-dropdown-items.open {
  max-height: 200px;
  opacity: 1;
  margin-top: .8rem;
}

.mobile-dropdown-items a {
  font-family: var(--serif);
  font-size: 1.3rem !important;
  letter-spacing: .06em;
  color: var(--white2) !important;
  transition: color .2s;
}

.mobile-dropdown-items a:hover { color: var(--gold) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--white);
  transition: transform .3s, opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 850;
  background: rgba(10,10,10,.98);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s;
}
.mobile-menu.open { opacity: 1; pointer-events: all;display: flex; }
.mobile-menu a {
  font-family: var(--serif);
  font-size: 2rem;
  letter-spacing: .05em;
  color: var(--white);
  transition: color .2s;
}
.mobile-menu a:hover { color: var(--gold); }

/* ─── Hero ──────────────────────────────────────────────────── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(10,10,10,.55) 0%, rgba(10,10,10,.7) 100%),
    url('../images/hero-bg.jpg') center/cover no-repeat;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding: 0 2rem;
}

.hero-eyebrow {
  font-size: .65rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  margin-top: 3rem;
  font-weight: 400;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero-title em { font-style: italic; color: var(--gold-light); }

.hero-sub {
  font-size: .9rem;
  color: var(---gold-light);
  max-width: 780px;
  margin: 0 auto 2.8rem;
  font-weight: 00;
  letter-spacing: .04em;
}


.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-badges {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  margin-top: 3rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 1s forwards;
}

.hero-badge { text-align: center; }

.hero-badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
}

.hero-badge-label {
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-divider {
  width: 1px;
  height: 40px;
  background: rgba(201,168,76,0.3);
  align-self: center;
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  z-index: 2;
  animation: scrollBounce 2s infinite;
}
.hero-scroll span {
  font-size: .58rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ─── Intro Strip ───────────────────────────────────────────── */
#intro {
  background: var(--charcoal);
  padding: 5rem 0;
  text-align: center;
}
.intro-inner { max-width: 760px; margin: 0 auto; padding: 0 2rem; }
.intro-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 1.2rem;
}
.intro-title em { font-style: italic; color: var(--gold); }
.intro-text { color: var(--muted); font-size: .9rem; letter-spacing: .03em; }

/* ─── Services ──────────────────────────────────────────────── */
#services { background: var(--black); text-align: center; }

.section-label {
  font-size: .65rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 400;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-sub {
  color: var(--muted);
  font-size: .88rem;
  max-width: 540px;
  margin: 0 auto 4rem;
  letter-spacing: .03em;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  margin-top: 3rem;
}
.section-eyebrow {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}
.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.pricing-card {
  background: var(--black-card);
  border: 1px solid rgba(201,168,76,0.15);
  padding: 2rem;
  border-radius: 2px;
  transition: border-color 0.2s;
}

.pricing-card:hover { border-color: rgba(201,168,76,0.5); }

.pricing-card-title {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.pricing-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.pricing-card li {
  font-size: 0.82rem;
  color: var(--cream-muted);
  padding-left: 1rem;
  position: relative;
  line-height: 1.5;
}

.pricing-card li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold-dark);
  font-size: 0.7rem;
}

.pricing-rate {
  background: var(--gold);
  color: var(--black);
  padding: 1.5rem 2rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.rate-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.rate-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
}

.rate-note {
  font-size: 0.75rem;
  margin-top: 0.25rem;
  opacity: 0.75;
}

.services-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 2px;
  background: var(--black-card);
}

.photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--black-card);
  border: 1px dashed rgba(201,168,76,0.3);
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}

.photo-placeholder::before {
  content: '📷';
  font-size: 2rem;
}
/* ─── Experience Bar ────────────────────────────────────────── */
#experience-bar {
  background: var(--gold);
  padding: 2.2rem 2rem;
}
.exp-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}
.exp-stat { text-align: center; }
.exp-num {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--black);
  line-height: 1;
}
.exp-label {
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(10,10,10,.7);
  margin-top: .3rem;
}
.exp-sep { width: 1px; height: 48px; background: rgba(10,10,10,.2); }

/* ─── Gallery ───────────────────────────────────────────────── */
#gallery { background: var(--charcoal); text-align: center; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 8px;
  margin-top: 3.5rem;
}
.gal-item {
  overflow: hidden;
  position: relative;
}
.gal-item img {
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.25,.46,.45,.94), filter .4s;
  filter: brightness(.85) saturate(.9);
}
.gal-item:hover img { transform: scale(1.04); filter: brightness(1) saturate(1); }

.gal-1 { grid-column: span 8; grid-row: span 2; aspect-ratio: unset; height: 480px; }
.gal-2 { grid-column: span 4; height: 234px; }
.gal-3 { grid-column: span 4; height: 234px; }
.gal-4 { grid-column: span 4; height: 234px; }
.gal-5 { grid-column: span 4; height: 234px; }
.gal-6 { grid-column: span 4; height: 234px; }

/* ─── Signature Process ─────────────────────────────────────── */
#process { background: var(--black); }

.process-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.process-text .section-sub { margin: 0 0 3rem; max-width: unset; text-align: left; }
.process-text .section-title { text-align: left; }
.process-text .section-label { text-align: left; }
.process-text .divider { margin: 0 0 1.5rem; }

.process-steps { display: flex; flex-direction: column; gap: 2rem; }
.process-step { display: flex; gap: 1.5rem; align-items: flex-start; }
.step-num {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  opacity: .4;
  line-height: 1;
  flex-shrink: 0;
  width: 2.5rem;
}
.step-body h4 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: .4rem;
}
.step-body p { font-size: .82rem; color: var(--muted); line-height: 1.7; }

.process-image { position: relative; }
.process-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  filter: brightness(.85);
}
.process-image::before {
  content: '';
  position: absolute;
  top: -16px; left: -16px;
  right: 16px; bottom: 16px;
  border: 1px solid rgba(201,168,76,.25);
  z-index: 0;
  pointer-events: none;
}
.process-image img { position: relative; z-index: 1; }

/* ─── Testimonials ──────────────────────────────────────────── */
#testimonials { background: var(--charcoal2); text-align: center; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 3.5rem;
}
.testi-card {
  background: var(--charcoal);
  padding: 2.8rem 2.4rem;
  text-align: left;
  position: relative;
  transition: background .3s;
}
.testi-card:hover { background: #2a2a2a; }
.testi-stars {
  display: flex;
  gap: .25rem;
  margin-bottom: 1.4rem;
}
.testi-stars span { color: var(--gold); font-size: .85rem; }
.testi-quote {
  font-family: var(--serif);
  font-size: 1.08rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.65;
  color: var(--white2);
  margin-bottom: 1.8rem;
}
.testi-name {
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
}
.testi-role { font-size: .75rem; color: var(--muted); margin-top: .2rem; }
.testi-open-quote {
  font-family: var(--serif);
  font-size: 5rem;
  color: var(--gold);
  opacity: .12;
  position: absolute;
  top: 1rem; right: 1.5rem;
  line-height: 1;
  user-select: none;
}

/* ─── Pricing ───────────────────────────────────────────────── */
#pricing { background: var(--black); text-align: center; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  margin-top: 3.5rem;
}
.pricing-card {
  background: var(--charcoal);
  padding: 3.5rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: background .3s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.pricing-card.featured { background: var(--charcoal2); }
.pricing-card:hover { background: #252525; }
.pricing-card.featured:hover { background: #2e2e2e; }

.pricing-badge {
  font-size: .58rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: .3rem .8rem;
  margin-bottom: 1.5rem;
  font-weight: 400;
}
.pricing-tier {
  font-size: .62rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .8rem;
}
.pricing-name {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: .6rem;
}
.pricing-from {
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: .2rem;
  line-height: 1;
}
.pricing-from sup { font-size: 1.2rem; color: var(--gold); }
.pricing-note {
  font-size: .7rem;
  color: var(--muted);
  margin-bottom: 2rem;
  letter-spacing: .04em;
}
.pricing-features {
  margin-bottom: 2.5rem;
  flex-grow: 1;
}
.pricing-features li {
  font-size: .8rem;
  color: var(--white2);
  padding: .6rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  gap: .7rem;
}
.pricing-features li::before {
  content: '';
  display: block;
  width: 14px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ─── CTA Banner ────────────────────────────────────────────── */
#cta {
  position: relative;
  padding: 9rem 2rem;
  text-align: center;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(10,10,10,.78), rgba(10,10,10,.82)),
    url('../images/cta-bg.jpg') center/cover no-repeat;
}
.cta-content { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
.cta-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.cta-title em { font-style: italic; color: var(--gold-light); }
.cta-sub {
  color: var(--muted);
  font-size: .88rem;
  margin-bottom: 2.5rem;
  letter-spacing: .03em;
}
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─── Booking Modal ─────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s;
  padding: 1rem;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }

.modal {
  background: var(--charcoal);
  max-width: 640px;
  width: 100%;
  padding: 3.5rem;
  position: relative;
  transform: translateY(24px);
  transition: transform .35s;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-overlay.open .modal { transform: translateY(0); }

.modal-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-size: 1.2rem;
  color: var(--muted);
  width: 32px; height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color .2s;
}
.modal-close:hover { color: var(--gold); }

.modal-eyebrow {
  font-size: .6rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .8rem;
}
.modal-title {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: .4rem;
}
.modal-sub {
  font-size: .8rem;
  color: var(--muted);
  margin-bottom: 2.5rem;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1rem; }
.form-group label {
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  color: var(--white);
  font-family: var(--sans);
  font-size: .85rem;
  font-weight: 300;
  padding: .85rem 1rem;
  outline: none;
  transition: border-color .25s;
  width: 100%;
}
.form-group select option { background: var(--black-soft); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='[w3.org](http://www.w3.org/2000/svg)' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23c9a84c'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}
.form-group textarea { height: 120px; resize: none; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.2); }
.form-group select option { background: var(--charcoal); }

.form-submit { margin-top: 1.5rem; width: 100%; }
.form-submit .btn { width: 100%; text-align: center; padding: 1.1rem; font-size: .7rem; }

.form-privacy {
  margin-top: 1rem;
  font-size: .7rem;
  color: var(--muted);
  text-align: center;
}
.contact-form- {
  background: var(--black-card);
  border: 1px solid rgba(201,168,76,0.15);
  padding: 2.5rem;
  border-radius: 2px;
}

.form-title- {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.form-sub- {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}
.form-submit- {
  width: 100%;
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 0.9rem 2rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 0.5rem;
}

.form-submit-:hover { background: var(--gold-light); }
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.social-link {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--cream-muted);
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s;
}

.social-link:hover { border-color: var(--gold); color: var(--gold); }


/* ─── Chatbot ───────────────────────────────────────────────── */
/* #chatbot-toggle {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 980;
  width: 58px; height: 58px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(201,168,76,.4);
  transition: transform .25s, background .25s;
}
#chatbot-toggle:hover { transform: scale(1.07); background: var(--gold-light); }
#chatbot-toggle svg { width: 24px; height: 24px; fill: var(--black); }

#chatbot-window {
  position: fixed;
  bottom: 6.5rem; right: 2rem;
  z-index: 979;
  width: 360px;
  max-height: 520px;
  background: var(--charcoal);
  box-shadow: 0 16px 60px rgba(0,0,0,.6);
  display: flex;
  flex-direction: column;
  transform: translateY(20px) scale(.97);
  opacity: 0;
  pointer-events: none;
  transition: transform .3s, opacity .3s;
}
#chatbot-window.open { transform: translateY(0) scale(1); opacity: 1; pointer-events: all; }

.chat-header {
  background: var(--charcoal2);
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  gap: .9rem;
  border-bottom: 1px solid rgba(201,168,76,.15);
}
.chat-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--black);
  flex-shrink: 0;
  overflow: hidden;
}
.avatar-logo {
  width: 100%;height: 100%;
  object-fit: cover;
}
.chat-header-info h4 { font-size: .8rem; font-weight: 400; letter-spacing: .05em; }
.chat-header-info p { font-size: .68rem; color: var(--gold); letter-spacing: .08em; }

.chat-messages {
  flex-grow: 1;
  overflow-y: auto;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: .9rem;
  scroll-behavior: smooth;
}
.chat-messages::-webkit-scrollbar { width: 3px; }
.chat-messages::-webkit-scrollbar-thumb { background: rgba(201,168,76,.3); }

.msg { display: flex; flex-direction: column; max-width: 85%; }
.msg.bot { align-self: flex-start; }
.msg.user { align-self: flex-end; align-items: flex-end; }

.msg-bubble { padding: .75rem 1rem; font-size: .8rem; line-height: 1.55; }
.msg.bot .msg-bubble {
  background: rgba(255,255,255,.06);
  color: var(--white2);
  border-left: 2px solid var(--gold);
}
.msg.user .msg-bubble { background: var(--gold); color: var(--black); }

.chat-options {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  padding: .5rem 1.2rem 1rem;
}
.chat-opt {
  font-size: .7rem;
  padding: .45rem .9rem;
  border: 1px solid rgba(201,168,76,.4);
  color: var(--gold);
  cursor: pointer;
  transition: background .2s, color .2s;
  background: none;
  font-family: var(--sans);
  letter-spacing: .05em;
}
.chat-opt:hover { background: var(--gold); color: var(--black); }

.chat-input-row { display: flex; border-top: 1px solid rgba(255,255,255,.07); }
.chat-input {
  flex-grow: 1;
  background: none;
  border: none;
  padding: .9rem 1.2rem;
  font-family: var(--sans);
  font-size: .8rem;
  color: var(--white);
  outline: none;
}
.chat-input::placeholder { color: rgba(255,255,255,.2); }
.chat-send {
  padding: .9rem 1.2rem;
  background: none;
  border: none;
  color: var(--gold);
  cursor: pointer;
  font-size: 1rem;
  transition: opacity .2s;
}
.chat-send:hover { opacity: .7; } */

/* ─── Page Hero (inner pages) ───────────────────────────────── */
.page-hero {
  padding: 12rem 2rem 6rem;
  text-align: center;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: .3;
}
.page-title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  margin-bottom: 1rem;
}
.page-sub { color: var(--muted); max-width: 560px; margin: 0 auto; font-size: .9rem; }

/* ─── Service Pages ─────────────────────────────────────────── */
.service-page { background: var(--black); }
.service-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.service-page-img img { height: 580px; object-fit: cover; filter: brightness(.85); }
.service-page-content .section-title { text-align: left; }
.service-page-content .section-label { text-align: left; }
.service-page-features { margin: 2rem 0; }
.service-page-features li {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: .8rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-size: .85rem;
  color: var(--white2);
}
.service-page-features li::before {
  content: '';
  display: block;
  width: 18px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ─── About Page ────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-img { position: relative; }
.about-img img { height: 600px; object-fit: cover; }
.about-img-badge {
  position: absolute;
  bottom: -1.5rem; right: -0.5rem;
 
  padding: 0.5rem 0.5rem;
  text-align: center;
  z-index: 0;
}
.about-img-badge-num {
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--black);
  line-height: 1;
}
.about-img-badge-label {
  font-size: .6rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(0,0,0,.7);
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── VENUE CARDS ── */
.venue-card {
  background: var(--black-card);
  border: 1px solid rgba(201,168,76,0.15);
  border-left: 3px solid var(--gold);
  padding: 1.2rem 1.5rem;
  border-radius: 2px;
  transition: border-color 0.2s, transform 0.2s;
}

.venue-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.venue-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.2rem;
}

.venue-location {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

/* ─── Footer ────────────────────────────────────────────────── */
footer {
  background: var(--charcoal);
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(201,168,76,.12);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer-brand h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 300;
  margin-bottom: .8rem;
}
.footer-brand h3 span { color: var(--gold); }
.footer-brand p { font-size: .8rem; color: var(--muted); max-width: 280px; line-height: 1.7; }
.footer-brand-location { margin-top: 1.2rem; font-size: .72rem; color: var(--gold); letter-spacing: .1em; }
.footer-col h4 {
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
  font-weight: 400;
}
.footer-col ul { display: flex; flex-direction: column; gap: .7rem; }
.footer-col ul li a { font-size: .8rem; color: var(--muted); transition: color .2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy { font-size: .72rem; color: var(--muted); }
.footer-copy span { color: var(--gold); }
.footer-socials { display: flex; gap: 1.2rem; }
.footer-socials a {
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .2s;
}
.footer-socials a:hover { color: var(--gold); }

/* ─── Animations ────────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

#otherOptionTextarea {
            display: none;
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — Complete Mobile-First Overhaul
   Breakpoints: 1024px (tablet), 768px (mobile), 480px (small)
   ══════════════════════════════════════════════════════════════ */

/* ── 1024px: Tablet ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  /* Nav */
  .nav-links { gap: 1.5rem; }
  .nav-links a { font-size: .6rem; }

  /* Services grid */
  .services-grid { grid-template-columns: 1fr; }
  .service-card { aspect-ratio: 16/9; }

  /* Services/Pricing two-column */
  .services-pricing-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .services-pricing-img { position: static; }
  .services-pricing-img img { min-height: 320px; max-height: 420px; }

  /* Gallery */
  .gal-1 { grid-column: span 12; height: 340px; grid-row: span 1; }
  .gal-2, .gal-3, .gal-4, .gal-5, .gal-6 { grid-column: span 6; height: 220px; }

  /* Process */
  .process-inner { grid-template-columns: 1fr; gap: 3rem; }
  .process-image { order: -1; }
  .process-image img { height: 380px; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr 1fr; gap: 1.5px; }

  /* Pricing grid */
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-cards { grid-template-columns: 1fr 1fr; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }

  /* Service pages */
  .service-page-grid { grid-template-columns: 1fr; gap: 3rem; }
  .service-page-img img { height: 400px; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-img img { height: 440px; }
  .about-img-badge { right: 1rem; bottom: 1rem; }

  /* Contact grid in section */
  .contact-grid { grid-template-columns: 1fr !important; }

  /* Venues grid */
  #venues .venues-grid,
  #venues [style*="grid-template-columns: repeat(3"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* Hero badges */
  .hero-badges {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin-top: 2.5rem;
    justify-content: center;
  }
}

/* ── 768px: Mobile ──────────────────────────────────────────── */
@media (max-width: 768px) {

  /* ── Nav ── */
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }

  /* ── Base spacing ── */
  section { padding: 4rem 0; }
  .container { padding: 0 1.25rem; }

  /* ── Hero ── */
  #hero { min-height: 100svh; }
  .hero-content { padding: 0 1.25rem; }
  .hero-title { font-size: clamp(2rem, 8vw, 2.8rem); line-height: 1.2; }
  .hero-sub { font-size: .85rem; }
  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: .75rem;
  }
  .hero-actions .btn {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }
  .hero-badges {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
    padding: 0 1rem;
  }
  .hero-badge-num { font-size: 1.1rem; }
  .hero-badge-label { font-size: .55rem; }
  .hero-divider { height: 28px; }

  /* ── Intro strip ── */
  #intro { padding: 3.5rem 0; }
  .intro-inner { padding: 0 1.25rem; }
  .intro-title { font-size: clamp(1.5rem, 6vw, 2rem); }

  /* ── About (index page) ── */
  #about .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  #about .section-inner,
  #about .container { padding: 0 1.25rem; }
  .about-img img { height: 340px; width: 100%; }
  .about-img-badge {
    right: .75rem;
    bottom: .75rem;
    padding: 1.2rem 1.4rem;
  }
  .about-img-badge-num { font-size: 2rem; }

  /* ── Services/Pricing section ── */
  #services { padding: 4rem 0; }
  #services .container { padding: 0 1.25rem; }
  .services-pricing-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
  }
  .pricing-rate { padding: 1.2rem 1.4rem; }
  .rate-price { font-size: 1.3rem; }
  .pricing-cards { grid-template-columns: 1fr; gap: 1rem; }
  .pricing-card { padding: 1.5rem; }
  .services-pricing-img img { min-height: 260px; max-height: 320px; }

  /* ── Experience bar ── */
  #experience-bar { padding: 1.8rem 1rem; }
  .exp-inner { gap: 1.5rem; flex-wrap: wrap; justify-content: center; }
  .exp-sep { display: none; }
  .exp-num { font-size: 1.6rem; }
  .exp-stat { min-width: 80px; }

  /* ── Gallery ── */
  #gallery { padding: 4rem 0; }
  .gallery-grid { gap: 4px; margin-top: 2rem; }
  .gal-1 { grid-column: span 12; height: 260px; grid-row: span 1; }
  .gal-2, .gal-3, .gal-4, .gal-5, .gal-6 { grid-column: span 12; height: 200px; }

  /* ── Process ── */
  #process .container { padding: 0 1.25rem; }
  .process-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .process-image { order: -1; }
  .process-image img { height: 280px; }
  .process-image::before { display: none; }
  .process-text .section-title { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .process-steps { gap: 1.5rem; }
  .step-num { font-size: 2rem; width: 2rem; }

  /* ── Testimonials ── */
  .testimonials-grid { grid-template-columns: 1fr; gap: 2px; }
  .testi-card { padding: 2rem 1.5rem; }
  .testi-quote { font-size: .95rem; }

  /* ── Venues ── */
  #venues { padding: 4rem 0; }
  #venues .section-inner { padding: 0 1.25rem; }
  #venues [style*="grid-template-columns"] {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: .75rem !important;
  }
  .venue-card { padding: 1rem 1.1rem; }
  .venue-name { font-size: .82rem; }

  /* ── Contact section (index) ── */
  #about ~ section [style*="grid-template-columns:1fr 1fr"],
  section[style*="background:var(--black)"] .container > div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
  }
  .contact-form { padding: 1.75rem 1.25rem; }
  .form-title { font-size: 1.1rem; }
  .form-row { grid-template-columns: 1fr; }
  .form-group input,
  .form-group select,
  .form-group textarea { font-size: .9rem; padding: .8rem .9rem; }
  .form-submit .btn,
  button.form-submit { font-size: .68rem; padding: 1rem; }

  /* ── Footer ── */
  footer { padding: 3.5rem 0 2rem; }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2.2rem;
    padding: 0 1.25rem;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: .75rem;
    padding: 1.5rem 1.25rem 0;
  }
  .footer-brand p { max-width: 100%; }

  /* ── Modal ── */
  .modal {
    padding: 2.5rem 1.25rem;
    max-height: 95svh;
    border-radius: 0;
  }
  .modal-title { font-size: 1.6rem; }
  .form-row { grid-template-columns: 1fr; }

  /* ── Chatbot ── */
  #chatbot-toggle { bottom: 1.25rem; right: 1.25rem; width: 52px; height: 52px; }
  #chatbot-window {
    width: calc(100vw - 2rem);
    right: 1rem;
    bottom: 5.5rem;
    max-height: 70svh;
  }

  /* ── Page hero (inner pages) ── */
  .page-hero { padding: 9rem 1.25rem 4rem; }
  .page-title { font-size: clamp(2rem, 8vw, 3rem); }
  .page-sub { font-size: .85rem; }

  /* ── Service pages ── */
  .service-page-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .service-page-img img { height: 280px; }
  .service-page-content { padding: 0; }
  .service-page-features li { font-size: .82rem; }

  /* ── About page ── */
  .about-img img { height: 320px; }

  /* ── Contact page ── */
  .contact-page-grid,
  [style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; }

  /* ── Pricing page ── */
  #pricing-page .pricing-cards { grid-template-columns: 1fr; }

  /* Inline contact grid on index */
  div[style*="grid-template-columns:1fr 1fr;gap:5rem"] {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
  }
}

/* ── 480px: Small phones ────────────────────────────────────── */
@media (max-width: 480px) {
  /* Hero */
  .hero-title { font-size: clamp(1.75rem, 9vw, 2.2rem); }
  .hero-eyebrow { font-size: .58rem; letter-spacing: .18em; }
  .hero-badges { gap: 1rem; }

  /* Intro */
  .intro-title { font-size: clamp(1.35rem, 7vw, 1.75rem); }

  /* Section titles */
  .section-title { font-size: clamp(1.6rem, 7vw, 2.2rem); }

  /* Gallery — single column on tiny phones */
  .gal-1, .gal-2, .gal-3,
  .gal-4, .gal-5, .gal-6 { grid-column: span 12; height: 180px; }

  /* Venues — single column */
  #venues [style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }

  /* Experience bar — 2×2 */
  .exp-inner { gap: 1.2rem; }
  .exp-stat { width: calc(50% - .6rem); }

  /* Testimonials */
  .testi-card { padding: 1.75rem 1.25rem; }

  /* Modal */
  .modal { padding: 2rem 1rem; }
  .modal-title { font-size: 1.4rem; }

  /* Footer */
  .footer-brand h3 { font-size: 1.3rem; }
  .footer-socials { gap: .75rem; }

  /* Nav logo smaller */
  .nav-logo { font-size: 1.2rem; }

  /* Buttons full width on small screens */
  .btn { padding: .85rem 1.5rem; font-size: .68rem; }
}

/* ── Venues grid (proper class-based, not inline style) ── */
.venues-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

/* ── Contact section two-column grid ── */
.contact-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

/* ── Services pricing two-column ── */
.services-pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3rem;
  text-align: left;
}
.services-pricing-left { display: flex; flex-direction: column; }
.services-pricing-img { position: sticky; top: 100px; align-self: start; }
.services-pricing-img img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  border-radius: 2px;
  display: block;
}

/* Contact form box */
.contact-form {
  background: var(--charcoal);
  border: 1px solid rgba(201,168,76,.12);
  padding: 2.5rem;
}
.form-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: .4rem;
}
.form-sub {
  font-size: .78rem;
  color: var(--muted);
  margin-bottom: 2rem;
}
button.form-submit {
  width: 100%;
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 1rem 2rem;
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s;
  margin-top: .5rem;
}
button.form-submit:hover { background: var(--gold-light); }

/* Responsive additions for new classes */
@media (max-width: 1024px) {
  .contact-section-grid { grid-template-columns: 1fr; gap: 3rem; }
  .venues-grid { grid-template-columns: repeat(2, 1fr); }
  .services-pricing-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .services-pricing-img { position: static; }
  .services-pricing-img img { min-height: 300px; max-height: 400px; }
}

@media (max-width: 768px) {
  .contact-section-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .venues-grid { grid-template-columns: repeat(2, 1fr); gap: .75rem; }
  .contact-form { padding: 1.75rem 1.25rem; }
  .services-pricing-grid { grid-template-columns: 1fr; gap: 2rem; margin-top: 2rem; }
  .services-pricing-img img { min-height: 260px; max-height: 320px; }
  .pricing-cards { grid-template-columns: 1fr; gap: 1rem; }
}

@media (max-width: 480px) {
  .venues-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 1.5rem 1rem; }
}