/* =========================================================
   Crowned Creations Event Co. — brand system
   Palette: deep plum, lavender, gold, cream
   Type: Cormorant Garamond (display) + Inter (body)
   ========================================================= */

:root {
  /* palette */
  --plum-deep: #2a0f24;
  --plum: #4a1d3f;
  --plum-soft: #6a2f5c;
  --lavender: #9B59DC;
  --lavender-soft: #b787e6;
  --magenta: #C36F9F;
  --gray-pink: #714455;
  --pastel-red: #E19C9C;
  --gold: #D4A05A;
  --gold-soft: #e8c891;
  --cream: #fdf8fb;
  --cream-warm: #f7edf3;
  --ink: #1a0a15;
  --ink-soft: #5a4854;
  --line: #ead8e2;

  /* type scale */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.375rem;
  --text-2xl: 1.75rem;
  --text-3xl: 2.5rem;
  --text-4xl: 3.5rem;
  --text-5xl: 4.5rem;

  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* spacing / radius */
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 12px rgba(42, 15, 36, 0.06);
  --shadow-md: 0 12px 40px rgba(42, 15, 36, 0.12);
  --shadow-lg: 0 24px 60px rgba(42, 15, 36, 0.2);

  --max-w: 1200px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  font-size: var(--text-base);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ============ HEADER / NAV ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 248, 251, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--plum);
  text-decoration: none;
}
.brand-logo {
  height: 56px;
  width: auto;
  display: block;
}
@media (max-width: 640px){
  .brand-logo { height: 44px; }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 0.9rem;
  font-weight: 500;
}
.nav-links a {
  color: var(--ink);
  position: relative;
  padding: 6px 0;
  transition: color .2s;
}
.nav-links a:hover { color: var(--plum); }
.nav-links a.active {
  color: var(--plum);
}
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--lavender));
}
.nav-cta {
  padding: 10px 22px !important;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--plum), var(--lavender));
  color: #fff !important;
  font-weight: 500;
}
.nav-cta:hover { color: #fff !important; opacity: 0.92; }
.nav-cta::after { display: none !important; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px;
  cursor: pointer;
  color: var(--plum);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 1rem var(--gutter) 1.5rem;
  gap: 1rem;
  border-top: 1px solid var(--line);
  background: var(--cream);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 12px 0;
  font-size: 1.05rem;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.mobile-menu a:last-child { border-bottom: none; }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, opacity .2s ease;
  text-align: center;
  line-height: 1;
}
.btn-primary {
  background: linear-gradient(135deg, var(--plum) 0%, var(--lavender) 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(155, 89, 220, 0.3);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 12px 32px rgba(155, 89, 220, 0.4); }
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.6);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.btn-outline {
  background: transparent;
  color: var(--plum);
  border: 1.5px solid var(--plum);
}
.btn-outline:hover { background: var(--plum); color: #fff; }
.btn-lg { padding: 16px 36px; font-size: 1rem; }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(42, 15, 36, 0.85) 0%,
    rgba(74, 29, 63, 0.7) 40%,
    rgba(155, 89, 220, 0.3) 100%
  );
}
.hero-inner {
  padding: 6rem var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}
