/* ==========================================================================
   Liquaide Private Bartending Services
   Design system: brand colors sampled from the logo
   ========================================================================== */

:root {
  /* Brand palette */
  --cream: #faf7f0;
  --white: #ffffff;
  --charcoal: #1a1a1a;
  --charcoal-2: #242021;
  --charcoal-soft: #4a4544;
  --maroon: #b81028;
  --maroon-dark: #8c0c1f;
  --lime: #88d000;
  --lime-dark: #4a7000;
  --line: #e6e0d4;

  /* Type */
  --font-heading: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Layout */
  --container: 1160px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 10px rgba(26, 26, 26, 0.08);
  --shadow-md: 0 12px 32px rgba(26, 26, 26, 0.14);
  --header-h: 84px;
}

/* --------------------------------------------------------------------------
   Reset / base
   -------------------------------------------------------------------------- */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

a:hover {
  color: var(--maroon-dark);
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--charcoal);
}

h1 { font-size: clamp(2.2rem, 4.4vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
h3 { font-size: 1.35rem; }

p { margin: 0 0 1em; }

ul { margin: 0; padding: 0; list-style: none; }

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 88px 0;
}

.section--tight {
  padding: 56px 0;
}

.section--dark {
  background: var(--charcoal);
  color: var(--cream);
}

.section--dark h2, .section--dark h3 {
  color: var(--cream);
}

.section--cream-alt {
  background: var(--white);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--maroon);
  margin-bottom: 14px;
}

.section--dark .eyebrow {
  color: var(--lime);
}

.eyebrow svg {
  vertical-align: -3px;
  margin-right: 4px;
}

