/* =========================================================
   AKrafty Event — site styles
   Palette: warm cream, blush, terracotta
   ========================================================= */

/* A Krafty Event signature palette — DEFAULT */
:root, :root[data-theme="brand"] {
  --bg: #FAF7F4;
  --bg-alt: #F4D6D9;
  --bg-deep: #ecc7cc;
  --ink: #3a2a30;
  --ink-soft: #5a4651;
  --muted: #8a7782;
  --accent: #D88C9A;
  --accent-dark: #B8A9C9;
  --accent-deep: #C9A646;
  --rose: #F4D6D9;
  --peach: #f3e3c5;
  --line: #ecdfe1;
}

:root[data-theme="terracotta"] {
  --bg: #fbf7f2;
  --bg-alt: #f3ece2;
  --bg-deep: #ebdfce;
  --ink: #2b2118;
  --ink-soft: #4a3c30;
  --muted: #7a6a5b;
  --accent: #c98e6b;
  --accent-dark: #a96b48;
  --accent-deep: #7a4a30;
  --rose: #e9c9c1;
  --peach: #f5d9b8;
  --line: #e6dccf;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Montserrat', 'Lato', system-ui, -apple-system, sans-serif;
  --shadow-sm: 0 2px 8px rgba(43, 33, 24, 0.06);
  --shadow-md: 0 12px 32px rgba(43, 33, 24, 0.10);
  --shadow-lg: 0 24px 60px rgba(43, 33, 24, 0.14);
  --radius: 14px;
  --radius-lg: 20px;
}

/* Sage & Cream — botanical, garden weddings */
:root[data-theme="sage"] {
  --bg: #f7f6f1;
  --bg-alt: #ecebe1;
  --bg-deep: #dfddc8;
  --ink: #2a2e22;
  --ink-soft: #444a36;
  --muted: #6e7560;
  --accent: #9eae89;
  --accent-dark: #7d9670;
  --accent-deep: #4f6443;
  --rose: #d4dfc7;
  --peach: #ece4cb;
  --line: #dee2cf;
}

/* Dusty Blue — soft, romantic, baby showers */
:root[data-theme="dusty-blue"] {
  --bg: #f5f7fa;
  --bg-alt: #e7edf3;
  --bg-deep: #d0dae5;
  --ink: #1f2730;
  --ink-soft: #3b4855;
  --muted: #6a7b8b;
  --accent: #8aa5be;
  --accent-dark: #6a8aa3;
  --accent-deep: #3f5c75;
  --rose: #cdd9e2;
  --peach: #ead6d2;
  --line: #d8e0e9;
}

/* Noir & Gold — galas, dramatic weddings */
:root[data-theme="noir-gold"] {
  --bg: #16120d;
  --bg-alt: #221c14;
  --bg-deep: #2c241a;
  --ink: #f5ecd9;
  --ink-soft: #d8c9a6;
  --muted: #a39576;
  --accent: #d4b778;
  --accent-dark: #caa55a;
  --accent-deep: #f0d28a;
  --rose: #4a3a22;
  --peach: #6e5530;
  --line: #3a2f20;
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.4);
  --shadow-md: 0 14px 36px rgba(0,0,0,0.5);
}

/* Lavender & Rose — sweet, feminine, bridal showers */
:root[data-theme="lavender"] {
  --bg: #faf6fa;
  --bg-alt: #f1e9f1;
  --bg-deep: #e2d4e6;
  --ink: #2c1f30;
  --ink-soft: #4d3c54;
  --muted: #7e6a87;
  --accent: #c89bbb;
  --accent-dark: #b4769f;
  --accent-deep: #7e4a6d;
  --rose: #e3d4ec;
  --peach: #f3d9e2;
  --line: #e6dbe9;
}

/* Reset / base */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.12;
  margin: 0 0 0.4em;
  color: var(--ink);
}
h1 { font-size: clamp(2.6rem, 6.5vw, 4.8rem); }
h1 em { color: var(--accent-dark); font-style: italic; font-weight: 500; }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h3 { font-size: 1.35rem; }
p  { margin: 0 0 1em; }
em { color: var(--accent-dark); font-style: italic; }

