/* =========================================================================
   Lace & Beads — single-page site
   Elegant pearl/cream + plum-purple + champagne palette
   ========================================================================= */

:root {
  --plum: #6B2C8A;
  --plum-deep: #4F1F69;
  --plum-soft: #8B4FA9;
  --plum-tint: #F1E6F7;
  --lavender: #C9A6D8;
  --lavender-soft: #E5D2EE;
  --champagne: #C8A165;
  --champagne-soft: #DEC18A;
  --champagne-tint: #F5EBD7;
  --cream: #FAF6EE;
  --cream-deep: #F0E9DA;
  --pearl: #FCF8F2;
  --ink: #2A1F33;
  --ink-muted: #6E5B7A;
  --line: #E9DFEC;
  --white: #ffffff;

  --font-script: "Allura", cursive;
  --font-head: "Playfair Display", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;

  --r-sm: 4px;
  --r-md: 10px;
  --r-lg: 16px;

  --shadow-sm: 0 1px 2px rgba(79, 31, 105, 0.06);
  --shadow-md: 0 8px 22px rgba(79, 31, 105, 0.10);
  --shadow-lg: 0 18px 50px rgba(79, 31, 105, 0.18);

  --max: 1180px;
  --gutter: 24px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--pearl);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--plum); text-decoration: none; transition: color 0.15s ease; }
a:hover { color: var(--plum-deep); }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: -0.005em;
  margin: 0 0 0.4em;
  color: var(--ink);
  line-height: 1.18;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); font-weight: 600; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.6rem); font-weight: 600; }
h3 { font-size: 1.3rem; font-weight: 600; }

.script {
  font-family: var(--font-script);
  font-weight: 400;
  color: var(--plum);
  font-size: 1.1em;
  letter-spacing: 0.01em;
  line-height: 0.9;
}
.script-inline {
  font-family: var(--font-script);
  font-weight: 400;
  color: var(--plum);
  font-size: 1.15em;
}
.script-light {
  font-family: var(--font-script);
  font-weight: 400;
  color: var(--champagne-soft);
  font-size: 1.15em;
}

p { margin: 0 0 1em; }
.muted { color: var(--ink-muted); }

/* ---------- Layout ---------- */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
section {
  padding: clamp(64px, 9vw, 110px) 0;
  position: relative;
}
.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--champagne);
  margin-bottom: 14px;
}
.section-head h2 { margin-bottom: 14px; }
.section-head p { color: var(--ink-muted); font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.97rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease,
              background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--plum);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(107, 44, 138, 0.30);
}
.btn-primary:hover {
  background: var(--plum-deep);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(79, 31, 105, 0.40);
}
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--plum);
}
.btn-secondary:hover {
  background: var(--plum);
  color: var(--white);
  border-color: var(--plum);
  transform: translateY(-2px);
}
.btn-ghost {
  background: var(--white);
  color: var(--plum);
  border-color: var(--line);
}
.btn-ghost:hover {
  border-color: var(--plum);
  color: var(--plum-deep);
  transform: translateY(-2px);
}

