/* Little Jems Treasures — boutique romantic palette */

:root {
  --cream: #F8F1E7;
  --cream-deep: #EFE4D2;
  --purple: #6E5A8E;
  --purple-soft: #9F8BBE;
  --mauve: #C8A2C8;
  --pink: #E8A6B8;
  --pink-deep: #D17A93;
  --pink-soft: #F4D6DF;
  --gold: #C9A961;
  --charcoal: #3A2E4A;
  --accent: var(--pink);
  --accent-deep: var(--pink-deep);
  --accent-soft: var(--pink-soft);
  --card-radius: 14px;
  --shadow: 0 4px 20px rgba(110, 90, 142, 0.08);
  --shadow-lift: 0 10px 30px rgba(110, 90, 142, 0.14);
  --heading-font: 'Playfair Display', Georgia, serif;
  --body-font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono-font: 'JetBrains Mono', ui-monospace, monospace;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: none; background: transparent; color: inherit; }
a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--heading-font);
  color: var(--purple);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin: 0;
}
em { color: var(--accent-deep); font-style: italic; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

.eyebrow {
  font-family: var(--mono-font), monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--purple-soft);
  display: inline-block;
}
.mono { font-family: var(--mono-font), monospace; font-size: 11px; letter-spacing: 0.04em; }