.eyebrow {
  color: var(--gold);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 500;
  line-height: 1.05;
  margin: 0 0 1.5rem;
  max-width: 900px;
  letter-spacing: -0.01em;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-soft);
  font-weight: 400;
}
.hero p.lede {
  font-size: 1.15rem;
  max-width: 620px;
  margin: 0 0 2.5rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.65;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ============ PAGE HEADER (non-home pages) ============ */
.page-hero {
  position: relative;
  padding: 6rem var(--gutter) 4rem;
  background: linear-gradient(135deg, var(--plum-deep), var(--plum) 60%, var(--plum-soft));
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.page-hero::before,
.page-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
}
.page-hero::before {
  width: 400px; height: 400px;
  background: var(--lavender);
  opacity: 0.25;
  top: -120px; right: -80px;
}
.page-hero::after {
  width: 300px; height: 300px;
  background: var(--gold);
  opacity: 0.15;
  bottom: -100px; left: -60px;
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 500;
  margin: 0.5rem 0 1.25rem;
  line-height: 1.1;
}
.page-hero h1 em { font-style: italic; color: var(--gold-soft); font-weight: 400; }
.page-hero p {
  font-size: 1.1rem;
  max-width: 620px;
  margin: 0 auto;
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
}

/* ============ SECTIONS ============ */
section { padding: 5rem 0; }
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}
.section-head .eyebrow { color: var(--gold); }
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 1rem;
  color: var(--plum-deep);
}
.section-head h2 em { font-style: italic; color: var(--lavender); font-weight: 400; }
.section-head p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ============ SERVICES GRID ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.service-card {
  background: #fff;
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--lavender-soft);
}
.service-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--lavender), var(--magenta));
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  margin-bottom: 1.25rem;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--plum-deep);
}
.service-card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}
.service-card .service-price {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--plum);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ============ TWO-COLUMN FEATURE ============ */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }

.feature-copy .eyebrow { color: var(--gold); }
.feature-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 500;
  line-height: 1.15;
  margin: 0.5rem 0 1.25rem;
  color: var(--plum-deep);
}
.feature-copy h2 em { font-style: italic; color: var(--lavender); font-weight: 400; }
.feature-copy p {
  color: var(--ink-soft);
  font-size: 1.02rem;
  margin: 0 0 1rem;
  line-height: 1.75;
}
.feature-copy ul {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 2rem;
}
.feature-copy ul li {
  padding: 0.5rem 0 0.5rem 1.75rem;
  position: relative;
  color: var(--ink-soft);
}
.feature-copy ul li::before {
  content: "◆";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.7rem;
  top: 0.9rem;
}
.feature-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}
.feature-img.wide { aspect-ratio: 4/3; }
.feature-img img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 860px) {
  .feature-row { grid-template-columns: 1fr; gap: 2.5rem; }
  .feature-row.reverse { direction: ltr; }
  .feature-img { aspect-ratio: 4/3; }
}

/* ============ VENDOR SECTION (dark) ============ */
.vendor-band {
  background: linear-gradient(135deg, var(--plum-deep), var(--plum) 60%, var(--plum-soft));
  color: #fff;
  position: relative;
  overflow: hidden;
}
.vendor-band::before,
.vendor-band::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}
.vendor-band::before {
  width: 500px; height: 500px;
  background: var(--lavender);
  opacity: 0.2;
  top: -150px; right: -100px;
}
.vendor-band::after {
  width: 350px; height: 350px;
  background: var(--gold);
  opacity: 0.12;
  bottom: -100px; left: -100px;
}
.vendor-band .container { position: relative; z-index: 1; }
.vendor-band .feature-copy h2,
.vendor-band .feature-copy p { color: #fff; }
.vendor-band .feature-copy h2 em { color: var(--gold-soft); }
.vendor-band .feature-copy p { color: rgba(255,255,255,0.85); }
.vendor-band .feature-copy ul li { color: rgba(255,255,255,0.85); }

/* ============ PORTFOLIO GALLERY ============ */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
}
.filter-btn {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all .2s;
  font-weight: 500;
}
.filter-btn:hover { border-color: var(--lavender); color: var(--plum); }
.filter-btn.active {
  background: var(--plum);
  color: #fff;
  border-color: var(--plum);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s;
}
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(to top, rgba(42, 15, 36, 0.95) 0%, rgba(42, 15, 36, 0.4) 40%, transparent 70%);
  color: #fff;
}
.gallery-tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(212, 160, 90, 0.9);
  color: var(--plum-deep);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.5rem;
  align-self: flex-start;
}
.gallery-item h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.35rem;
  margin: 0;
  line-height: 1.2;
}