/* ---------- Navbar ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(252, 248, 242, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.nav.scrolled {
  background: rgba(252, 248, 242, 0.96);
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
  gap: 24px;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
}
.nav-logo img {
  display: block;
  height: 60px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
  transition: color 0.15s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1.5px;
  background: var(--champagne);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--plum);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--plum);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  transition: background 0.15s ease, transform 0.15s ease;
}
.nav-cta:hover {
  background: var(--plum-deep);
  color: var(--white);
  transform: translateY(-1px);
}
.nav-cta-mobile { display: none; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  cursor: pointer;
  padding: 0;
  position: relative;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px auto;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(ellipse at 85% 20%, rgba(200, 161, 101, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 85%, rgba(201, 166, 216, 0.30) 0%, transparent 55%),
    linear-gradient(160deg, var(--pearl) 0%, var(--cream) 60%, var(--cream-deep) 100%);
  color: var(--ink);
  padding: clamp(72px, 11vw, 130px) 0 clamp(72px, 11vw, 130px);
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid var(--line);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.6) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.4) 0%, transparent 50%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 48px;
  align-items: center;
}
.hero-content {
  display: grid;
  gap: 30px;
  max-width: 600px;
}
.hero-image {
  margin: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hero-image picture {
  display: block;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--white);
  background: var(--cream-deep);
  transform: rotate(-1.2deg);
  transition: transform 0.35s ease;
}
.hero-image:hover picture { transform: rotate(0deg); }
.hero-image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1024 / 600;
  object-fit: cover;
}
.hero-image-caption {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--ink-muted);
  text-align: center;
  letter-spacing: 0.04em;
  margin: 0;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 8px 18px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  width: fit-content;
  box-shadow: var(--shadow-sm);
}
.hero-tag .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--champagne);
  box-shadow: 0 0 0 4px rgba(200, 161, 101, 0.22);
}
.hero h1 {
  font-weight: 600;
  letter-spacing: -0.015em;
}
.hero h1 .accent {
  font-style: italic;
  font-weight: 500;
  color: var(--plum);
}
.hero h1 .script {
  font-size: 1.4em;
  margin-right: 4px;
  display: inline-block;
  transform: translateY(0.08em);
}
.hero-lede {
  font-size: clamp(1.05rem, 1.5vw, 1.18rem);
  color: var(--ink-muted);
  max-width: 660px;
  margin: 0;
  line-height: 1.7;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}
.hero-stats .stat {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 12px 18px;
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--ink-muted);
  box-shadow: var(--shadow-sm);
}
.hero-stats .stat strong {
  color: var(--plum);
  font-weight: 700;
  margin-right: 6px;
  font-family: var(--font-head);
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 4px;
}

/* ---------- Mobile Bartending (headline service) ---------- */
.bartending {
  background: var(--white);
}
.bartending-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: start;
}
.bartending-text h2 { margin-bottom: 22px; }
.bartending-text h2 .script {
  font-size: 1.35em;
  margin-right: 4px;
}
.bartending-lede {
  font-size: 1.18rem;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.65;
  margin-bottom: 18px;
}
.bartending-text > p {
  color: var(--ink-muted);
  font-size: 1.03rem;
}
.bartending-text > p.bartending-lede { color: var(--ink); }
.bartending-includes {
  list-style: none;
  padding: 0;
  margin: 24px 0 28px;
  display: grid;
  gap: 14px;
}
.bartending-includes li {
  position: relative;
  padding-left: 30px;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.55;
}
.bartending-includes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--plum-tint);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B2C8A' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px 11px;
}
.bartending-includes li strong {
  color: var(--ink);
  font-weight: 600;
}
.bartending-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.bartending-aside {
  position: sticky;
  top: 100px;
}
.bartending-card {
  background: linear-gradient(160deg, var(--plum) 0%, var(--plum-deep) 100%);
  color: var(--white);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.bartending-card::after {
  content: "";
  position: absolute;
  right: -50px;
  bottom: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 161, 101, 0.30) 0%, transparent 70%);
}
.bartending-card-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--champagne-soft);
  margin-bottom: 18px;
}
.event-types {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: grid;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.event-types li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  color: var(--white);
  font-size: 0.98rem;
  line-height: 1.45;
}
.event-types li span {
  color: var(--champagne-soft);
  font-size: 0.9rem;
  flex: 0 0 14px;
}
.bartending-card-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.93rem;
  line-height: 1.55;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  position: relative;
  z-index: 1;
}