.section-head {
  max-width: 680px;
  margin: 0 0 48px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.lede {
  font-size: 1.15rem;
  color: var(--charcoal-soft);
}

.section--dark .lede {
  color: #d8d3c8;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--maroon);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--maroon-dark);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-lime {
  background: var(--lime);
  color: var(--charcoal);
}

.btn-lime:hover {
  background: #78ba00;
  color: var(--charcoal);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  border-color: currentColor;
  color: var(--charcoal);
}

.section--dark .btn-outline {
  color: var(--cream);
}

.btn-outline:hover {
  background: var(--charcoal);
  color: var(--cream) !important;
}

.section--dark .btn-outline:hover {
  background: var(--cream);
  color: var(--charcoal) !important;
}

.btn-block {
  width: 100%;
  justify-content: center;
}

.btn[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

/* --------------------------------------------------------------------------
   Header / Nav
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
}

.brand img {
  height: 46px;
  width: auto;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--maroon);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--maroon);
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-toggle:hover,
.nav-toggle[aria-expanded="true"] {
  background: var(--maroon);
  color: var(--white);
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav ul {
  display: flex;
  gap: 30px;
}

.main-nav a {
  color: var(--charcoal);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 6px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--maroon);
  transition: width 0.2s ease;
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  width: 100%;
}

.main-nav a.is-active {
  color: var(--maroon);
}

/* Services dropdown */
.has-dropdown { position: relative; }

.has-dropdown > a svg {
  vertical-align: -2px;
  margin-left: 2px;
  transition: transform 0.15s ease;
}

.has-dropdown:hover > a svg,
.has-dropdown:focus-within > a svg {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  min-width: 190px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
  z-index: 50;
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--charcoal);
  white-space: nowrap;
}

.dropdown-menu a::after { display: none; }

.dropdown-menu a:hover,
.dropdown-menu a.is-active {
  background: var(--cream);
  color: var(--maroon);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-phone {
  font-weight: 600;
  color: var(--charcoal);
  font-size: 0.95rem;
}

.header-phone svg { vertical-align: -3px; margin-right: 6px; }

/* --------------------------------------------------------------------------
   Hero (home)
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/hero-champagne.webp");
  background-size: cover;
  background-position: center 30%;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(20, 18, 17, 0.92) 0%, rgba(24, 20, 19, 0.78) 42%, rgba(40, 20, 22, 0.55) 100%);
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 640px;
  padding: 72px 0;
}

.hero-content .eyebrow {
  color: var(--lime);
}

.hero .btn-outline {
  color: var(--white);
}

.hero .btn-outline:hover {
  background: var(--white);
  color: var(--charcoal) !important;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
}

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

.hero-lede {
  font-size: 1.15rem;
  color: #e9e5da;
  max-width: 540px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-badge-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-badge-row img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
}

.hero-badge-row .badge-text {
  font-size: 0.85rem;
  line-height: 1.35;
  color: #e9e5da;
}

.hero-badge-row .badge-text strong {
  display: block;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.05rem;
}

/* Page header (interior pages) */
.page-header {
  background: var(--charcoal);
  color: var(--white);
  padding: 64px 0 56px;
  text-align: center;
}

.page-header h1 {
  color: var(--white);
  margin-bottom: 10px;
}

.page-header .lede {
  max-width: 620px;
  margin: 0 auto;
}

.breadcrumb {
  font-size: 0.85rem;
  color: #c9c2b3;
  margin-bottom: 14px;
}

.breadcrumb a { color: #c9c2b3; text-decoration: underline; }

.page-header .tag-cloud span {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  color: #e9e5da;
}
.breadcrumb a:hover { color: var(--lime); }

/* --------------------------------------------------------------------------
   Trust strip
   -------------------------------------------------------------------------- */
.trust-strip {
  background: var(--charcoal-2);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.trust-strip .container {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 40px;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #e9e5da;
  font-size: 0.9rem;
  font-weight: 500;
}

.trust-item svg {
  flex: none;
  color: var(--lime);
}

/* --------------------------------------------------------------------------
   Cards: services / values / gallery teaser
   -------------------------------------------------------------------------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.pkg-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

/* center a lone odd-one-out card in its own row instead of leaving it stuck left */
.pkg-grid > :last-child:nth-child(odd) {
  grid-column: 1 / -1;
  max-width: calc(50% - 14px);
  margin: 0 auto;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  height: 100%;
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(184, 16, 40, 0.08);
  color: var(--maroon);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card ul.check-list {
  margin-top: 16px;
}

.check-list li {
  display: flex;
  gap: 10px;
  padding: 6px 0;
  color: var(--charcoal-soft);
  font-size: 0.95rem;
}

.check-list li svg {
  flex: none;
  color: var(--lime-dark);
  margin-top: 3px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-weight: 600;
  font-size: 0.92rem;
}

/* Values grid */
.values-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
}

.value-item {
  text-align: center;
  padding: 26px 14px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--line);
  flex: 1 1 200px;
  max-width: 240px;
}

.value-item svg {
  color: var(--maroon);
  margin-bottom: 12px;
}

.value-item p {
  margin: 0;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--charcoal);
}

.value-item p.desc {
  margin-top: 6px;
  font-weight: 400;
  font-size: 0.82rem;
  color: var(--charcoal-soft);
  line-height: 1.4;
}

.section--dark .value-item {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.1);
}

.section--dark .value-item p { color: var(--cream); }
.section--dark .value-item svg { color: var(--lime); }

/* --------------------------------------------------------------------------
   About / split sections
   -------------------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: 1.15fr 0.85fr;
}

.split.reverse .split-media { order: 2; }

.split-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.split-media {
  position: relative;
}

.split-media .media-badge {
  position: absolute;
  bottom: -22px;
  right: -22px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--cream);
}

.credential-list {
  margin-top: 28px;
  display: grid;
  gap: 18px;
}

.credential-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.credential-item .num {
  flex: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
}

.credential-item h4 {
  margin: 0 0 4px;
  font-size: 1.02rem;
  font-family: var(--font-body);
  font-weight: 600;
}

.credential-item p {
  margin: 0;
  color: var(--charcoal-soft);
  font-size: 0.94rem;
}

/* Community tags */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.tag-cloud span {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.85rem;
  color: var(--charcoal-soft);
}

/* --------------------------------------------------------------------------
   Services page: packages
   -------------------------------------------------------------------------- */
.pkg-note {
  background: var(--white);
  border: 1px dashed var(--maroon);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  font-size: 0.92rem;
  color: var(--charcoal-soft);
  margin-bottom: 48px;
}

.pkg-note strong { color: var(--maroon-dark); }

.pkg-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  padding: 38px 32px;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.pkg-card.featured {
  border-color: var(--maroon);
  box-shadow: var(--shadow-md);
}

.pkg-card.featured .pkg-flag {
  position: absolute;
  top: -14px;
  left: 32px;
  background: var(--maroon);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
}

.pkg-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
}