a { color: var(--accent-dark); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  color: var(--accent-dark);
  font-weight: 600;
  margin-bottom: 0.7em;
}
.muted { color: var(--muted); }
.small { font-size: 0.9rem; }
.center { text-align: center; }

/* Accessibility */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 0 0 8px 8px;
  z-index: 1000;
}
.skip-link:focus { left: 1rem; }

:focus-visible {
  outline: 2px solid var(--accent-dark);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 2rem;
  background: rgba(251, 247, 242, 0.88);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.nav.scrolled { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ink);
}
.brand:hover { text-decoration: none; color: var(--ink); }
.brand-wordmark { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-deep);
}
.brand-tag {
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.35rem;
  font-weight: 500;
}
@media (max-width: 640px) {
  .brand-name { font-size: 0.95rem; letter-spacing: 0.14em; }
  .brand-tag { display: none; }
}
.brand-mark { width: 56px; height: 68px; flex-shrink: 0; filter: drop-shadow(0 3px 6px rgba(43, 33, 24, 0.18)); }
@media (max-width: 640px) { .brand-mark { width: 44px; height: 52px; } }

/* Hero photo collage — floating around the headline */
.hero-collage {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-photo {
  position: absolute;
  border-radius: 14px;
  box-shadow: 0 14px 40px rgba(43, 33, 24, 0.18);
  border: 4px solid #fff;
  object-fit: cover;
}
.hero-photo-1 {
  top: 8%; left: 4%;
  width: clamp(120px, 14vw, 200px);
  height: clamp(160px, 19vw, 270px);
  transform: rotate(-6deg);
}
.hero-photo-2 {
  top: 12%; right: 5%;
  width: clamp(130px, 15vw, 220px);
  height: clamp(170px, 20vw, 280px);
  transform: rotate(5deg);
}
.hero-photo-3 {
  bottom: 8%; left: 6%;
  width: clamp(110px, 12vw, 180px);
  height: clamp(150px, 16vw, 240px);
  transform: rotate(7deg);
}
.hero-photo-4 {
  bottom: 10%; right: 4%;
  width: clamp(120px, 13vw, 200px);
  height: clamp(160px, 17vw, 250px);
  transform: rotate(-5deg);
}
@media (max-width: 900px) {
  .hero-photo-3, .hero-photo-4 { display: none; }
  .hero-photo-1 { top: 4%; left: 2%; opacity: 0.7; }
  .hero-photo-2 { top: 6%; right: 2%; opacity: 0.7; }
}
@media (max-width: 600px) {
  .hero-photo { display: none; }
}

/* Photo strip — full width between sections */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2px;
  height: clamp(120px, 16vw, 220px);
  overflow: hidden;
}
.photo-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05);
  transition: transform .5s ease, filter .3s ease;
}
.photo-strip img:hover {
  transform: scale(1.06);
  filter: saturate(1.15);
}
@media (max-width: 700px) {
  .photo-strip { grid-template-columns: repeat(3, 1fr); height: clamp(100px, 24vw, 180px); }
  .photo-strip img:nth-child(n+4) { display: none; }
}

/* Quote section background */
.section-quote { position: relative; overflow: hidden; }
.quote-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.quote-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
  filter: saturate(0.85);
}
.section-quote figure, .section-quote .footnote {
  position: relative;
  z-index: 1;
}
.section-quote::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 0%, var(--bg-alt) 80%);
  z-index: 0;
}
.section-quote figure, .section-quote .footnote { z-index: 2; }

/* Hero logo (large, above headline) */
.hero-logo {
  display: block;
  width: clamp(140px, 18vw, 200px);
  height: clamp(168px, 22vw, 240px);
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 6px 16px rgba(43, 33, 24, 0.18));
  animation: heroFloat 6s ease-in-out infinite;
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

/* Monogram divider (between sections) */
.monogram-divider {
  display: block;
  width: 240px;
  height: 60px;
  margin: 0 auto 2.5rem;
  color: var(--accent-deep);
  opacity: 0.85;
}
.monogram-light { color: var(--accent-deep); }
:root[data-theme="noir-gold"] .monogram-divider { color: var(--accent); }