/* ---------- Party Rentals ---------- */
.rentals {
  background: var(--cream);
}
.rental-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  align-items: stretch;
}
.rental-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 28px 28px;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.rental-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--champagne);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.rental-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--lavender-soft);
}
.rental-card:hover::before { transform: scaleX(1); }
.rental-card-feature {
  background: linear-gradient(160deg, var(--plum-tint) 0%, var(--white) 80%);
  border-color: var(--lavender-soft);
}
.rental-card-feature::before {
  background: var(--plum);
  transform: scaleX(1);
}
.rental-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--r-md);
  background: var(--plum-tint);
  color: var(--plum);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: background 0.25s ease, color 0.25s ease;
}
.rental-card:hover .rental-icon {
  background: var(--plum);
  color: var(--white);
}
.rental-icon svg { width: 24px; height: 24px; }
.rental-card h3 {
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 1.2rem;
}
.rental-card > p {
  color: var(--ink-muted);
  font-size: 0.96rem;
  margin: 0 0 0;
  line-height: 1.6;
}
.rental-card-feature > p { margin-bottom: 16px; }
.rental-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
  font-size: 0.93rem;
  color: var(--ink);
}
.rental-list li {
  position: relative;
  padding-left: 22px;
  line-height: 1.5;
}
.rental-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--champagne);
  box-shadow: 0 0 0 3px rgba(200, 161, 101, 0.18);
}
.rentals-note {
  text-align: center;
  margin: 44px auto 0;
  max-width: 620px;
  color: var(--ink-muted);
  font-size: 1.0rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 22px 30px;
}
.rentals-note strong {
  color: var(--plum);
  font-family: var(--font-head);
  font-size: 1.1em;
}

/* ---------- Feature tag (used by Champagne Cart rental card) ---------- */
.feature-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--plum);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}

/* ---------- About / Why Us ---------- */
.about {
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: start;
}
.about-text h2 { margin-bottom: 18px; }
.about-text p { color: var(--ink-muted); font-size: 1.03rem; }
.about-bullets {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 14px;
}
.about-bullets li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: var(--ink);
  font-weight: 500;
}
.about-bullets li::before {
  content: "";
  flex: 0 0 22px;
  width: 22px; height: 22px;
  background: var(--white);
  border: 1px solid var(--lavender-soft);
  border-radius: 50%;
  position: relative;
  margin-top: 2px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B2C8A' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 13px 13px;
}
.about-card {
  background: linear-gradient(160deg, var(--plum) 0%, var(--plum-deep) 100%);
  color: var(--white);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.about-card::after {
  content: "";
  position: absolute;
  right: -50px;
  top: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 161, 101, 0.30) 0%, transparent 70%);
}
.about-card h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 24px;
  font-family: var(--font-head);
  font-weight: 600;
}
.about-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  position: relative;
  z-index: 1;
}
.about-row:first-of-type { border-top: 0; padding-top: 0; }
.about-row .label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  flex: 0 0 100px;
  padding-top: 3px;
}
.about-row .value { color: var(--white); font-weight: 500; line-height: 1.5; }
.about-row .value a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255, 255, 255, 0.4);
}
.about-row .value a:hover { color: var(--white); text-decoration-color: var(--white); }
.value-sub {
  display: block;
  margin-top: 4px;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ---------- Reviews ---------- */
.reviews {
  background: linear-gradient(180deg, var(--cream) 0%, var(--pearl) 100%);
}
.rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 8px 18px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--plum);
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
  letter-spacing: 0.02em;
}
.rating-pill span { color: var(--ink-muted); font-weight: 500; }
.section-head .rating-pill { display: inline-flex; }

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 22px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 28px 24px;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--lavender-soft);
}
.review-card .stars {
  color: var(--champagne);
  font-size: 1.05rem;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.review-quote {
  color: var(--ink);
  font-size: 0.97rem;
  line-height: 1.65;
  margin: 0 0 18px;
  flex: 1;
}
.review-meta {
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
  color: var(--ink-muted);
}
.review-meta strong {
  color: var(--ink);
  font-weight: 600;
  margin-right: 4px;
}
.reviews-cta {
  text-align: center;
  margin-top: 40px;
}

/* ---------- Service area strip ---------- */
.area {
  background: linear-gradient(135deg, var(--plum) 0%, var(--plum-deep) 100%);
  color: var(--white);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.area::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 90% 30%, rgba(200, 161, 101, 0.20) 0%, transparent 55%),
    radial-gradient(circle at 10% 80%, rgba(201, 166, 216, 0.15) 0%, transparent 55%);
  pointer-events: none;
}
.area-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.area-eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--champagne-soft);
  display: block;
  margin-bottom: 6px;
}
.area h3 {
  color: var(--white);
  font-size: 1.6rem;
  margin: 0;
  font-family: var(--font-head);
  font-weight: 600;
}
.area p {
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  font-size: 0.97rem;
  max-width: 460px;
}
.area .btn-primary {
  background: var(--white);
  color: var(--plum);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.20);
}
.area .btn-primary:hover {
  background: var(--cream);
  color: var(--plum-deep);
}