.display { font-size: clamp(38px, 5.2vw, 68px); line-height: 1.04; letter-spacing: -0.02em; }
.hero-text .display { word-break: break-word; overflow-wrap: break-word; }
.display-sm { font-size: clamp(34px, 4.5vw, 52px); line-height: 1.08; }
.section-title { font-size: clamp(26px, 3vw, 38px); }
.lede { font-size: 17px; line-height: 1.6; color: rgba(58, 46, 74, 0.78); max-width: 56ch; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(248, 241, 231, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.is-scrolled {
  box-shadow: 0 1px 0 rgba(159, 139, 190, 0.2), 0 6px 22px rgba(110,90,142,.06);
  background: rgba(248, 241, 231, 0.92);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 10px 28px; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; padding: 4px 6px; border-radius: 12px; }
.brand-logo { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; }
.brand-text { display: flex; flex-direction: column; line-height: 1; text-align: left; }
.brand-script { font-family: var(--heading-font); font-style: italic; color: var(--purple); font-size: 22px; }
.brand-sub { font-family: var(--mono-font); font-size: 9px; letter-spacing: 0.32em; color: var(--pink-deep); margin-top: 2px; }

.nav-desktop { display: flex; align-items: center; gap: 6px; }
.nav-link {
  position: relative; padding: 10px 14px; font-size: 14px; font-weight: 500; color: var(--charcoal);
  border-radius: 8px; transition: color .2s; text-decoration: none;
}
.nav-link::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 1px;
  background: var(--purple-soft); transform: scaleX(0); transform-origin: left; transition: transform .25s ease;
}
.nav-link:hover { color: var(--purple); }
.nav-link:hover::after, .nav-link.is-active::after { transform: scaleX(1); }
.nav-link.is-active { color: var(--purple); }
.nav-cta { margin-left: 12px; }
.hamburger { display: none; padding: 10px; border-radius: 8px; color: var(--purple); }

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

/* Drawer */
.drawer-scrim { position: fixed; inset: 0; background: rgba(58, 46, 74, 0.5); opacity: 0; pointer-events: none; transition: opacity .25s; z-index: 80; }
.drawer-scrim.is-open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(320px, 86vw);
  background: var(--cream); z-index: 90; transform: translateX(100%); transition: transform .3s cubic-bezier(.4, 0, .2, 1);
  display: flex; flex-direction: column; box-shadow: -8px 0 30px rgba(110, 90, 142, 0.12);
}
.drawer.is-open { transform: translateX(0); }
.drawer-head { display: flex; justify-content: space-between; align-items: center; padding: 20px 24px; border-bottom: 1px solid rgba(159, 139, 190, 0.2); }
.drawer-title { font-family: var(--mono-font); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--purple-soft); }
.drawer-nav { padding: 12px 16px; flex: 1; }
.drawer-link {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  padding: 16px 12px; font-family: var(--heading-font); font-size: 22px; color: var(--purple);
  border-radius: 10px; transition: background .2s; text-decoration: none;
}
.drawer-link:hover { background: rgba(159, 139, 190, 0.12); }
.drawer-link.is-active { background: rgba(232, 166, 184, 0.18); color: var(--purple); }
.drawer-foot { padding: 20px 24px; border-top: 1px solid rgba(159, 139, 190, 0.2); }
.drawer-mail { display: inline-flex; align-items: center; gap: 8px; color: var(--purple); font-size: 14px; text-decoration: none; }
.icon-btn { padding: 8px; border-radius: 8px; color: var(--purple); }
.icon-btn:hover { background: rgba(159, 139, 190, 0.15); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; border-radius: 999px;
  font-size: 14px; font-weight: 600; letter-spacing: 0.01em;
  transition: transform .15s ease, background .2s ease, box-shadow .2s ease, color .2s ease;
  border: 1px solid transparent;
  text-decoration: none;
}
.btn-primary { background: var(--accent); color: white; box-shadow: 0 4px 14px rgba(209, 122, 147, 0.3); }
.btn-primary:hover { background: var(--accent-deep); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(209, 122, 147, 0.4); }
.btn-ghost { background: transparent; color: var(--purple); border-color: rgba(159, 139, 190, 0.5); }
.btn-ghost:hover { background: rgba(159, 139, 190, 0.1); border-color: var(--purple-soft); }
.btn-text { background: transparent; color: var(--purple); padding: 8px 4px; border-radius: 6px; }
.btn-text:hover { color: var(--accent-deep); gap: 12px; }
.btn-pill {
  background: rgba(232, 166, 184, 0.15);
  color: var(--accent-deep);
  padding: 9px 16px;
  font-size: 13px;
  border: 1px solid rgba(209, 122, 147, 0.25);
}
.btn-pill:hover { background: var(--accent); color: white; border-color: var(--accent); }
.btn-lg { padding: 16px 28px; font-size: 15px; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 56px 0 40px; overflow: hidden; }
.hero-editorial { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center; }
.hero-text .eyebrow { margin-bottom: 18px; }
.hero-text h1 { margin-bottom: 22px; }
.hero-text .lede { margin-bottom: 32px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-meta { list-style: none; padding: 0; margin: 40px 0 0; display: flex; gap: 36px; flex-wrap: wrap; border-top: 1px solid rgba(159, 139, 190, 0.25); padding-top: 24px; }
.hero-meta li { font-size: 13px; color: rgba(58, 46, 74, 0.68); }
.hero-meta strong { display: block; font-family: var(--heading-font); font-size: 26px; color: var(--purple); font-weight: 600; }

.hero-collage { position: relative; aspect-ratio: 1 / 1; }
.collage-card {
  position: absolute; border-radius: 18px; overflow: hidden; background: white;
  box-shadow: var(--shadow-lift); transition: transform .3s ease;
}
.collage-card-a { top: 0; left: 8%; width: 56%; aspect-ratio: 3 / 4; transform: rotate(-3deg); z-index: 2; }
.collage-card-b { bottom: 4%; right: 0; width: 50%; aspect-ratio: 1 / 1; transform: rotate(4deg); z-index: 3; }
.collage-card-c { bottom: 22%; left: 0; width: 38%; aspect-ratio: 1 / 1; transform: rotate(-7deg); z-index: 1; }
.collage-card:hover { transform: rotate(0deg) translateY(-4px); }
.collage-card .product-img { width: 100%; height: calc(100% - 36px); object-fit: cover; display: block; }
.collage-tag {
  height: 36px; display: flex; align-items: center; justify-content: space-between;
  padding: 0 14px; background: white; font-family: var(--mono-font); font-size: 10px; letter-spacing: 0.06em; color: var(--purple);
  border-top: 1px solid rgba(159, 139, 190, 0.2);
}
.collage-circle {
  position: absolute; right: 4%; top: 6%; width: 110px; height: 110px;
  border-radius: 50%; border: 1px dashed var(--purple-soft);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: var(--heading-font); font-style: italic; color: var(--purple); font-size: 13px;
  background: rgba(248, 241, 231, 0.7); backdrop-filter: blur(2px); z-index: 4;
  animation: gentlePulse 6s ease-in-out infinite;
}
.collage-circle svg { color: var(--accent-deep); margin: 4px 0; }
@keyframes gentlePulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.04); } }