/* Footer logo */
.footer-brand-block {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.footer-logo {
  width: 56px;
  height: 68px;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
}
.brand-text em { color: var(--accent-dark); font-style: italic; font-weight: 500; }

.nav nav { display: flex; gap: 1.7rem; align-items: center; }
.nav nav a {
  color: var(--ink);
  font-size: 0.93rem;
  font-weight: 400;
  position: relative;
  padding: 0.3rem 0;
}
.nav nav a:not(.btn-sm)::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--accent-dark);
  transition: width .25s ease, left .25s ease;
}
.nav nav a:not(.btn-sm):hover { text-decoration: none; }
.nav nav a:not(.btn-sm):hover::after { width: 100%; left: 0; }

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s ease, opacity .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); }

/* Buttons */
.btn, .btn-ghost, .btn-sm {
  display: inline-block;
  padding: 0.9rem 1.9rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: transform .2s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn {
  background: var(--accent-dark);
  color: #fff;
  box-shadow: 0 6px 20px rgba(169, 107, 72, 0.25);
}
.btn:hover { background: var(--ink); color: #fff; text-decoration: none; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(43, 33, 24, 0.2); }
.btn-ghost {
  border-color: var(--accent-dark);
  color: var(--accent-dark);
  background: transparent;
}
.btn-ghost:hover { background: var(--accent-dark); color: #fff; text-decoration: none; transform: translateY(-2px); }
.btn-sm {
  padding: 0.55rem 1.25rem;
  background: var(--ink);
  color: #fff;
  font-size: 0.85rem;
}
.btn-sm:hover { background: var(--accent-dark); color: #fff; text-decoration: none; }
.btn-sm::after { display: none !important; }

/* Hero */
.hero {
  position: relative;
  background:
    radial-gradient(circle at 80% 20%, rgba(233, 201, 193, 0.6) 0%, transparent 50%),
    radial-gradient(circle at 15% 85%, rgba(245, 217, 184, 0.55) 0%, transparent 45%),
    var(--bg);
  padding: 7rem 2rem 8rem;
  text-align: center;
  overflow: hidden;
}
.hero-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.55;
}
.hero-decor svg { width: 100%; height: 100%; }
.balloon { animation: float 7s ease-in-out infinite; transform-origin: center; }
.balloon.b-2 { animation-duration: 9s; animation-delay: -2s; }
.balloon.b-3 { animation-duration: 8s; animation-delay: -4s; }
.balloon.b-4 { animation-duration: 10s; animation-delay: -1s; }
.balloon.b-5 { animation-duration: 11s; animation-delay: -3s; }
.balloon.b-6 { animation-duration: 9s; animation-delay: -5s; }
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50%      { transform: translateY(-14px) rotate(1deg); }
}

.hero-inner { position: relative; z-index: 2; max-width: 820px; margin: 0 auto; }
.hero h1 { margin-top: 0.3em; }
.hero .lede {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--ink-soft);
  max-width: 600px;
  margin: 1.5rem auto 2.5rem;
}
.cta-row { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.hero-trust {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 4rem;
  flex-wrap: wrap;
  font-size: 0.92rem;
  color: var(--muted);
}
.hero-trust li::before { content: '✦ '; color: var(--accent); margin-right: 0.3rem; }
.hero-trust strong { color: var(--ink); font-weight: 600; }

/* Sections */
.section {
  padding: 6.5rem 2rem;
  max-width: 1140px;
  margin: 0 auto;
}
.section-alt, .section-contact, .section-quote {
  max-width: none;
}
.section-alt { background: var(--bg-alt); }
.section-alt > *, .section-contact > *, .section-quote > * {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}
.section-head { text-align: center; margin-bottom: 3.5rem; max-width: 680px; }
.section-head { margin-left: auto; margin-right: auto; }
.section-head p { color: var(--muted); font-size: 1.02rem; }

/* Cards grid */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5rem;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.2rem 2rem;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  position: relative;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--rose);
}
.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  transition: background .25s ease;
}
.card:hover .card-icon { background: var(--rose); }
.card-icon svg { width: 32px; height: 32px; }
.card h3 { color: var(--accent-deep); margin-bottom: 0.5em; }
.card p { margin: 0; color: var(--muted); font-size: 0.96rem; }