/* ---------- Happenings / FB embed ---------- */
.happenings {
  background: var(--white);
}
.fb-embed-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 18px;
}
.fb-page {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 8px;
  min-height: 400px;
  width: 100%;
  max-width: 540px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.fb-fallback {
  text-align: center;
  color: var(--ink-muted);
  font-size: 0.95rem;
  max-width: 540px;
  margin: 0;
}
.fb-fallback p { margin: 0; }

/* ---------- Contact + Form ---------- */
.contact {
  background: var(--cream);
  padding-bottom: 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 36px;
  align-items: start;
}

/* ---- Info aside ---- */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 100px;
}
.contact-info-card {
  background: linear-gradient(160deg, var(--plum) 0%, var(--plum-deep) 100%);
  color: var(--white);
  border-radius: var(--r-lg);
  padding: 32px 30px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.contact-info-card::after {
  content: "";
  position: absolute;
  right: -50px;
  top: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 161, 101, 0.30) 0%, transparent 70%);
}
.contact-info-h {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 22px;
  font-family: var(--font-head);
  font-weight: 600;
  position: relative;
  z-index: 1;
}
.contact-info-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  position: relative;
  z-index: 1;
}
.contact-info-row:first-of-type { border-top: 0; padding-top: 0; }
.contact-info-icon {
  flex: 0 0 36px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.10);
  color: var(--champagne-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.contact-info-icon svg { width: 18px; height: 18px; }
.contact-info-label {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 2px;
}
.contact-info-value {
  display: block;
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.02rem;
  line-height: 1.4;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255, 255, 255, 0.35);
}
.contact-info-value:hover {
  color: var(--white);
  text-decoration-color: var(--white);
}
.contact-info-value--text {
  text-decoration: none;
  font-weight: 500;
}
.contact-call-btn {
  width: 100%;
  padding: 16px 24px;
}

/* ---- Form ---- */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px 36px 32px;
  box-shadow: var(--shadow-sm);
}
.contact-form-h {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--ink);
}
.contact-form-sub {
  color: var(--ink-muted);
  margin-bottom: 28px;
  font-size: 0.97rem;
}
.contact-form {
  display: grid;
  gap: 18px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-field label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.form-field .req { color: var(--plum); }
.form-field .optional {
  color: var(--ink-muted);
  font-weight: 400;
  font-size: 0.8rem;
}
.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field input[type="date"],
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: 0.96rem;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--plum);
  box-shadow: 0 0 0 3px rgba(107, 44, 138, 0.15);
}
.form-field textarea {
  resize: vertical;
  min-height: 110px;
  font-family: var(--font-body);
}
.form-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236E5B7A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px 14px;
  padding-right: 38px;
}
.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 14px;
  margin-top: 4px;
}
.checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--cream);
  font-size: 0.92rem;
  color: var(--ink);
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
  font-weight: 500;
}
.checkbox:hover {
  border-color: var(--lavender);
  background: var(--white);
}
.checkbox input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border: 1.5px solid var(--lavender);
  border-radius: 4px;
  background: var(--white);
  cursor: pointer;
  position: relative;
  flex: 0 0 16px;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.checkbox input[type="checkbox"]:checked {
  background: var(--plum);
  border-color: var(--plum);
}
.checkbox input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  top: 1px; left: 4px;
  width: 5px; height: 9px;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.contact-submit-btn {
  margin-top: 8px;
  align-self: flex-start;
  padding: 14px 28px;
}
.form-status {
  margin: 8px 0 0;
  padding: 12px 14px;
  border-radius: var(--r-md);
  font-size: 0.92rem;
}
.form-status.success {
  background: rgba(46, 204, 113, 0.12);
  color: #1c7a45;
  border: 1px solid rgba(46, 204, 113, 0.3);
}
.form-status.error {
  background: rgba(216, 72, 48, 0.10);
  color: #a83523;
  border: 1px solid rgba(216, 72, 48, 0.25);
}