.pkg-tagline {
  color: var(--maroon);
  font-weight: 600;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}

.pkg-desc {
  color: var(--charcoal-soft);
  font-size: 0.95rem;
}

.pkg-card ul {
  margin: 18px 0 28px;
  display: grid;
  gap: 10px;
  flex: 1;
}

.pkg-card ul li {
  display: flex;
  gap: 10px;
  font-size: 0.93rem;
  color: var(--charcoal);
}

.pkg-card ul li svg { flex: none; color: var(--lime-dark); margin-top: 3px; }

.pkg-bestfor {
  font-size: 0.85rem;
  color: var(--charcoal-soft);
  margin: 0 0 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.pkg-bestfor strong { color: var(--charcoal); }

.pkg-fineprint {
  font-size: 0.82rem;
  font-style: italic;
  color: var(--charcoal-soft);
  margin: 0 0 20px;
}

/* pkg-card keeps a white background even inside a dark section, so its own
   heading color must win over the section--dark h2/h3 override */
.section--dark .pkg-card h3 {
  color: var(--charcoal);
}

.pkg-mood {
  font-family: var(--font-heading);
  font-style: italic;
  text-align: center;
  color: var(--maroon-dark);
  font-size: 1.02rem;
  margin: 0 0 22px;
}

/* HBCU / custom-package callout */
.pkg-callout {
  background: var(--charcoal);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-top: 28px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
}

.pkg-callout-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(136, 208, 0, 0.14);
  color: var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.pkg-callout .eyebrow { color: var(--lime); margin-bottom: 6px; }
.pkg-callout h3 { color: var(--white); margin-bottom: 10px; }
.pkg-callout .lede { color: #d8d3c8; font-size: 0.98rem; margin-bottom: 16px; }

.pkg-callout .tag-cloud span {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
  color: #d8d3c8;
}

.pkg-callout .pkg-fineprint { color: #b7b0a2; margin: 14px 0 0; }

.pkg-callout-cta { text-align: center; }

.pkg-callout-price {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--lime);
  margin-bottom: 14px;
  white-space: nowrap;
}

.addon-group + .addon-group { margin-top: 40px; }

.addon-group-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 18px;
}

/* Services hub: two big path cards (Weddings vs. Events) */
.path-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.path-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.path-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.path-card-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.path-card-body .eyebrow { margin-bottom: 6px; }
.path-card-body h3 { font-size: 1.6rem; margin-bottom: 10px; }
.path-card-body .pkg-desc { flex: 1; }

.path-card-price {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--maroon);
  font-size: 1.15rem;
  margin: 14px 0 20px;
}

/* Cross-links between the Weddings and Events pages */
.cross-link-banner {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--lime-dark);
  border-radius: var(--radius-sm);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.cross-link-banner p { margin: 0; font-size: 0.95rem; color: var(--charcoal-soft); }
.cross-link-banner p strong { color: var(--charcoal); }
.cross-link-banner .card-link { margin: 0; flex: none; white-space: nowrap; }

.addon-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

/* center a lone odd-one-out card in its own row instead of leaving it stuck left */
.addon-grid > :last-child:nth-child(odd) {
  grid-column: 1 / -1;
  max-width: calc(50% - 9px);
  margin: 0 auto;
}