/* Photo gallery (real images) */
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  grid-auto-rows: 220px;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
.photo-gallery .photo {
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
  cursor: zoom-in;
  background: var(--bg-alt);
  transition: transform .35s ease, box-shadow .35s ease;
}
.photo-gallery .photo:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}
.photo-gallery .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.photo-gallery .photo:hover img { transform: scale(1.05); }
/* vary tile sizes for visual rhythm */
.photo-gallery .photo:nth-child(7n+1) { grid-row: span 2; }
.photo-gallery .photo:nth-child(11n+5) { grid-column: span 2; }
@media (max-width: 600px) {
  .photo-gallery { grid-auto-rows: 160px; gap: 0.5rem; }
  .photo-gallery .photo:nth-child(11n+5) { grid-column: span 1; }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 14, 10, 0.92);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  animation: fadeIn 0.25s ease;
}
.lightbox.is-open { display: flex; }
@keyframes fadeIn { from { opacity: 0 } to { opacity: 1 } }
.lightbox-img {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  object-fit: contain;
}
.lightbox button {
  position: absolute;
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: background .2s ease;
}
.lightbox button:hover { background: rgba(255,255,255,0.2); }
.lightbox-close { top: 1.2rem; right: 1.2rem; }
.lightbox-prev  { left: 1.2rem; top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 1.2rem; top: 50%; transform: translateY(-50%); }
@media (max-width: 600px) {
  .lightbox-prev, .lightbox-next { width: 36px; height: 36px; font-size: 1.3rem; }
}

/* Old placeholder gallery (kept for any reference) */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.gallery-item {
  aspect-ratio: 1;
  border-radius: var(--radius);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 1.2rem;
  color: #fff;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
  overflow: hidden;
  position: relative;
  transition: transform .35s ease, box-shadow .35s ease;
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.gallery-item.placeholder {
  background: linear-gradient(135deg, var(--rose) 0%, var(--peach) 50%, var(--accent) 100%);
}
.gallery-item.placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.4) 0%, transparent 30%),
    radial-gradient(circle at 70% 60%, rgba(255,255,255,0.3) 0%, transparent 35%);
}
.gallery-item span {
  position: relative;
  z-index: 1;
  background: rgba(43, 33, 24, 0.35);
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  font-size: 0.95rem;
  backdrop-filter: blur(4px);
}
.gallery-item:nth-child(2n)::before { background: radial-gradient(circle at 60% 40%, rgba(255,255,255,0.5) 0%, transparent 30%); }
.gallery-item:nth-child(3n) { background: linear-gradient(135deg, var(--peach) 0%, var(--accent) 100%); }
.gallery-item:nth-child(4n) { background: linear-gradient(135deg, var(--accent-dark) 0%, var(--rose) 100%); }
.gallery-item:nth-child(5n) { background: linear-gradient(135deg, var(--rose) 0%, var(--accent-dark) 100%); }

/* About */
.about-wrap {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.about-wrap p { font-size: 1.05rem; color: var(--ink-soft); }
.badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}
.badges li {
  background: #fff;
  border: 1px solid var(--line);
  padding: 1.4rem 1rem;
  border-radius: var(--radius);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.badges strong {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--accent-dark);
}
.badges span { font-size: 0.82rem; color: var(--muted); }
@media (max-width: 760px) {
  .about-wrap { grid-template-columns: 1fr; }
}

/* Quote section */
.section-quote {
  padding: 5rem 2rem;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
  text-align: center;
}
.section-quote figure { max-width: 760px; margin: 0 auto; }
.section-quote blockquote {
  margin: 0 0 1rem;
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  font-style: italic;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.4;
}
.section-quote blockquote p { margin: 0; }
.section-quote figcaption { color: var(--muted); font-size: 0.95rem; }
.footnote { font-size: 0.78rem; color: var(--muted); margin-top: 2rem; opacity: 0.7; }

/* FAQ */
.faq { max-width: 760px; margin: 0 auto; }
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 0.8rem;
  padding: 0;
  transition: box-shadow .25s ease, border-color .25s ease;
}
.faq details[open] {
  box-shadow: var(--shadow-sm);
  border-color: var(--rose);
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 1.3rem 1.5rem;
  font-weight: 500;
  font-size: 1.02rem;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--accent-dark);
  transition: transform .25s ease;
  line-height: 1;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p {
  padding: 0 1.5rem 1.4rem;
  margin: 0;
  color: var(--muted);
}