/* ---------- Gallery page ---------- */
.page-header {
  padding: 56px 0 24px;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(200, 161, 101, 0.10) 0%, transparent 55%),
    var(--cream);
  text-align: center;
}
.page-header .eyebrow { display: inline-block; }
.page-header h1 {
  font-family: var(--font-head);
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 700;
  margin: 12px 0 14px;
  color: var(--plum-deep);
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.page-header h1 .script {
  font-family: var(--font-script);
  font-weight: 400;
  font-size: 1.1em;
  color: var(--gold);
}
.page-header h1 .accent { color: var(--plum); }
.page-lede {
  max-width: 640px;
  margin: 0 auto;
  font-size: 18px;
  color: var(--plum-soft);
  line-height: 1.6;
}

.gallery {
  padding: 48px 0 80px;
  background: var(--cream);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-flow: dense;
  gap: 16px;
}
.gallery-item {
  appearance: none;
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  cursor: zoom-in;
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 3 / 4;
  background: var(--plum-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.gallery-item-wide { aspect-ratio: 4 / 3; grid-column: span 2; }
.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.25s ease;
}
.gallery-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.gallery-cta {
  margin-top: 56px;
  text-align: center;
  padding: 36px 24px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(107, 44, 138, 0.08);
}
.gallery-cta p {
  font-family: var(--font-head);
  font-size: 22px;
  color: var(--plum-deep);
  margin: 0 0 18px;
  font-weight: 600;
}
.gallery-cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Rental items page ---------- */
.rental-detail {
  padding: 48px 0 80px;
  background: var(--cream);
}
.rental-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}
.rental-card-detail {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.rental-card-detail:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--lavender-soft);
}
.rental-card-detail-feature {
  border-color: var(--lavender-soft);
  background: linear-gradient(180deg, var(--white) 0%, var(--plum-tint) 200%);
}
.rental-card-detail-feature::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: var(--plum);
  z-index: 2;
}
.rental-card-detail-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--cream-deep);
  overflow: hidden;
  position: relative;
}
.rental-card-detail-image picture,
.rental-card-detail-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.rental-card-detail:hover .rental-card-detail-image img {
  transform: scale(1.03);
}
.rental-card-detail-body {
  padding: 26px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.rental-card-detail-body h2 {
  font-size: 1.4rem;
  margin: 0;
  color: var(--ink);
  font-weight: 600;
}
.rental-card-detail-body > p {
  color: var(--ink-muted);
  font-size: 0.97rem;
  line-height: 1.6;
  margin: 0;
}
.rental-card-detail-body .rental-list {
  margin-top: 4px;
}
.rental-card-detail .feature-tag {
  z-index: 3;
}
.rental-cta {
  margin-top: 56px;
  text-align: center;
  padding: 36px 24px;
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.rental-cta p {
  font-family: var(--font-head);
  font-size: 1.25rem;
  color: var(--plum-deep);
  margin: 0 0 18px;
  font-weight: 600;
}
.rental-cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 8, 22, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.lightbox.open {
  display: flex;
  opacity: 1;
}
.lightbox-figure {
  margin: 0;
  max-width: min(92vw, 1100px);
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.lightbox-figure img {
  max-width: 100%;
  max-height: 84vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  background: rgba(255, 255, 255, 0.04);
}
.lightbox-caption {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  appearance: none;
  background: rgba(255, 255, 255, 0.10);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s ease, transform 0.18s ease;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.20);
}
.lightbox-close {
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  font-size: 28px;
  line-height: 1;
}
.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  font-size: 36px;
  line-height: 1;
  font-family: var(--font-head);
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-close:focus-visible,
.lightbox-prev:focus-visible,
.lightbox-next:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--plum-deep);
  color: rgba(255, 255, 255, 0.78);
  padding: 60px 0 28px;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 120px;
  background: radial-gradient(ellipse at center, rgba(200, 161, 101, 0.18) 0%, transparent 70%);
  pointer-events: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}