.addon-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px 22px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.addon-item svg { flex: none; color: var(--maroon); margin-top: 2px; }
.addon-item h4 { margin: 0 0 4px; font-size: 0.98rem; }
.addon-item p { margin: 0; font-size: 0.88rem; color: var(--charcoal-soft); }

/* FAQ */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: grid;
  gap: 4px;
}

.faq-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.faq-item:first-child { padding-top: 0; }
.faq-item:last-child { border-bottom: none; }

.faq-item h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--maroon-dark);
}

.faq-item p {
  margin: 0;
  color: var(--charcoal-soft);
  font-size: 0.96rem;
}

.faq-item p a { font-weight: 600; }

/* Legal / policy callout */
.callout {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--maroon);
  border-radius: var(--radius-sm);
  padding: 22px 24px;
  margin-bottom: 48px;
}

.callout svg { flex: none; color: var(--maroon); margin-top: 2px; }
.callout p { margin: 0 0 8px; font-size: 0.92rem; color: var(--charcoal-soft); }
.callout p:last-child { margin-bottom: 0; }
.callout strong { color: var(--charcoal); }

/* Menu showcase image block */
.menu-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.menu-showcase img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

/* --------------------------------------------------------------------------
   Gallery
   -------------------------------------------------------------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  background: var(--charcoal);
  box-shadow: var(--shadow-sm);
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
  transition: transform 0.35s ease;
}

.gallery-item.wide img,
.gallery-item.square img {
  aspect-ratio: 1 / 1;
}

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

.gallery-item .cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px 18px 14px;
  background: linear-gradient(0deg, rgba(0,0,0,0.78), rgba(0,0,0,0));
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.gallery-item:hover .cap {
  opacity: 1;
  transform: translateY(0);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 13, 12, 0.94);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox.is-open {
  display: flex;
}

.lightbox-inner {
  max-width: 900px;
  width: 100%;
  text-align: center;
}

.lightbox-inner img {
  max-height: 76vh;
  width: auto;
  margin: 0 auto;
  border-radius: var(--radius-sm);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lightbox-cap {
  color: var(--cream);
  margin-top: 18px;
  font-size: 0.95rem;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: fixed;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  border-radius: 50%;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--maroon);
  border-color: var(--maroon);
}

.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }

/* Instagram callout tile */
.gallery-cta-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  background: linear-gradient(150deg, var(--maroon), var(--maroon-dark));
  color: var(--white);
  padding: 30px 20px;
  aspect-ratio: 4/5;
  border-radius: var(--radius-md);
}

.gallery-cta-tile svg { color: var(--lime); }
.gallery-cta-tile a { color: var(--white); font-weight: 600; text-decoration: underline; }

/* --------------------------------------------------------------------------
   CTA band
   -------------------------------------------------------------------------- */
.cta-band {
  background: linear-gradient(120deg, var(--maroon) 0%, var(--maroon-dark) 100%);
  color: var(--white);
  text-align: center;
  padding: 72px 0;
}