/* Contact */
.section-contact {
  background: linear-gradient(180deg, var(--bg-alt) 0%, var(--rose) 100%);
  padding: 6rem 2rem;
  text-align: center;
}
.contact-tagline {
  font-family: 'Allura', cursive;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--accent-deep);
  margin: -0.6rem 0 0.4rem;
  line-height: 1.2;
}
.contact-tagline em { color: var(--accent-deep); font-style: italic; }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin: 0 auto 3.5rem;
  max-width: 1000px;
}
.contact-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: transform .25s ease, box-shadow .25s ease;
  border: 1px solid var(--line);
  text-align: center;
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
  color: var(--ink);
}
.contact-label {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  color: var(--muted);
  font-weight: 600;
}
.contact-value {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--ink);
  font-weight: 600;
}

/* Form */
.contact-form {
  background: #fff;
  max-width: 720px;
  margin: 0 auto;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: left;
}
.contact-form h3 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--accent-deep);
}
.contact-form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
  font-weight: 500;
  margin-bottom: 1rem;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  font: inherit;
  font-weight: 300;
  padding: 0.8rem 1rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg);
  color: var(--ink);
  transition: border-color .2s ease, background .2s ease;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--accent-dark);
  background: #fff;
  outline: none;
}
.contact-form textarea { resize: vertical; min-height: 100px; }
.contact-form button { width: 100%; margin-top: 0.5rem; }
.form-note { font-size: 0.83rem; color: var(--muted); text-align: center; margin: 1rem 0 0; }

/* Packages / Pricing */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}
.package-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.2rem 2rem;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  position: relative;
}
.package-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--rose);
}
.package-featured {
  background: linear-gradient(180deg, var(--rose) 0%, #fff 60%);
  border-color: var(--accent);
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}
.package-featured:hover { transform: scale(1.02) translateY(-6px); }
.package-tag {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--accent-deep);
  margin: 0 0 0.4em;
}
.package-card h3 {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--ink);
  margin: 0 0 0.4rem;
}
.package-price {
  font-family: var(--serif);
  font-size: 2.4rem;
  color: var(--accent-deep);
  margin: 0.5rem 0 1.6rem;
  font-weight: 600;
}
.package-price .price-from {
  display: block;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 0.3rem;
}
.package-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  flex-grow: 1;
  text-align: left;
}
.package-list li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.8rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
  border-bottom: 1px dashed var(--line);
}
.package-list li:last-child { border-bottom: none; }
.package-list li::before {
  content: '♥';
  position: absolute;
  left: 0;
  top: 0.5rem;
  color: var(--accent);
  font-size: 0.85rem;
}
.package-list em { color: var(--accent-deep); font-style: italic; }
.package-btn { align-self: center; min-width: 180px; }
.package-note { margin-top: 2rem; color: var(--muted); }
.package-note em { color: var(--accent-deep); font-style: italic; }

/* Testimonials carousel */
.testimonials {
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 3rem 4rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.t-track {
  position: relative;
  min-height: 220px;
}
.t-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  text-align: center;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity .5s ease, transform .5s ease;
  pointer-events: none;
}
.t-slide.is-active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
  position: relative;
}
.t-stars {
  color: var(--accent-deep);
  letter-spacing: 0.3em;
  font-size: 1.1rem;
  margin: 0 0 1rem;
}
.t-slide blockquote {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-style: italic;
  line-height: 1.5;
  color: var(--ink);
  margin: 0 0 1.4rem;
  quotes: '"' '"' "'" "'";
}
.t-slide blockquote::before { content: open-quote; color: var(--accent-deep); margin-right: 2px; }
.t-slide blockquote::after  { content: close-quote; color: var(--accent-deep); margin-left: 2px; }
.t-slide figcaption {
  color: var(--accent-deep);
  font-weight: 500;
  font-size: 0.95rem;
}
.t-slide figcaption span {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 0.3rem;
  font-weight: 400;
}
.t-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-alt);
  color: var(--accent-deep);
  font-size: 1.4rem;
  cursor: pointer;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease, transform .2s ease;
  z-index: 2;
}
.t-arrow:hover { background: var(--accent-deep); color: #fff; transform: translateY(-50%) scale(1.06); }
.t-prev { left: 0.6rem; }
.t-next { right: 0.6rem; }
.t-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.t-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .25s ease, transform .25s ease;
}
.t-dot.is-active { background: var(--accent-deep); transform: scale(1.3); }
@media (max-width: 640px) {
  .testimonials { padding: 2.5rem 1.2rem; }
  .t-arrow { display: none; }
}