.footer-logo {
  display: inline-block;
  margin-bottom: 18px;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 8px;
  width: fit-content;
}
.footer-logo img {
  height: 70px;
  width: auto;
  display: block;
}
.footer-about p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin: 0;
  max-width: 320px;
}
.footer h4 {
  color: var(--white);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 18px;
  font-family: var(--font-body);
  font-weight: 600;
}
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.footer-list a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  transition: color 0.15s ease;
}
.footer-list a:hover { color: var(--champagne-soft); }
.footer-list li {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}
.socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: background 0.15s ease, transform 0.15s ease, color 0.15s ease;
}
.socials a:hover {
  background: var(--champagne);
  color: var(--plum-deep);
  transform: translateY(-2px);
}
.socials svg { width: 18px; height: 18px; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  position: relative;
  z-index: 1;
}

/* ---------- Fade-up animation ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: minmax(0, 1fr); gap: 36px; }
  .hero-content { max-width: none; min-width: 0; }
  .hero-image { order: -1; max-width: 540px; margin: 0 auto; width: 100%; min-width: 0; }
  .hero-image picture { transform: rotate(0deg); }
  .bartending-grid { grid-template-columns: 1fr; gap: 40px; }
  .bartending-aside { position: static; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .contact-info { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .area-inner { grid-template-columns: 1fr; text-align: left; gap: 20px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item-wide { grid-column: span 2; }
  .rental-detail-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--pearl);
    flex-direction: column;
    gap: 0;
    padding: 8px 0 16px;
    border-bottom: 1px solid var(--line);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .nav-links.open {
    max-height: 520px;
  }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 14px var(--gutter);
    font-size: 1rem;
  }
  .nav-links a::after { display: none; }
  .nav-cta-mobile {
    display: inline-flex !important;
    margin: 8px var(--gutter) 0;
    background: var(--plum);
    color: var(--white);
    padding: 12px 18px;
    border-radius: 999px;
    font-family: var(--font-body);
    font-weight: 600;
    width: calc(100% - 2 * var(--gutter));
    justify-content: center;
  }
  .hero { padding: 60px 0 70px; }
  .hero-cta .btn { flex: 1 1 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  section { padding: 64px 0; }
  .section-head { margin-bottom: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .checkbox-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 24px; }
  .bartending-cta .btn { flex: 1 1 100%; }
  .gallery-grid { gap: 12px; }
  .lightbox-prev, .lightbox-next { width: 44px; height: 44px; font-size: 28px; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}
@media (max-width: 480px) {
  :root { --gutter: 18px; }
  .nav-logo img { height: 48px; }
  .hero-stats .stat { font-size: 0.82rem; padding: 10px 14px; flex: 1 1 calc(50% - 6px); }
  .rental-card { padding: 26px 22px 24px; }
  .footer-logo img { height: 60px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