.cta-band h2 { color: var(--white); }
.cta-band .lede { color: #ffe3e6; }

.cta-band .btn-outline {
  color: var(--white);
}

.cta-band .btn-outline:hover {
  background: var(--white);
  color: var(--maroon-dark) !important;
}

/* --------------------------------------------------------------------------
   Contact page
   -------------------------------------------------------------------------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: start;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  margin-bottom: 20px;
}

.field label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 7px;
  color: var(--charcoal);
}

.field .req { color: var(--maroon); }

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #d8d1c0;
  border-radius: var(--radius-sm);
  background: var(--cream);
  color: var(--charcoal);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--maroon);
  background: var(--white);
}

.field textarea {
  resize: vertical;
  min-height: 130px;
}

.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  pointer-events: none;
}

.form-note {
  font-size: 0.82rem;
  color: var(--charcoal-soft);
  margin-top: 6px;
}

.alert {
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  margin-bottom: 26px;
  font-size: 0.94rem;
  font-weight: 500;
}

.alert-success {
  background: rgba(136, 208, 0, 0.16);
  border: 1px solid var(--lime-dark);
  color: var(--lime-dark);
}

.alert-error {
  background: rgba(184, 16, 40, 0.08);
  border: 1px solid var(--maroon);
  color: var(--maroon-dark);
}

.info-card {
  background: var(--charcoal);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 38px 34px;
  margin-bottom: 24px;
}

.info-card h3 { color: var(--white); }

.info-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.info-row:first-of-type { border-top: none; padding-top: 0; }

.info-row svg { flex: none; color: var(--lime); margin-top: 3px; }

.info-row a { color: var(--cream); }
.info-row a:hover { color: var(--lime); }

.info-row .label {
  display: block;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #b7b0a2;
  margin-bottom: 2px;
}

.social-row {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}

.social-row a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  border: 1px solid rgba(255,255,255,0.14);
}

.social-row a:hover {
  background: var(--lime);
  color: var(--charcoal);
  border-color: var(--lime);
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--charcoal-2);
  color: #cfc9bc;
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.9fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand img {
  height: 42px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.92rem;
  color: #b7b0a2;
  max-width: 280px;
}

.footer-award {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.footer-award img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.footer-award span {
  font-size: 0.78rem;
  line-height: 1.3;
  color: #b7b0a2;
}

.footer-col h4 {
  font-family: var(--font-body);
  color: var(--white);
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

.footer-col ul { display: grid; gap: 11px; }

.footer-col a {
  color: #cfc9bc;
  font-size: 0.92rem;
}

.footer-col a:hover { color: var(--lime); }

.footer-bottom {
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.82rem;
  color: #8b8478;
}

.footer-bottom a { color: #8b8478; text-decoration: underline; }
.footer-bottom a:hover { color: var(--lime); }

/* --------------------------------------------------------------------------
   404
   -------------------------------------------------------------------------- */
.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
}

.error-page .code {
  font-family: var(--font-heading);
  font-size: 6rem;
  color: var(--maroon);
  line-height: 1;
  margin-bottom: 10px;
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 980px) {
  .split, .split.reverse {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .split.reverse .split-media { order: 0; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
  .contact-layout { grid-template-columns: 1fr; }
  .menu-showcase { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  :root { --header-h: 72px; }

  .nav-toggle { display: flex; }

  .nav-wrap {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 28px 24px;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    overflow-y: auto;
  }

  .nav-wrap.is-open { transform: translateX(0); }

  .main-nav ul {
    flex-direction: column;
    gap: 4px;
  }

  .main-nav a {
    display: block;
    padding: 14px 4px;
    border-bottom: 1px solid var(--line);
  }

  .has-dropdown > a svg { display: none; }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: transparent;
    padding: 0;
    margin: 0 0 4px;
  }

  .dropdown-menu a {
    padding: 12px 4px 12px 20px;
    border-bottom: 1px solid var(--line);
    font-size: 0.9rem;
    color: var(--charcoal-soft);
  }

  .header-cta {
    flex-direction: column;
    align-items: stretch;
    margin-top: 20px;
    gap: 12px;
  }

  .section { padding: 60px 0; }
  .section--tight { padding: 40px 0; }

  .grid-3, .grid-2, .values-grid, .pkg-grid, .addon-grid, .gallery-grid, .path-grid {
    grid-template-columns: 1fr;
  }

  .cross-link-banner { flex-direction: column; align-items: flex-start; text-align: left; }

  .pkg-grid > :last-child:nth-child(odd),
  .addon-grid > :last-child:nth-child(odd) {
    max-width: none;
    margin: 0;
  }

  .gallery-item.tall { grid-row: auto; }

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

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

  .hero { min-height: 560px; }
  .hero-content { padding: 56px 0; }

  /* Smaller hero photo for phones/tablets instead of the full desktop file */
  .hero::before {
    background-image: url("../img/hero-champagne-mobile.webp");
  }

  .lightbox { padding: 20px; }
  .lightbox-prev, .lightbox-next { width: 40px; height: 40px; }
  .lightbox-close { top: 14px; right: 14px; }

  .pkg-callout {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
}