@media (max-width: 1080px) {
  .hero-editorial { grid-template-columns: 1fr; gap: 40px; }
  .hero-collage { aspect-ratio: 4 / 3; max-width: 560px; }
}

/* Sparkles */
.sparkle-layer { position: absolute; inset: 0; pointer-events: none; }
.sparkle { position: absolute; color: var(--gold); opacity: 0.55; animation: twinkle 4s ease-in-out infinite; }
@keyframes twinkle { 0%, 100% { transform: scale(1); opacity: 0.3; } 50% { transform: scale(1.4); opacity: 0.85; } }

/* ---------- Section ---------- */
.section { padding: 80px 0; }
.section-tinted { background: var(--cream-deep); }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px; gap: 24px; flex-wrap: wrap; }
.section-head .eyebrow { display: block; margin-bottom: 8px; }

/* ---------- Cards ---------- */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.gallery-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.card {
  background: white;
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s ease;
  cursor: pointer;
  display: flex; flex-direction: column;
  border: 1px solid rgba(159, 139, 190, 0.12);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.card-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.card-cat {
  position: absolute; top: 12px; left: 12px;
  padding: 5px 10px; border-radius: 999px;
  background: rgba(248, 241, 231, 0.92); backdrop-filter: blur(6px);
  font-family: var(--mono-font); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--purple);
}
.card-body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 10px; }
.card-titlerow { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.card-title { font-size: 22px; }
.card-price { font-family: var(--mono-font); font-size: 13px; color: var(--accent-deep); font-weight: 600; white-space: nowrap; }
.card .btn-pill { align-self: flex-start; margin-top: 6px; }

/* ---------- Product image (real photo, not placeholder) ---------- */
.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------- How it works ---------- */
.howit-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
.howit-steps { list-style: none; padding: 0; margin: 0; display: grid; gap: 20px; }
.howit-steps li { background: white; border-radius: 14px; padding: 24px 26px; box-shadow: var(--shadow); border: 1px solid rgba(159,139,190,0.12); }
.howit-num { font-family: var(--mono-font); font-size: 11px; letter-spacing: 0.1em; color: var(--accent-deep); }
.howit-steps h4 { font-size: 20px; margin: 8px 0 6px; }
.howit-steps p { margin: 0; font-size: 14px; color: rgba(58,46,74,0.72); }
@media (max-width: 860px) { .howit-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ---------- Specialty by-request note (home page) ---------- */
.specialty-note {
  margin: 60px auto 0;
  max-width: 880px;
  padding: 28px 32px;
  border-radius: 16px;
  background: rgba(232, 166, 184, 0.08);
  border: 1px dashed rgba(201, 169, 97, 0.45);
  display: flex; flex-direction: column; gap: 10px;
}
.specialty-note .eyebrow { color: var(--accent-deep); }
.specialty-note p { margin: 0; font-size: 15px; color: var(--charcoal); }
.specialty-note-links { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 6px; }
.specialty-note-links a { color: var(--purple); font-size: 14px; font-weight: 500; text-decoration: none; }
.specialty-note-links a:hover { color: var(--accent-deep); }

/* ---------- Page head ---------- */
.page-head { padding: 48px 0 24px; }
.page-head .eyebrow { margin-bottom: 14px; }
.page-head h1 { margin-bottom: 14px; }
.page-head .lede { margin: 0; }

/* ---------- Filter bar ---------- */
.filter-bar {
  position: sticky; top: 76px; z-index: 30;
  background: rgba(248, 241, 231, 0.82); backdrop-filter: blur(8px);
  padding: 14px 0;
  border-top: 1px solid rgba(159,139,190,0.15);
  border-bottom: 1px solid rgba(159,139,190,0.15);
  margin-bottom: 16px;
}
.filter-inner { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; }
.filter-inner::-webkit-scrollbar { display: none; }
.filter-sub {
  background: rgba(239, 228, 210, 0.6);
  padding: 10px 0;
  border-bottom: 1px solid rgba(159,139,190,0.15);
  margin-bottom: 16px;
  display: none;
}
.filter-sub.is-visible { display: block; }
.filter-sub .filter-inner { padding: 0; }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px; border-radius: 999px;
  background: white; border: 1px solid rgba(159,139,190,0.25);
  font-size: 13px; font-weight: 500; color: var(--charcoal);
  white-space: nowrap; transition: all .2s;
}
.chip:hover { border-color: var(--purple-soft); }
.chip.is-active { background: var(--purple); color: white; border-color: var(--purple); }
.chip.is-active .chip-count { color: rgba(255,255,255,0.7); }
.chip-count { font-family: var(--mono-font); font-size: 10px; color: var(--purple-soft); padding-left: 4px; border-left: 1px solid rgba(159,139,190,0.3); }
.chip-sub { font-size: 12px; padding: 6px 14px; }
.empty { padding: 60px; text-align: center; color: var(--purple-soft); }

/* Specialty by-request callout (gallery, only when Specialty filter active) */
.specialty-callout {
  display: none;
  margin: 0 0 24px;
  padding: 18px 22px;
  border-radius: 14px;
  background: rgba(232, 166, 184, 0.08);
  border: 1px dashed rgba(201, 169, 97, 0.5);
  display: flex; gap: 16px; align-items: center; justify-content: space-between; flex-wrap: wrap;
}
.specialty-callout.is-visible { display: flex; }
.specialty-callout p { margin: 0; color: var(--charcoal); font-size: 14px; max-width: 60ch; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(58, 46, 74, 0.85);
  display: none; align-items: center; justify-content: center;
  padding: 32px;
}
.lightbox.is-open {
  display: flex;
  animation: fadeIn .25s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.lightbox-card {
  background: var(--cream); border-radius: 20px; overflow: hidden;
  display: grid; grid-template-columns: 1.1fr 1fr;
  max-width: 980px; width: 100%; max-height: 90vh;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  position: relative;
  animation: liftIn .3s cubic-bezier(.2,.8,.2,1);
}
@keyframes liftIn { from { opacity: 0; transform: translateY(20px) scale(.98); } to { opacity: 1; transform: none; } }
.lightbox-close {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(248,241,231,0.9); color: var(--purple);
  display: inline-flex; align-items: center; justify-content: center;
}
.lightbox-close:hover { background: white; }
.lightbox-media { background: var(--cream-deep); aspect-ratio: 1 / 1; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.lightbox-media .product-img { width: 100%; height: 100%; object-fit: contain; padding: 12px; }
.lightbox-body { padding: 36px; overflow-y: auto; }
.lightbox-body h2 { font-size: 32px; margin: 6px 0 12px; }
.lightbox-price { font-family: var(--mono-font); font-size: 14px; color: var(--accent-deep); font-weight: 600; margin-bottom: 16px; }
.lightbox-meta { list-style: none; padding: 16px 0; margin: 16px 0; border-top: 1px solid rgba(159,139,190,0.2); border-bottom: 1px solid rgba(159,139,190,0.2); display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.lightbox-meta li { font-size: 13px; color: var(--charcoal); }
.lightbox-meta li span { display: block; font-family: var(--mono-font); font-size: 10px; color: var(--purple-soft); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 2px; }
.lightbox-body .btn { margin-top: 20px; }
@media (max-width: 760px) {
  .lightbox-card { grid-template-columns: 1fr; max-height: 95vh; overflow-y: auto; }
  .lightbox-media { aspect-ratio: 4 / 3; }
}

/* ---------- Calendar ---------- */
.calendar-wrap {
  background: var(--cream-deep);
  border-radius: 20px;
  padding: 16px;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}
.calendar-iframe {
  width: 100%;
  height: 600px;
  border: 0;
  border-radius: 12px;
  background: white;
  display: block;
}
.calendar-notes { display: flex; flex-direction: column; gap: 14px; max-width: 720px; margin: 0 auto; }
.calendar-note {
  padding: 14px 18px;
  border-radius: 12px;
  background: rgba(201, 169, 97, 0.08);
  border: 1px dashed rgba(201, 169, 97, 0.4);
  font-size: 14px;
  color: var(--charcoal);
}
.calendar-note a { color: var(--purple); font-weight: 500; }
.calendar-note a:hover { color: var(--accent-deep); }

/* ---------- Inquire ---------- */
.inquire-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: start; }
.inquire-form { display: grid; gap: 22px; background: white; padding: 36px; border-radius: 20px; box-shadow: var(--shadow); border: 1px solid rgba(159,139,190,0.12); }
.field { display: grid; gap: 6px; }
.field label { font-family: var(--mono-font); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--purple-soft); }
.field input, .field textarea, .field select {
  font: inherit; padding: 12px 14px; border-radius: 10px;
  border: 1px solid rgba(159,139,190,0.3); background: var(--cream);
  color: var(--charcoal); transition: border .2s, background .2s, box-shadow .2s;
  width: 100%; font-size: 15px;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--accent); background: white; box-shadow: 0 0 0 4px rgba(232,166,184,0.18);
}
.field textarea { resize: vertical; }
.radio-row { display: flex; flex-wrap: wrap; gap: 8px; }
.radio-pill {
  display: inline-flex; padding: 9px 16px; border-radius: 999px; cursor: pointer;
  border: 1px solid rgba(159,139,190,0.3); background: var(--cream); font-size: 13px; transition: all .2s;
  position: relative;
}
.radio-pill input { position: absolute; opacity: 0; pointer-events: none; }
.radio-pill.is-active { background: var(--purple); color: white; border-color: var(--purple); }
.upload-note {
  display: flex; gap: 12px; padding: 14px 18px; align-items: flex-start;
  background: rgba(201, 169, 97, 0.1); border-radius: 12px; border: 1px dashed rgba(201, 169, 97, 0.4);
  color: var(--charcoal); font-size: 13px;
}
.upload-note svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.upload-note p { margin: 0; }
.sent-note { display: none; gap: 8px; align-items: center; color: var(--purple); font-size: 13px; }
.sent-note.is-visible { display: inline-flex; }
.sent-note svg { color: #6BA368; }

.inquire-preview { position: sticky; top: 100px; }
.preview-window {
  background: white; border-radius: 14px; overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid rgba(159,139,190,0.18);
  margin-top: 8px;
}
.preview-head { display: flex; gap: 6px; padding: 12px 16px; background: var(--cream-deep); border-bottom: 1px solid rgba(159,139,190,0.15); }
.preview-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--purple-soft); opacity: 0.5; }
.preview-dot:nth-child(1) { background: var(--accent); opacity: 0.8; }
.preview-dot:nth-child(2) { background: var(--gold); opacity: 0.7; }
.preview-dot:nth-child(3) { background: var(--purple); opacity: 0.6; }
.preview-body { padding: 22px 24px; }
.preview-row { display: flex; gap: 12px; padding: 8px 0; border-bottom: 1px dashed rgba(159,139,190,0.18); font-size: 13px; }
.preview-row:last-of-type { border-bottom: none; }
.preview-row span { font-family: var(--mono-font); font-size: 10px; letter-spacing: 0.1em; color: var(--purple-soft); text-transform: uppercase; min-width: 60px; padding-top: 2px; }
.preview-row b { font-weight: 500; color: var(--charcoal); word-break: break-word; }
.preview-text {
  font-family: var(--mono-font); font-size: 12px; line-height: 1.7;
  background: var(--cream); padding: 14px; border-radius: 8px;
  margin-top: 10px; white-space: pre-wrap; color: var(--charcoal);
  border: 1px solid rgba(159,139,190,0.15);
}
.preview-note { font-size: 12px; color: var(--purple-soft); margin-top: 14px; }