/* ============ ABOUT PAGE ============ */
.about-hero {
  padding: 5rem 0;
  background: var(--cream-warm);
}
.about-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 4rem;
  align-items: center;
}
.about-portrait {
  position: relative;
}
.about-portrait .portrait-main,
.about-portrait .portrait-alt {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-portrait .portrait-main {
  aspect-ratio: 3/4;
}
.about-portrait .portrait-alt {
  position: absolute;
  width: 52%;
  aspect-ratio: 4/5;
  right: -1.5rem;
  bottom: -1.75rem;
  border: 4px solid var(--cream);
  box-shadow: 0 20px 40px rgba(42,15,36,0.28);
}
.about-portrait img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 860px){
  .about-portrait .portrait-alt {
    width: 45%;
    right: 0.5rem;
    bottom: -1rem;
  }
}

.about-copy .eyebrow { color: var(--gold); }
.about-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  line-height: 1.15;
  font-weight: 500;
  margin: 0.5rem 0 1.5rem;
  color: var(--plum-deep);
}
.about-copy h1 em { font-style: italic; color: var(--lavender); font-weight: 400; }
.about-copy p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0 0 1.25rem;
}
.about-copy p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 500;
  float: left;
  line-height: 0.9;
  padding: 4px 12px 0 0;
  color: var(--lavender);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.value {
  text-align: center;
}
.value-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2.5rem;
  color: var(--gold);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 0.75rem;
}
.value h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--plum-deep);
}
.value p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .values-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ============ FORMS ============ */
.form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 4vw, 3rem);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  max-width: 720px;
  margin: 0 auto;
}
.form-intro {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--line);
}
.form-intro h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--plum-deep);
  margin: 0 0 0.5rem;
}
.form-intro p {
  color: var(--ink-soft);
  margin: 0;
  font-size: 0.95rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-grid .full { grid-column: 1 / -1; }

.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.field label {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--plum);
  font-weight: 600;
}
.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--cream);
  color: var(--ink);
  transition: border-color .15s, box-shadow .15s, background .15s;
  width: 100%;
  box-sizing: border-box;
  min-width: 0;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--lavender);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(155, 89, 220, 0.15);
}
.field textarea { min-height: 110px; resize: vertical; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234a1d3f' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 34px; }

.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.form-submit {
  margin-top: 1.75rem;
  text-align: center;
}
.form-submit .btn {
  width: 100%;
  max-width: 320px;
  padding: 15px 32px;
  font-size: 1rem;
}
.form-status {
  text-align: center;
  padding: 1rem;
  margin-top: 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  display: none;
}
.form-status.success {
  display: block;
  background: rgba(155, 89, 220, 0.1);
  color: var(--plum);
  border: 1px solid var(--lavender-soft);
}
.form-status.error {
  display: block;
  background: rgba(200, 60, 80, 0.08);
  color: #a83048;
  border: 1px solid rgba(200, 60, 80, 0.2);
}

@media (max-width: 640px) {
  .form-grid { grid-template-columns: 1fr; }
}

/* Sponsor page — supporting layout classes */
.section-tight { padding: 3rem 0 2rem; }
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 860px) {
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
}
.value-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}
.value-list li {
  position: relative;
  padding: 0.5rem 0 0.5rem 1.5rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.5;
}
.value-list li:last-child { border-bottom: none; }
.value-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.05rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