/* Featured contact card (Calendly highlight) */
.contact-card-feature {
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #fff !important;
  border-color: transparent;
}
.contact-card-feature:hover {
  color: #fff !important;
  box-shadow: 0 14px 36px rgba(169, 107, 72, 0.35);
}
.contact-card-feature .contact-label { color: rgba(255,255,255,0.85); }
.contact-card-feature .contact-value { color: #fff; }

/* Form success state */
.form-success {
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 2.5rem;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  text-align: center;
  animation: successPop .55s cubic-bezier(.34, 1.56, .64, 1);
  position: relative;
  z-index: 5;
}
@keyframes successPop {
  0%   { opacity: 0; transform: scale(0.9) translateY(15px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.form-success-inner svg { margin: 0 auto 1.2rem; }
.success-circle {
  stroke-dasharray: 138;
  stroke-dashoffset: 138;
  animation: drawCircle .6s ease-out forwards .15s;
}
.success-tick {
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: drawTick .35s ease-out forwards .75s;
}
@keyframes drawCircle { to { stroke-dashoffset: 0; } }
@keyframes drawTick   { to { stroke-dashoffset: 0; } }
.form-success h3 {
  color: var(--accent-deep);
  font-family: var(--serif);
  font-size: 2rem;
  margin: 0 0 0.6rem;
}
.form-success h3 #successName {
  font-style: italic;
}
.success-line {
  color: var(--ink);
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
}
.success-countdown {
  color: var(--accent-deep);
  font-family: 'Allura', cursive;
  font-size: 1.6rem;
  line-height: 1.2;
  margin: 0.6rem 0 0.8rem;
}
.success-countdown strong { font-family: var(--serif); font-weight: 600; font-style: italic; }
.success-sub {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0.4rem 0 1.5rem;
}
.success-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Heart confetti */
.confetti {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1000;
}
.confetti-heart {
  position: absolute;
  top: -30px;
  font-family: var(--sans);
  animation: heartFall 3.2s linear forwards;
  text-shadow: 0 2px 6px rgba(43, 33, 24, 0.2);
}
@keyframes heartFall {
  0% {
    top: -30px;
    opacity: 0;
    transform: translateX(0) rotate(0deg);
  }
  10% { opacity: 1; }
  100% {
    top: 110vh;
    opacity: 0.7;
    transform: translateX(80px) rotate(360deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .confetti-heart, .success-circle, .success-tick { animation: none !important; }
  .success-circle, .success-tick { stroke-dashoffset: 0 !important; }
}

/* Time-of-day greeting accent in eyebrow */
#timeGreeting {
  color: var(--accent-deep);
  font-style: italic;
  text-transform: none;
  letter-spacing: 0.02em;
  font-weight: 500;
  font-family: var(--serif);
  font-size: 1.05em;
}

@media (max-width: 600px) {
  .contact-form { padding: 1.5rem; }
  .contact-form .row { grid-template-columns: 1fr; }
}

/* Footer */
footer {
  background: var(--ink);
  color: #d8c7b3;
  padding: 3rem 2rem 2rem;
}
.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(216, 199, 179, 0.15);
}
.footer-brand {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 0.2rem;
}
.footer-inner p { margin: 0; font-size: 0.9rem; }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a { color: var(--rose); font-size: 0.95rem; }
.copyright {
  text-align: center;
  font-size: 0.82rem;
  margin: 1.5rem 0 0;
  opacity: 0.6;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Mobile */
@media (max-width: 820px) {
  .nav { padding: 0.8rem 1.2rem; }
  .nav-toggle { display: flex; }
  .nav nav {
    position: fixed;
    inset: 64px 0 auto 0;
    background: var(--bg);
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
    gap: 0;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    transform: translateY(-110%);
    transition: transform .3s ease;
  }
  .nav nav.open { transform: translateY(0); }
  .nav nav a { padding: 1rem 0.5rem; border-bottom: 1px solid var(--line); }
  .nav nav a:last-child { border-bottom: none; }
  .nav nav .btn-sm { margin-top: 0.5rem; text-align: center; }
}
@media (max-width: 640px) {
  .hero { padding: 5rem 1.2rem 6rem; }
  .section, .section-contact, .section-quote { padding: 4.5rem 1.2rem; }
  .hero-trust { gap: 1.2rem; margin-top: 3rem; }
  .card { padding: 1.8rem 1.5rem; }
}

/* Pillars strip */
.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 3.5rem;
  padding: 1.75rem 1.5rem;
  background: var(--accent-dark);
  border-radius: var(--radius-lg);
  list-style: none;
}
.pillars li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  text-align: center;
}
.pillars strong { font-weight: 500; }
.pillar-svg {
  width: 22px;
  height: 22px;
  color: var(--accent-deep);
  filter: brightness(1.5);
  flex-shrink: 0;
}
@media (max-width: 720px) {
  .pillars { padding: 1.25rem; }
  .pillars li { font-size: 0.7rem; }
}

/* Heart divider in headings */
.heart-divider {
  font-family: var(--sans);
  color: var(--accent-deep);
  font-size: 0.7em;
  vertical-align: 0.3em;
  margin-left: 0.3em;
  font-weight: 400;
}

/* Instagram-style highlights */
.highlights {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  max-width: 720px;
  margin: 0 auto;
}
@media (max-width: 600px) {
  .highlights { grid-template-columns: repeat(5, 1fr); gap: 0.5rem; }
}
.highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--ink-soft);
  transition: transform .25s ease;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
}
.highlight:hover { transform: translateY(-4px); text-decoration: none; }
.highlight-bubble {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--rose);
  border: 2px solid #fff;
  box-shadow: 0 6px 18px rgba(43, 33, 24, 0.08);
  transition: box-shadow .25s ease, background .25s ease;
}
.highlight:hover .highlight-bubble {
  box-shadow: 0 12px 30px rgba(43, 33, 24, 0.18);
}
.highlight-bubble[data-tone="rose"]      { background: var(--rose); }
.highlight-bubble[data-tone="blush"]     { background: var(--peach); }
.highlight-bubble[data-tone="lavender"]  { background: #e3d4ec; }
.highlight-bubble[data-tone="rose-2"]    { background: var(--bg-deep); }
.highlight-bubble[data-tone="blush-2"]   { background: #fde4e7; }
.highlight-bubble svg { width: 50%; height: 50%; }
@media (max-width: 600px) {
  .highlight-bubble { width: 64px; height: 64px; }
  .highlight { font-size: 0.78rem; gap: 0.4rem; }
}

/* Instagram-style feed tiles */
.section-feed {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
  text-align: center;
}
.feed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto;
}
.feed-tile {
  aspect-ratio: 1;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  text-align: center;
  text-decoration: none;
  color: var(--ink);
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
  overflow: hidden;
}
.feed-tile:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); text-decoration: none; }
.feed-tile[data-tone="cream"]  { background: var(--bg); border: 1px solid var(--line); }
.feed-tile[data-tone="blush"]  { background: var(--rose); }
.feed-tile[data-tone="rose"]   { background: linear-gradient(135deg, var(--rose), #f0bcc6); }
.feed-script {
  font-family: 'Allura', cursive;
  font-size: clamp(2.2rem, 4vw, 3rem);
  line-height: 1;
  margin: 0.3rem 0;
  color: var(--accent-deep);
}
.feed-script-lg { font-size: clamp(2.6rem, 5vw, 3.6rem); }
.feed-line {
  font-family: var(--serif);
  font-size: 1.05rem;
  margin: 0.4rem 0 0;
  color: var(--ink-soft);
}
.feed-line strong { color: var(--accent-deep); font-style: italic; font-weight: 600; }
.feed-eyebrow {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0.3rem 0;
  font-weight: 500;
}
.feed-heart {
  position: absolute;
  bottom: 0.9rem;
  color: var(--accent-deep);
  font-size: 1rem;
  opacity: 0.6;
}
.feed-image .feed-balloons {
  width: 70%;
  height: 70%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feed-image .feed-balloons svg { width: 100%; height: 100%; }
.feed-photo { padding: 0; overflow: hidden; }
.feed-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.feed-photo:hover img { transform: scale(1.06); }

/* Instagram live-feed section */
.section-ig { background: var(--bg); }
.section-ig h2 a { color: var(--accent-deep); border-bottom: 1px solid currentColor; padding-bottom: 2px; }
.section-ig h2 a:hover { text-decoration: none; }
.ig-feed-frame {
  max-width: 1100px;
  margin: 0 auto;
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 1rem;
  box-shadow: var(--shadow-sm);
}
.ig-feed-frame .lightwidget-widget { display: block; }
.ig-fallback {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.5rem;
}
@media (max-width: 900px) { .ig-fallback { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .ig-fallback { grid-template-columns: repeat(2, 1fr); } }
.ig-tile {
  position: relative;
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  display: block;
  background: var(--bg-deep);
}
.ig-tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease, filter .3s ease;
}
.ig-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(43,33,24,0) 50%, rgba(43,33,24,0.85) 100%);
  color: #fff;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0.6rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity .25s ease;
}
.ig-tile:hover .ig-overlay { opacity: 1; }
.ig-tile:hover img { transform: scale(1.06); filter: brightness(0.95); }

/* Arch picker */
.arch-picker { max-width: 920px; margin: 0 auto; }
.arch-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.arch-tab {
  padding: 0.65rem 1.3rem;
  border-radius: 999px;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 500;
  font-family: var(--sans);
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .15s ease;
}
.arch-tab:hover {
  border-color: var(--accent-dark);
  color: var(--accent-dark);
  transform: translateY(-1px);
}
.arch-tab.is-active {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
}

.arch-stage {
  position: relative;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem 2rem 1.5rem;
  min-height: 460px;
  overflow: hidden;
}
.arch-scene {
  position: absolute;
  inset: 2rem 2rem 1.5rem;
  opacity: 0;
  transform: scale(0.97);
  pointer-events: none;
  transition: opacity .45s ease, transform .45s ease;
}
.arch-scene.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  position: relative;
  inset: auto;
}
.arch-scene svg {
  width: 100%;
  height: auto;
  max-height: 380px;
  display: block;
  margin: 0 auto;
}
.arch-scene .cluster ellipse {
  filter: drop-shadow(0 3px 6px rgba(43, 33, 24, 0.15));
  animation: archFloat 6s ease-in-out infinite;
  transform-origin: center;
}
.arch-scene .cluster ellipse:nth-child(3n)   { animation-duration: 7s; animation-delay: -1s; }
.arch-scene .cluster ellipse:nth-child(3n+1) { animation-duration: 8s; animation-delay: -2s; }
.arch-scene .cluster ellipse:nth-child(3n+2) { animation-duration: 9s; animation-delay: -3s; }
@keyframes archFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); }
}
.arch-caption {
  text-align: center;
  margin: 1rem 0 0;
  font-size: 0.98rem;
  color: var(--ink-soft);
}
.arch-caption strong {
  color: var(--accent-deep);
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.arch-cta {
  text-align: center;
  margin-top: 1.5rem;
  color: var(--muted);
  font-size: 0.95rem;
}
@media (max-width: 600px) {
  .arch-stage { padding: 1rem 1rem 0.75rem; min-height: 360px; }
  .arch-scene { inset: 1rem 1rem 0.75rem; }
  .arch-tab { padding: 0.55rem 1rem; font-size: 0.85rem; }
}

/* Theme switcher */
.theme-switcher {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  display: flex;
  gap: 0.4rem;
  padding: 0.55rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-md);
}
:root[data-theme="noir-gold"] .theme-switcher {
  background: rgba(34, 28, 20, 0.92);
}
.theme-btn {
  width: 28px;
  height: 28px;
  padding: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease;
  display: block;
}
.theme-btn span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.theme-btn:hover { transform: scale(1.12); }
.theme-btn.is-active { border-color: var(--accent-dark); }
@media (max-width: 520px) {
  .theme-switcher { right: 0.6rem; bottom: 0.6rem; padding: 0.4rem; gap: 0.3rem; }
  .theme-btn { width: 24px; height: 24px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}