@media (max-width: 860px) {
  .inquire-grid { grid-template-columns: 1fr; gap: 32px; }
  .inquire-preview { position: static; }
}

/* ---------- Custom orders banner ---------- */
.custom-banner {
  margin: 60px 28px 0;
  background: linear-gradient(135deg, var(--purple) 0%, var(--accent-deep) 100%);
  border-radius: 24px; color: white; position: relative; overflow: hidden;
  max-width: 1200px; margin-left: auto; margin-right: auto;
}
.custom-banner::before {
  content: ""; position: absolute; right: -60px; top: -60px; width: 240px; height: 240px;
  border-radius: 50%; background: rgba(255,255,255,0.08);
}
.custom-banner::after {
  content: ""; position: absolute; left: -40px; bottom: -100px; width: 300px; height: 300px;
  border-radius: 50%; border: 1px dashed rgba(255,255,255,0.2);
}
.custom-banner-inner {
  display: flex; justify-content: space-between; align-items: center;
  padding: 48px 56px; gap: 32px; flex-wrap: wrap; position: relative; z-index: 1;
}
.custom-banner .eyebrow { color: rgba(255,255,255,0.7); }
.custom-banner h3 { color: white; font-size: clamp(22px, 2.4vw, 30px); margin-top: 8px; max-width: 36ch; }
.custom-banner .btn-primary { background: white; color: var(--accent-deep); }
.custom-banner .btn-primary:hover { background: var(--cream); color: var(--accent-deep); }
@media (max-width: 760px) {
  .custom-banner-inner { padding: 32px 28px; }
  .custom-banner { margin: 40px 16px 0; }
}

/* ---------- Footer ---------- */
.site-footer { padding: 56px 0 32px; margin-top: 40px; border-top: 1px solid rgba(159,139,190,0.2); }
.footer-inner { display: flex; justify-content: space-between; gap: 32px; flex-wrap: wrap; align-items: flex-start; }
.footer-brand { display: flex; gap: 18px; max-width: 480px; }
.footer-logo { width: 60px; height: 60px; border-radius: 50%; flex-shrink: 0; object-fit: cover; }
.disclaimer { font-size: 12px; color: var(--purple-soft); line-height: 1.6; margin: 0; }
.footer-mail { display: inline-flex; align-items: center; gap: 8px; color: var(--purple); font-size: 14px; text-decoration: none; }
.footer-mail:hover { color: var(--accent-deep); }
.copyright { font-family: var(--mono-font); font-size: 11px; color: var(--purple-soft); margin: 12px 0 0; letter-spacing: 0.04em; }

/* ---------- Page transition / fade ---------- */
.page-fade { animation: pageFade .35s ease; }
@keyframes pageFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.fade-in { opacity: 0; transform: translateY(14px); transition: opacity .55s ease, transform .55s ease; }
.fade-in.is-shown { opacity: 1; transform: none; }