/* ============ CTA BAND ============ */
.cta-band {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--plum-deep), var(--plum) 60%, var(--lavender));
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  width: 500px; height: 500px;
  background: var(--gold);
  opacity: 0.1;
  border-radius: 50%;
  filter: blur(100px);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.cta-band-inner { position: relative; z-index: 1; }
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 500;
  margin: 0 0 1rem;
  line-height: 1.15;
}
.cta-band h2 em { font-style: italic; color: var(--gold-soft); font-weight: 400; }
.cta-band p {
  color: rgba(255,255,255,0.9);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 2rem;
}
.cta-band .btn-primary {
  background: #fff;
  color: var(--plum);
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--plum-deep);
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-logo {
  height: 80px;
  width: auto;
  display: block;
  margin-bottom: 0.5rem;
}
.footer-brand p {
  margin-top: 1rem;
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  max-width: 300px;
}
.footer-contact-line { margin-top: 0.5rem !important; }
.footer-contact-line a { color: var(--gold-soft); font-weight: 500; }
.footer-col h4 {
  color: #fff;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 1rem;
  font-weight: 600;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a { font-size: 0.9rem; transition: color .15s; }
.footer-col a:hover { color: var(--gold-soft); }
.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.8rem;
  text-align: center;
  color: rgba(255,255,255,0.55);
}

@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  section { padding: 3.5rem 0; }
  .hero-inner { padding: 4rem var(--gutter); }
}

/* ============ VENDOR EVENTS BAND ============ */
.events-band {
  background: linear-gradient(135deg, var(--cream-warm), #fff);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
}
.events-band-head { text-align: center; margin-bottom: 2rem; }
.events-band-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  color: var(--plum-deep);
  font-weight: 500;
  margin: 0.35rem 0 0;
}
.events-band-head h2 em { font-style: italic; color: var(--lavender); font-weight: 400; }
.events-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.event-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
}
.event-date {
  flex: 0 0 auto;
  width: 68px;
  text-align: center;
  background: var(--plum-deep);
  color: #fff;
  border-radius: 10px;
  padding: 0.5rem 0 0.6rem;
}
.event-month {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 600;
}
.event-day {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1;
  margin-top: 2px;
}
.event-info h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 0 0.15rem;
  color: var(--plum-deep);
  font-weight: 500;
}
.event-loc { color: var(--gold); font-size: 0.85rem; margin: 0 0 0.35rem; font-weight: 500; }
.event-info p { margin: 0; font-size: 0.9rem; color: var(--ink-soft); line-height: 1.55; }
.events-fee {
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin: 0;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}
.events-fee strong { color: var(--plum-deep); }

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 0.35rem;
}
.checkbox-inline {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.95rem;
  color: var(--ink);
  cursor: pointer;
  font-weight: 400;
}
.checkbox-inline input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--plum);
  flex: 0 0 auto;
}

@media (max-width: 720px) {
  .events-band { padding: 1.75rem 1.25rem; }
  .events-list { grid-template-columns: 1fr; }
}

/* ============ HERO CALLOUT ============ */
.hero-callout {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1.75rem;
  padding: 0.7rem 1.15rem;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(43, 25, 61, 0.08);
  border-radius: 999px;
  font-size: 0.88rem;
  color: var(--plum-deep);
  font-weight: 500;
  box-shadow: var(--shadow-sm);
}
.hero-callout a { color: var(--plum); text-decoration: underline; text-underline-offset: 3px; }
.hero-callout a:hover { color: var(--lavender); }
.hero-callout-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(212,160,90,0.25);
  flex: 0 0 auto;
}

/* ============ FORM AGREEMENT CHECKBOX ============ */
.form-agree {
  margin: 1.5rem 0 0.5rem;
  padding: 1rem 1.25rem;
  background: #fdf8fb;
  border: 1px solid #f0d9e6;
  border-radius: 8px;
}
.agree-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.92rem;
  line-height: 1.55;
  color: #2a1a24;
}
.agree-check input[type="checkbox"] {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin: 3px 0 0 0;
  accent-color: #4a1d3f;
  cursor: pointer;
}
.agree-check span { flex: 1; }
.agree-check a {
  color: #4a1d3f;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 500;
}
.agree-check a:hover { color: #6a3a5f; }
@media (max-width: 720px) {
  .form-agree { padding: 0.85rem 1rem; }
  .agree-check { font-size: 0.88rem; }
}
