/* =========================================================
   COTTAGECORE WEDDING RSVP — MAIN STYLESHEET
   ========================================================= */

/* ---------- Design Tokens ---------- */
:root {
  /* Cottagecore palette — sage meadow, dusty rose, antique gold, warm cream */
  --sage: #A7B89A;
  --moss: #7D8B63;
  --cream: #F8F5EF;
  --warm-white: #FFFDF8;
  --dusty-rose: #D9B0A3;
  --terracotta: #B97762;
  --antique-gold: #C79A5D;
  --brown: #6B5B4D;

  /* Extended depth tones, derived from the palette above */
  --terracotta-deep: #A56652;
  --brown-deep: #4B3D30;
  --cream-deep: #EFE3D2;
  --rose-deep: #B5695C;
  --lavender-dusk: #B9A2AC;

  /* Legacy tokens mapped onto the new palette — every rule below keeps working */
  --color-cream: var(--cream);
  --color-cream-deep: var(--cream-deep);
  --color-paper: var(--warm-white);
  --color-sage: var(--sage);
  --color-sage-deep: var(--moss);
  --color-olive: var(--brown-deep);
  --color-dusty-rose: var(--dusty-rose);
  --color-dusty-rose-deep: var(--rose-deep);
  --color-terracotta: var(--terracotta);
  --color-lavender: var(--lavender-dusk);
  --color-beige: #D8C7A4;
  --color-old-rose: #C08081;
  --color-honey: var(--antique-gold);
  --color-ink: var(--brown);
  --color-ink-soft: #7C6C5A;
  --color-line: #E4D8C6;
  --color-babysbreath: var(--warm-white);

  /* Typography */
  --font-display: 'Fraunces', serif;
  --font-body: 'Lora', serif;
  --font-accent: 'Quicksand', sans-serif;
  --font-label: 'Special Elite', monospace;
  --font-script: 'Petit Formal Script', cursive;

  /* Layout */
  --max-width: 1180px;
  --radius-soft: 18px;
  --radius-pill: 999px;
  --shadow-soft: 0 12px 34px rgba(75, 58, 42, 0.14);
  --shadow-card: 0 6px 20px rgba(75, 58, 42, 0.09);

  --transition-slow: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  --transition-mid: 0.35s ease;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-ink);
  background-color: var(--color-cream);
  background-image:
    radial-gradient(circle at 15% 8%, rgba(199, 154, 93, 0.10), transparent 42%),
    radial-gradient(circle at 85% 92%, rgba(217, 176, 163, 0.14), transparent 48%),
    radial-gradient(circle at 50% 50%, transparent 55%, rgba(75, 61, 48, 0.05) 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cg transform='rotate(-12 40 40)'%3E%3Cellipse cx='40' cy='26' rx='7' ry='11' fill='%23D9B0A3' fill-opacity='0.45'/%3E%3Cellipse cx='40' cy='26' rx='7' ry='11' fill='%23D9B0A3' fill-opacity='0.45' transform='rotate(72 40 40)'/%3E%3Cellipse cx='40' cy='26' rx='7' ry='11' fill='%23D9B0A3' fill-opacity='0.45' transform='rotate(144 40 40)'/%3E%3Cellipse cx='40' cy='26' rx='7' ry='11' fill='%23D9B0A3' fill-opacity='0.45' transform='rotate(216 40 40)'/%3E%3Cellipse cx='40' cy='26' rx='7' ry='11' fill='%23D9B0A3' fill-opacity='0.45' transform='rotate(288 40 40)'/%3E%3Ccircle cx='40' cy='40' r='5' fill='%23C79A5D' fill-opacity='0.5'/%3E%3C/g%3E%3Cpath d='M100 118 C104 106 114 100 126 102' fill='none' stroke='%237D8B63' stroke-width='2' stroke-opacity='0.35' stroke-linecap='round'/%3E%3Cellipse cx='122' cy='98' rx='5.5' ry='2.8' fill='%237D8B63' fill-opacity='0.35' transform='rotate(-25 122 98)'/%3E%3Cellipse cx='110' cy='108' rx='5.5' ry='2.8' fill='%237D8B63' fill-opacity='0.35' transform='rotate(25 110 108)'/%3E%3C/svg%3E");
  background-size: auto, auto, auto, 160px 160px;
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--color-olive);
  font-weight: 500;
  margin: 0 0 0.4em;
}
p { margin: 0 0 1em; }
a { color: inherit; }
button { font-family: inherit; cursor: pointer; }
ul, ol { margin: 0; padding: 0; }
li { list-style: none; }

/* Elements using the `hidden` attribute must actually stay hidden even
   when their own class also sets a `display` value (e.g. flex dialogs
   like .thankyou-card, .lightbox) — author rules would otherwise beat
   the browser's default [hidden] { display: none }. */
[hidden] { display: none !important; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Skip Link ---------- */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--color-olive);
  color: var(--color-paper);
  padding: 0.8em 1.4em;
  z-index: 10000;
  border-radius: 0 0 8px 0;
}
.skip-link:focus {
  left: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

/* ---------- Focus states (accessibility) ---------- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--color-terracotta);
  outline-offset: 2px;
}

/* =========================================================
   LOADING SCREEN
   ========================================================= */
#loading-screen {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(217, 176, 163, 0.16), transparent 55%),
    radial-gradient(circle at 15% 85%, rgba(199, 154, 93, 0.14), transparent 46%),
    var(--color-cream);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  overflow: hidden;
}
#loading-screen.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
#loading-screen::before,
#loading-screen::after {
  content: '';
  position: absolute;
  width: 68px;
  height: 68px;
  opacity: 0.4;
  pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 60'%3E%3Cpath d='M6 54C6 54 8 30 24 18C32 12 44 10 54 6' fill='none' stroke='%237D8B63' stroke-width='2' stroke-linecap='round'/%3E%3Cellipse cx='20' cy='34' rx='6' ry='3.2' fill='%23D9B0A3' transform='rotate(-35 20 34)'/%3E%3Cellipse cx='30' cy='24' rx='6' ry='3.2' fill='%23D9B0A3' transform='rotate(-35 30 24)'/%3E%3Cellipse cx='41' cy='15' rx='6' ry='3.2' fill='%23D9B0A3' transform='rotate(-35 41 15)'/%3E%3C/svg%3E") no-repeat center / contain;
}
#loading-screen::before { top: 28px; left: 28px; }
#loading-screen::after { bottom: 28px; right: 28px; transform: rotate(180deg); }

/* Faint wallpaper dust — same motif as the body texture, but masked to
   fade out toward the seal so it reads as depth, not competing print. */
.gate-dust {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cg transform='rotate(-12 40 40)'%3E%3Cellipse cx='40' cy='26' rx='7' ry='11' fill='%23D9B0A3' fill-opacity='0.45'/%3E%3Cellipse cx='40' cy='26' rx='7' ry='11' fill='%23D9B0A3' fill-opacity='0.45' transform='rotate(72 40 40)'/%3E%3Cellipse cx='40' cy='26' rx='7' ry='11' fill='%23D9B0A3' fill-opacity='0.45' transform='rotate(144 40 40)'/%3E%3Cellipse cx='40' cy='26' rx='7' ry='11' fill='%23D9B0A3' fill-opacity='0.45' transform='rotate(216 40 40)'/%3E%3Cellipse cx='40' cy='26' rx='7' ry='11' fill='%23D9B0A3' fill-opacity='0.45' transform='rotate(288 40 40)'/%3E%3Ccircle cx='40' cy='40' r='5' fill='%23C79A5D' fill-opacity='0.5'/%3E%3C/g%3E%3Cpath d='M100 118 C104 106 114 100 126 102' fill='none' stroke='%237D8B63' stroke-width='2' stroke-opacity='0.35' stroke-linecap='round'/%3E%3Cellipse cx='122' cy='98' rx='5.5' ry='2.8' fill='%237D8B63' fill-opacity='0.35' transform='rotate(-25 122 98)'/%3E%3Cellipse cx='110' cy='108' rx='5.5' ry='2.8' fill='%237D8B63' fill-opacity='0.35' transform='rotate(25 110 108)'/%3E%3C/svg%3E");
  background-size: 220px 220px;
  -webkit-mask-image: radial-gradient(circle at 50% 46%, transparent 0%, transparent 32%, black 72%);
  mask-image: radial-gradient(circle at 50% 46%, transparent 0%, transparent 32%, black 72%);
  pointer-events: none;
}
.loading-bloom {
  text-align: center;
  padding: 0 1.5rem;
  max-width: 380px;
  margin: 0 auto;
}

/* The bloom sits inside a slowly turning seal ring — the guest is opening
   a wax-sealed invitation, not waiting through a spinner. */
.bloom-seal {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bloom-ring {
  position: absolute;
  inset: 0;
  overflow: visible;
}
.bloom-ring circle {
  fill: none;
  stroke: var(--color-honey);
  stroke-width: 1.4;
  stroke-dasharray: 2 10;
  stroke-linecap: round;
  opacity: 0.5;
  transform-origin: 100px 100px;
  animation: seal-turn 90s linear infinite;
}
@keyframes seal-turn {
  to { transform: rotate(360deg); }
}
.bloom-svg { overflow: visible; }
.petal {
  fill: var(--color-dusty-rose);
  transform-origin: 100px 100px;
  animation: bloom-open 1.8s ease-in-out infinite alternate;
}
.petal-1 { fill: var(--color-dusty-rose); animation-delay: 0s; }
.petal-2 { fill: var(--color-terracotta); animation-delay: 0.1s; }
.petal-3 { fill: var(--color-dusty-rose); animation-delay: 0.2s; }
.petal-4 { fill: var(--color-terracotta); animation-delay: 0.3s; }
.petal-5 { fill: var(--color-honey); opacity: 0.85; animation-delay: 0.15s; }
.petal-6 { fill: var(--color-honey); opacity: 0.85; animation-delay: 0.25s; }
.petal-7 { fill: var(--color-honey); opacity: 0.85; animation-delay: 0.05s; }
.petal-8 { fill: var(--color-honey); opacity: 0.85; animation-delay: 0.35s; }
.bloom-center { fill: var(--color-honey); }
@keyframes bloom-open {
  from { transform: scale(0.75); }
  to { transform: scale(1); }
}
.loading-text {
  font-family: var(--font-script);
  font-size: 1.7rem;
  color: var(--color-dusty-rose-deep);
  margin: 0.8rem 0 1.8rem;
  line-height: 1.3;
}

/* Signature entry control — a stamped invitation plaque, not another
   pill button. Its corner sprigs echo .hero-frame so the motif that
   opens the gate reappears the instant the hero comes into view. */
.enter-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(280px, 100%);
  padding: 1.05em 1.6em;
  border: none;
  border-radius: var(--radius-soft);
  background: linear-gradient(155deg, var(--color-terracotta) 0%, var(--color-dusty-rose-deep) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 253, 248, 0.35),
    inset 0 -3px 8px rgba(75, 40, 30, 0.22),
    0 14px 32px rgba(90, 60, 40, 0.28);
  transition: transform 0.35s var(--transition-slow), box-shadow 0.35s ease;
}
.enter-btn-frame {
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(255, 253, 248, 0.5);
  border-radius: calc(var(--radius-soft) - 6px);
  pointer-events: none;
}
.enter-btn-frame::before, .enter-btn-frame::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  opacity: 0.85;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 60'%3E%3Cpath d='M6 54C6 54 8 30 24 18C32 12 44 10 54 6' fill='none' stroke='%23F8F0DC' stroke-width='2' stroke-linecap='round'/%3E%3Cellipse cx='20' cy='34' rx='6' ry='3.2' fill='%23F8F0DC' transform='rotate(-35 20 34)'/%3E%3Cellipse cx='30' cy='24' rx='6' ry='3.2' fill='%23F8F0DC' transform='rotate(-35 30 24)'/%3E%3Cellipse cx='41' cy='15' rx='6' ry='3.2' fill='%23F8F0DC' transform='rotate(-35 41 15)'/%3E%3C/svg%3E") no-repeat center / contain;
}
.enter-btn-frame::before { top: -8px; left: -8px; }
.enter-btn-frame::after { bottom: -8px; right: -8px; transform: rotate(180deg); }
.enter-btn-label {
  position: relative;
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--color-paper);
}
.enter-btn:hover, .enter-btn:focus-visible {
  transform: translateY(-3px);
  box-shadow:
    inset 0 1px 0 rgba(255, 253, 248, 0.4),
    inset 0 -3px 8px rgba(75, 40, 30, 0.22),
    0 18px 40px rgba(90, 60, 40, 0.34);
}
.enter-btn:active {
  transform: translateY(-1px) scale(0.98);
}
.enter-btn:focus-visible {
  outline: 3px solid var(--color-honey);
  outline-offset: 3px;
}

/* =========================================================
   AMBIENT ANIMATIONS — PETALS, BUTTERFLIES & FIREFLIES
   ========================================================= */
.petals-container, .butterflies-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 5;
  overflow: hidden;
}
.petal-fall {
  position: absolute;
  top: -5%;
  width: 14px;
  height: 14px;
  background: var(--color-dusty-rose);
  border-radius: 0 100% 0 100%;
  opacity: 0.75;
  box-shadow: 0 0 6px rgba(199, 154, 93, 0.25);
  animation-name: fall, sway;
  animation-timing-function: linear, ease-in-out;
  animation-iteration-count: 1, infinite;
}
@keyframes fall {
  to { transform: translateY(115vh) rotate(360deg); }
}
@keyframes sway {
  0%, 100% { margin-left: 0; }
  50% { margin-left: 40px; }
}
.butterfly {
  position: absolute;
  font-size: 1.4rem;
  opacity: 0.8;
  animation: flutter-path linear;
  will-change: transform;
}
.butterfly span {
  display: inline-block;
  animation: flutter-wings 0.5s ease-in-out infinite alternate;
}
@keyframes flutter-wings {
  from { transform: scaleX(1); }
  to { transform: scaleX(0.6); }
}
@keyframes flutter-path {
  0%   { transform: translate(0, 0) rotate(0deg); }
  25%  { transform: translate(8vw, -6vh) rotate(8deg); }
  50%  { transform: translate(16vw, 2vh) rotate(-6deg); }
  75%  { transform: translate(24vw, -8vh) rotate(6deg); }
  100% { transform: translate(32vw, 0) rotate(0deg); }
}

/* Fireflies — soft golden sparks drifting over the page at dusk */
.petals-container::before,
.petals-container::after {
  content: '';
  position: absolute;
  top: 60%;
  left: 10%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 221, 150, 0.95) 0%, rgba(255, 221, 150, 0.35) 45%, transparent 75%);
  box-shadow:
    18vw -22vh 0 -1px rgba(255, 221, 150, 0.7),
    38vw 8vh 0 0px rgba(255, 221, 150, 0.55),
    64vw -30vh 0 1px rgba(255, 221, 150, 0.65),
    78vw 18vh 0 -1px rgba(255, 221, 150, 0.5);
  animation: firefly-drift 14s ease-in-out infinite, firefly-flicker 3.6s ease-in-out infinite;
  opacity: 0;
}
.petals-container::after {
  top: 22%;
  left: 4%;
  animation-duration: 18s, 4.2s;
  animation-delay: -6s, -1.4s;
}
@keyframes firefly-drift {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(3vw, -4vh); }
  50%  { transform: translate(-2vw, -8vh); }
  75%  { transform: translate(4vw, -2vh); }
  100% { transform: translate(0, 0); }
}
@keyframes firefly-flicker {
  0%, 100% { opacity: 0.12; }
  50% { opacity: 0.7; }
}

/* =========================================================
   FADE-IN ON SCROLL
   ========================================================= */
.fade-in-section {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--transition-slow), transform 0.9s var(--transition-slow);
}
.fade-in-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  padding: 0.9em 1.8em;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  text-decoration: none;
  transition: transform var(--transition-mid), box-shadow var(--transition-mid), background var(--transition-mid), color var(--transition-mid);
  background: none;
}
.btn-primary {
  background: var(--color-terracotta);
  color: var(--color-paper);
  box-shadow: 0 10px 30px rgba(90, 60, 40, 0.20);
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--terracotta-deep);
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(90, 60, 40, 0.26);
}
.btn-secondary {
  background: transparent;
  border-color: var(--color-sage-deep);
  color: var(--color-olive);
}
.btn-secondary:hover, .btn-secondary:focus-visible {
  background: var(--color-sage);
  color: var(--color-paper);
  transform: translateY(-2px);
}
.btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.text-highlight-link {
  color: var(--color-terracotta);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.text-highlight-link:hover, .text-highlight-link:focus-visible {
  color: var(--terracotta-deep);
}

/* =========================================================
   NAVIGATION
   ========================================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(248, 245, 239, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(107, 91, 77, 0.12);
  transition: box-shadow var(--transition-mid), background var(--transition-mid);
}
.site-header.scrolled {
  background: rgba(248, 245, 239, 0.97);
  box-shadow: 0 4px 20px rgba(75, 58, 42, 0.1);
}
.navbar {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.5rem;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--color-olive);
  text-decoration: none;
  font-weight: 600;
}
.nav-logo .amp { color: var(--color-terracotta); font-style: italic; }
.nav-menu {
  display: flex;
  gap: 1.8rem;
}
.nav-menu a {
  text-decoration: none;
  font-family: var(--font-accent);
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  color: #6B5B4D;
  position: relative;
  padding-bottom: 4px;
  transition: color var(--transition-mid);
}
.nav-menu a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--color-terracotta);
  transition: width var(--transition-mid);
}
.nav-menu a:hover, .nav-menu a:focus-visible { color: #B97762; }
.nav-menu a:hover::after, .nav-menu a:focus-visible::after { width: 100%; }

.nav-toggle {
  display: none;
  position: relative;
  z-index: 1001;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-olive);
  transition: transform var(--transition-mid), opacity var(--transition-mid);
}

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: min(75vw, 320px);
    background: var(--color-cream);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 1.6rem;
    padding: 2rem;
    box-shadow: -8px 0 30px rgba(0,0,0,0.1);
    transition: right var(--transition-mid);
  }
  .nav-menu.is-open { right: 0; }
  .nav-menu a { font-size: 1.1rem; }
  .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 {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 1.5rem 4rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(60, 46, 35, 0.4), rgba(60, 46, 35, 0.4)),
    radial-gradient(circle at 18% 20%, rgba(255, 240, 205, 0.28), transparent 42%),
    radial-gradient(circle at 84% 82%, rgba(255, 226, 205, 0.24), transparent 46%),
    linear-gradient(135deg, #A7B89A 0%, #C8C49D 45%, #E7CEC8 100%);
  z-index: -2;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 15% 20%, rgba(255,244,214,0.35) 0, transparent 6%),
                     radial-gradient(circle at 85% 30%, rgba(255,244,214,0.3) 0, transparent 7%),
                     radial-gradient(circle at 30% 80%, rgba(255,244,214,0.3) 0, transparent 6%),
                     radial-gradient(circle at 70% 68%, rgba(255,244,214,0.35) 0, transparent 7%),
                     radial-gradient(circle at 50% 45%, transparent 60%, rgba(50, 38, 28, 0.16) 100%);
}
.hero-frame {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 12px;
  z-index: -1;
  pointer-events: none;
}
.hero-frame::before, .hero-frame::after {
  content: '';
  position: absolute;
  width: 42px;
  height: 42px;
  opacity: 0.55;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 60'%3E%3Cpath d='M6 54C6 54 8 30 24 18C32 12 44 10 54 6' fill='none' stroke='%23F8F0DC' stroke-width='2' stroke-linecap='round'/%3E%3Cellipse cx='20' cy='34' rx='6' ry='3.2' fill='%23F8F0DC' transform='rotate(-35 20 34)'/%3E%3Cellipse cx='30' cy='24' rx='6' ry='3.2' fill='%23F8F0DC' transform='rotate(-35 30 24)'/%3E%3Cellipse cx='41' cy='15' rx='6' ry='3.2' fill='%23F8F0DC' transform='rotate(-35 41 15)'/%3E%3C/svg%3E") no-repeat center / contain;
}
.hero-frame::before { top: -10px; left: -10px; }
.hero-frame::after { bottom: -10px; right: -10px; transform: rotate(180deg); }
.hero-content {
  max-width: 720px;
  color: #F6F2EA;
  text-shadow: 0 2px 22px rgba(42, 30, 20, 0.38);
}
.hero-sprig {
  width: 92px;
  margin: 0 auto 1.1rem;
  display: block;
  opacity: 0.9;
}
.hero-sprig .bb-stem { stroke: rgba(253, 249, 239, 0.85); }
.hero-sprig .bb-floret { fill: rgba(253, 249, 239, 0.95); stroke: var(--color-honey); stroke-width: 0.6; }
.hero-eyebrow {
  font-family: var(--font-accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}
.hero-names {
  font-size: clamp(3rem, 9vw, 6rem);
  color: #FFFDF8;
  margin-bottom: 0.3em;
  line-height: 1.1;
}
.hero-amp {
  font-style: italic;
  color: var(--color-honey);
  padding: 0 0.15em;
}
.hero-date {
  font-family: var(--font-accent);
  font-size: 1.15rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.2em;
}
.hero-venue {
  font-style: italic;
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin: 2rem 0 2.5rem;
  flex-wrap: wrap;
}
.countdown-item {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 18px;
  padding: 0.9rem 1.1rem;
  min-width: 78px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 26px rgba(45, 32, 22, 0.18);
  transition: transform var(--transition-mid), box-shadow var(--transition-mid);
}
.countdown-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(45, 32, 22, 0.24);
}
.countdown-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 600;
  line-height: 1;
}
.countdown-label {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
}

.scroll-down {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255,255,255,0.7);
  border-radius: 14px;
}
.scroll-down span {
  position: absolute;
  top: 6px; left: 50%;
  width: 5px; height: 5px;
  margin-left: -2.5px;
  background: #fff;
  border-radius: 50%;
  animation: scroll-dot 1.6s ease-in-out infinite;
}
@keyframes scroll-dot {
  0% { top: 6px; opacity: 1; }
  70% { opacity: 0.4; }
  100% { top: 22px; opacity: 0; }
}

/* =========================================================
   SHARED SECTION STYLES
   ========================================================= */
.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 6rem 1.5rem;
}
.section-heading {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}
.section-kicker {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-label);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  color: var(--color-dusty-rose-deep);
  margin-bottom: 0.6rem;
}
.section-kicker::before, .section-kicker::after {
  content: '';
  width: 13px;
  height: 13px;
  flex: none;
  background-color: var(--color-terracotta);
  opacity: 0.75;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cellipse cx='12' cy='6.5' rx='3' ry='5.5'/%3E%3Cellipse cx='12' cy='6.5' rx='3' ry='5.5' transform='rotate(72 12 12)'/%3E%3Cellipse cx='12' cy='6.5' rx='3' ry='5.5' transform='rotate(144 12 12)'/%3E%3Cellipse cx='12' cy='6.5' rx='3' ry='5.5' transform='rotate(216 12 12)'/%3E%3Cellipse cx='12' cy='6.5' rx='3' ry='5.5' transform='rotate(288 12 12)'/%3E%3Ccircle cx='12' cy='12' r='2.4'/%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cellipse cx='12' cy='6.5' rx='3' ry='5.5'/%3E%3Cellipse cx='12' cy='6.5' rx='3' ry='5.5' transform='rotate(72 12 12)'/%3E%3Cellipse cx='12' cy='6.5' rx='3' ry='5.5' transform='rotate(144 12 12)'/%3E%3Cellipse cx='12' cy='6.5' rx='3' ry='5.5' transform='rotate(216 12 12)'/%3E%3Cellipse cx='12' cy='6.5' rx='3' ry='5.5' transform='rotate(288 12 12)'/%3E%3Ccircle cx='12' cy='12' r='2.4'/%3E%3C/svg%3E") no-repeat center / contain;
}
.section-kicker::before { margin-right: 0.55em; }
.section-kicker::after { margin-left: 0.55em; }
.section-heading h2 {
  font-size: clamp(2.2rem, 5vw, 3rem);
}
.section-intro {
  margin-top: 1rem;
  color: var(--color-ink-soft);
}
.rsvp-deadline {
  display: inline-flex;
  align-items: baseline;
  gap: 0.4em;
  margin: 1rem auto 0;
  padding: 0.5em 1.3em;
  background: var(--color-paper);
  border: 1.5px solid var(--color-dusty-rose);
  border-radius: var(--radius-pill);
  font-family: var(--font-accent);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-dusty-rose-deep);
  box-shadow: var(--shadow-card);
}
.rsvp-deadline-count {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--color-terracotta);
}
.divider {
  color: var(--color-sage-deep);
  margin: 0.8rem auto 0;
  width: 120px;
}

.divider-babysbreath {
  width: 160px;
}
.divider-babysbreath .bb-stem {
  fill: none;
  stroke: var(--color-sage-deep);
  stroke-width: 1;
  stroke-linecap: round;
}
.divider-babysbreath .bb-floret {
  fill: var(--color-babysbreath);
  stroke: var(--color-sage-deep);
  stroke-width: 0.75;
}

/* Gentle alternating warmth between sections — like turning the pages
   of a handmade invitation suite */
.our-story { background: var(--color-cream); }
.wedding-details { background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-cream-deep) 100%); }
.rsvp-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(217, 176, 163, 0.18), transparent 60%),
    var(--color-cream);
}
.gallery-section { background: var(--color-cream-deep); }
.faq-section { background: var(--color-cream); }
.guestbook-section { background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-cream-deep) 100%); }

/* =========================================================
   OUR STORY — TIMELINE
   ========================================================= */
.timeline {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 26px;
  top: 0; bottom: 0;
  width: 2px;
  background: repeating-linear-gradient(var(--color-sage) 0 8px, transparent 8px 16px);
}
.timeline-item {
  position: relative;
  z-index: 6;
  display: flex;
  gap: 1.5rem;
  padding-bottom: 2.8rem;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: relative;
  z-index: 1;
  flex: none;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--color-paper);
  border: 2px solid var(--color-sage);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: var(--shadow-card);
}
.timeline-card {
  position: relative;
  z-index: 6;
  background: var(--color-paper);
  border-radius: var(--radius-soft);
  padding: 1.5rem 1.8rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-line);
  flex: 1;
  transition: transform var(--transition-mid), box-shadow var(--transition-mid);
}
.timeline-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}
.timeline-date {
  font-family: var(--font-accent);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-terracotta);
}
.timeline-card h3 { margin-top: 0.3rem; font-size: 1.5rem; }
.timeline-card p { color: var(--color-ink-soft); margin-bottom: 0; }

/* =========================================================
   WEDDING DETAILS
   ========================================================= */
/* In-page wayfinding for this section only — Entourage and Attire live
   deep in a long section, so guests can jump straight there instead of
   scrolling past ceremony/reception/gifts to find them. */
.details-subnav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin: -2rem 0 3rem;
}
.details-subnav a {
  font-family: var(--font-accent);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-olive);
  background: var(--color-paper);
  border: 1.5px solid var(--color-line);
  border-radius: var(--radius-pill);
  padding: 0.5em 1.15em;
  transition: background var(--transition-mid), border-color var(--transition-mid), color var(--transition-mid), transform var(--transition-mid);
}
.details-subnav a:hover, .details-subnav a:focus-visible {
  background: var(--color-sage);
  border-color: var(--color-sage-deep);
  color: var(--color-paper);
  transform: translateY(-2px);
}
#ceremony, #reception, #dress-code, #gifts, #entourage, #attire {
  scroll-margin-top: 100px;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.6rem;
}
.detail-card {
  position: relative;
  z-index: 6;
  background: var(--color-paper);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-soft);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-mid), box-shadow var(--transition-mid);
}
.detail-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}
.detail-icon {
  width: 46px;
  height: 46px;
  margin: 0 auto 0.7rem;
  position: relative;
  font-size: 0;
}
.detail-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: var(--color-terracotta);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 68%;
  mask-size: 68%;
}
/* Ceremony — garden arch */
.details-grid .detail-card:nth-child(1) .detail-icon::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 21V12a8 8 0 0 1 16 0v9h-3v-9a5 5 0 0 0-10 0v9H4Z'/%3E%3Ccircle cx='12' cy='3' r='1.6'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 21V12a8 8 0 0 1 16 0v9h-3v-9a5 5 0 0 0-10 0v9H4Z'/%3E%3Ccircle cx='12' cy='3' r='1.6'/%3E%3C/svg%3E");
}
/* Reception — champagne coupe */
.details-grid .detail-card:nth-child(2) .detail-icon::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 3c-2.8 0-5 1.6-5 4 0 2.9 2.1 5.3 4 6.1V19H9a1 1 0 0 0 0 2h6a1 1 0 0 0 0-2h-2v-5.9c1.9-.8 4-3.2 4-6.1 0-2.4-2.2-4-5-4Z'/%3E%3Ccircle cx='10' cy='6.5' r='.6'/%3E%3Ccircle cx='13.2' cy='8.4' r='.7'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 3c-2.8 0-5 1.6-5 4 0 2.9 2.1 5.3 4 6.1V19H9a1 1 0 0 0 0 2h6a1 1 0 0 0 0-2h-2v-5.9c1.9-.8 4-3.2 4-6.1 0-2.4-2.2-4-5-4Z'/%3E%3Ccircle cx='10' cy='6.5' r='.6'/%3E%3Ccircle cx='13.2' cy='8.4' r='.7'/%3E%3C/svg%3E");
}
/* Dress code — garden dress */
.details-grid .detail-card:nth-child(3) .detail-icon::before,
.attire-card .detail-icon::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M10 2h4l.8 2.6-.8.9v1.6l3.6 12.7a1 1 0 0 1-1 1.2H7.4a1 1 0 0 1-1-1.2L10 7.1V5.5l-.8-.9L10 2Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M10 2h4l.8 2.6-.8.9v1.6l3.6 12.7a1 1 0 0 1-1 1.2H7.4a1 1 0 0 1-1-1.2L10 7.1V5.5l-.8-.9L10 2Z'/%3E%3C/svg%3E");
}
/* Gifts — wrapped present */
.details-grid .detail-card:nth-child(4) .detail-icon::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 6h-2.18c.11-.31.18-.65.18-1a2.996 2.996 0 0 0-5.5-1.65l-.5.67-.5-.68C10.96 2.54 10.05 2 9 2 7.34 2 6 3.34 6 5c0 .35.07.69.18 1H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zM15 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM9 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm11 15H4v-2h16v2zm0-5H4V8h5.08L7 10.83 8.62 12 11 8.76l1-1.36 1 1.36L15.38 12 17 10.83 14.92 8H20v6z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 6h-2.18c.11-.31.18-.65.18-1a2.996 2.996 0 0 0-5.5-1.65l-.5.67-.5-.68C10.96 2.54 10.05 2 9 2 7.34 2 6 3.34 6 5c0 .35.07.69.18 1H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zM15 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM9 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm11 15H4v-2h16v2zm0-5H4V8h5.08L7 10.83 8.62 12 11 8.76l1-1.36 1 1.36L15.38 12 17 10.83 14.92 8H20v6z'/%3E%3C/svg%3E");
}
.detail-card h3 { font-size: 1.4rem; }
.detail-time {
  font-family: var(--font-accent);
  color: var(--color-terracotta);
  font-weight: 600;
  margin-bottom: 0.6rem;
}
.detail-card p:last-child { color: var(--color-ink-soft); margin-bottom: 0; }

/* The Entourage — interlocking rings */
.entourage-card .detail-icon::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill-rule='evenodd' d='M8,7a5,5 0 1,0 0,10a5,5 0 1,0 0,-10zM8,9a3,3 0 1,1 0,6a3,3 0 1,1 0,-6z'/%3E%3Cpath fill-rule='evenodd' d='M16,7a5,5 0 1,0 0,10a5,5 0 1,0 0,-10zM16,9a3,3 0 1,1 0,6a3,3 0 1,1 0,-6z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill-rule='evenodd' d='M8,7a5,5 0 1,0 0,10a5,5 0 1,0 0,-10zM8,9a3,3 0 1,1 0,6a3,3 0 1,1 0,-6z'/%3E%3Cpath fill-rule='evenodd' d='M16,7a5,5 0 1,0 0,10a5,5 0 1,0 0,-10zM16,9a3,3 0 1,1 0,6a3,3 0 1,1 0,-6z'/%3E%3C/svg%3E");
}

.entourage-card { margin-top: 3.2rem; }

.entourage-columns {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.entourage-couples {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1.8rem;
  justify-items: center;
  max-width: 480px;
  margin: 0 auto;
}
.entourage-couple-name {
  font-size: 0.92rem;
  color: var(--color-ink);
}
.entourage-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.92rem;
  color: var(--color-ink);
}
.entourage-list li { margin: 0.35rem 0; }
.entourage-list--row {
  display: flex;
  justify-content: center;
  gap: 0.4rem 1.2rem;
  flex-wrap: wrap;
}
.entourage-list--tight { font-size: 0.82rem; }
.entourage-name {
  font-family: var(--font-accent);
  font-weight: 600;
  color: var(--color-ink);
  font-size: 0.95rem;
  margin: 0;
}
.entourage-name--tight { font-size: 0.85rem; }

.sponsor-symbol-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  margin-top: 1.2rem;
}
.sponsor-symbol-grid:first-of-type { margin-top: 0; }
.sponsor-symbol {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.sponsor-icon {
  width: 30px;
  height: 30px;
  color: var(--color-terracotta);
}
.role-title-svg-icon {
  width: 1.15em;
  height: 1.15em;
  vertical-align: -0.2em;
  margin-right: 0.4rem;
}

.attire-card {
  margin-top: 3.2rem;
}
.attire-desc {
  color: var(--color-ink-soft);
  font-size: 0.95rem;
  max-width: 480px;
  margin: 0.2rem auto 0;
}

/* Shared palette, front and center */
.attire-palette {
  max-width: 620px;
  margin: 1.8rem auto 0;
  padding-bottom: 1.8rem;
  border-bottom: 1px dashed var(--color-line);
}
.attire-palette-heading {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--color-ink);
  margin-bottom: 1.2rem;
}

/* Swatches */
.swatch-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.1rem 1.5rem;
}
.swatch-grid--hero { gap: 1.3rem 2rem; }
.swatch-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem;
}
.swatch {
  --c: var(--color-beige);
  display: inline-block;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--c);
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-mid), box-shadow var(--transition-mid);
}
.swatch-grid--hero .swatch { width: 40px; height: 40px; }
.swatch-card:hover .swatch {
  transform: scale(1.12);
  box-shadow: 0 0 0 4px rgba(217, 176, 163, 0.3), var(--shadow-soft);
}
.swatch-name {
  font-size: 0.78rem;
  color: var(--color-ink-soft);
  text-align: center;
}
.swatch-grid--hero .swatch-name {
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--color-ink);
}

/* Role cards */
.attire-role-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  text-align: center;
}
.role-card {
  background: var(--color-cream);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-soft);
  padding: 1.6rem 1.5rem;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-mid), box-shadow var(--transition-mid);
}
.role-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}
.role-card--wide { grid-column: 1 / -1; }

.role-title {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--color-terracotta);
  margin-bottom: 1.1rem;
}
.role-title-icon {
  display: inline-block;
  margin-right: 0.4rem;
}
.role-note {
  color: var(--color-ink-soft);
  font-size: 0.85rem;
  margin: -0.4rem 0 1.3rem;
}

.role-body {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  flex-wrap: wrap;
}
.figure-svg {
  flex-shrink: 0;
  height: clamp(80px, 9vw, 120px);
  width: auto;
  display: block;
}
.role-illustration-pair {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  flex-shrink: 0;
}
.role-illustration-pair .figure-svg {
  height: clamp(70px, 8vw, 105px);
}

.palette-family { margin-top: 1.4rem; }
.palette-family:first-of-type { margin-top: 0; }
.family-label {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-ink-soft);
  margin-bottom: 0.8rem;
}
.palette-illustration {
  display: flex;
  justify-content: center;
  margin-bottom: 0.6rem;
}
.figure-svg--sm {
  height: 64px;
  width: auto;
}

.attire-divider { margin: 0 auto 1rem; }

.attire-final-note {
  max-width: 560px;
  margin: 2.4rem auto 0;
  padding: 1rem 1.5rem;
  background: var(--color-cream-deep);
  border: 1px dashed var(--color-dusty-rose);
  border-radius: var(--radius-soft);
  color: var(--color-ink-soft);
  font-size: 0.85rem;
  font-style: italic;
}

.details-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
}
.details-actions .btn { border: 2px solid var(--color-sage-deep); }
.details-actions span[aria-hidden] {
  display: inline-block;
  width: 18px;
  height: 18px;
  font-size: 0;
  position: relative;
  vertical-align: -3px;
}
.details-actions span[aria-hidden]::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: currentColor;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}
/* Map pin */
.details-actions a.btn-secondary span[aria-hidden]::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill-rule='evenodd' d='M12 2C7.6 2 4 5.6 4 10c0 5.6 6.6 11.3 7.4 12a1 1 0 0 0 1.2 0C13.4 21.3 20 15.6 20 10c0-4.4-3.6-8-8-8Zm0 11a3 3 0 1 1 0-6 3 3 0 0 1 0 6Z' clip-rule='evenodd'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill-rule='evenodd' d='M12 2C7.6 2 4 5.6 4 10c0 5.6 6.6 11.3 7.4 12a1 1 0 0 0 1.2 0C13.4 21.3 20 15.6 20 10c0-4.4-3.6-8-8-8Zm0 11a3 3 0 1 1 0-6 3 3 0 0 1 0 6Z' clip-rule='evenodd'/%3E%3C/svg%3E");
}
/* Google Calendar */
#btn-google-cal span[aria-hidden]::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 2a1 1 0 0 1 1 1v1h8V3a1 1 0 1 1 2 0v1h1a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h1V3a1 1 0 0 1 1-1Zm13 8H4v10h16V10Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 2a1 1 0 0 1 1 1v1h8V3a1 1 0 1 1 2 0v1h1a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h1V3a1 1 0 0 1 1-1Zm13 8H4v10h16V10Z'/%3E%3C/svg%3E");
}
/* Apple Calendar — same calendar mark with a small leaf accent */
#btn-apple-cal span[aria-hidden]::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 2a1 1 0 0 1 1 1v1h8V3a1 1 0 1 1 2 0v1h1a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h1V3a1 1 0 0 1 1-1Zm13 8H4v10h16V10Z'/%3E%3Cpath d='M15.5 5.2c.9-.6 2-.5 2 .7 0 1.1-1.3 1.4-2 1.2-.1-.7 0-1.4 0-1.9Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 2a1 1 0 0 1 1 1v1h8V3a1 1 0 1 1 2 0v1h1a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h1V3a1 1 0 0 1 1-1Zm13 8H4v10h16V10Z'/%3E%3Cpath d='M15.5 5.2c.9-.6 2-.5 2 .7 0 1.1-1.3 1.4-2 1.2-.1-.7 0-1.4 0-1.9Z'/%3E%3C/svg%3E");
}

.qr-block {
  position: relative;
  z-index: 6;
  margin-top: 3rem;
  text-align: center;
}
.directions-card {
  position: relative;
  z-index: 6;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 1.5rem 2.4rem;
  background: var(--color-paper);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  text-decoration: none;
  transition: transform var(--transition-mid), box-shadow var(--transition-mid);
}
.directions-card:hover, .directions-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(90, 60, 40, 0.20);
}
.directions-icon { font-size: 2.2rem; line-height: 1; }
.directions-title {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: var(--color-olive);
}
.directions-venue {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--color-ink-soft);
}

/* =========================================================
   RSVP FORM
   ========================================================= */
.rsvp-wrap { position: relative; z-index: 6; max-width: 680px; margin: 0 auto; }
.rsvp-form {
  position: relative;
  z-index: 6;
  overflow: hidden;
  background: var(--color-paper);
  border-radius: var(--radius-soft);
  padding: 2.5rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--color-line);
  background-image: linear-gradient(rgba(255,255,255,0.4), rgba(255,255,255,0.4));
}
.rsvp-form::before {
  content: '';
  position: absolute;
  top: -18px; right: -12px;
  width: 150px; height: 150px;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cellipse cx='12' cy='6.5' rx='3' ry='5.5' fill='%23D9B0A3' fill-opacity='0.55'/%3E%3Cellipse cx='12' cy='6.5' rx='3' ry='5.5' fill='%23D9B0A3' fill-opacity='0.55' transform='rotate(72 12 12)'/%3E%3Cellipse cx='12' cy='6.5' rx='3' ry='5.5' fill='%23D9B0A3' fill-opacity='0.55' transform='rotate(144 12 12)'/%3E%3Cellipse cx='12' cy='6.5' rx='3' ry='5.5' fill='%23D9B0A3' fill-opacity='0.55' transform='rotate(216 12 12)'/%3E%3Cellipse cx='12' cy='6.5' rx='3' ry='5.5' fill='%23D9B0A3' fill-opacity='0.55' transform='rotate(288 12 12)'/%3E%3Ccircle cx='12' cy='12' r='2.4' fill='%23C79A5D' fill-opacity='0.6'/%3E%3C/svg%3E") no-repeat top right / 64px 64px,
    radial-gradient(circle, rgba(199, 154, 93, 0.13), transparent 70%);
  pointer-events: none;
}
.rsvp-form::after {
  content: '';
  position: absolute;
  bottom: -34px; left: -34px;
  width: 170px; height: 170px;
  background: radial-gradient(circle, rgba(167, 184, 154, 0.14), transparent 70%);
  pointer-events: none;
}
.form-row {
  margin-bottom: 1.4rem;
  display: flex;
  flex-direction: column;
  border: none;
  padding: 0;
}
.form-row legend { padding: 0; margin-bottom: 0.5rem; }
.form-row label, .form-row legend {
  font-family: var(--font-accent);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-olive);
  margin-bottom: 0.45rem;
}
.req { color: var(--color-terracotta); }
.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="tel"],
.form-row select,
.form-row textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.75em 1em;
  border: 1.5px solid var(--color-line);
  border-radius: 10px;
  background: var(--color-cream);
  color: var(--color-ink);
  transition: border-color var(--transition-mid), box-shadow var(--transition-mid);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--color-sage-deep);
  box-shadow: 0 0 0 3px rgba(125, 139, 99, 0.25);
}
.form-row input:invalid[data-touched="true"],
.form-row select:invalid[data-touched="true"] {
  border-color: var(--color-terracotta);
}
.form-error {
  color: var(--color-terracotta);
  font-size: 0.82rem;
  margin-top: 0.3rem;
  min-height: 1em;
}
.radio-group { display: flex; gap: 1rem; flex-wrap: wrap; }
.radio-pill {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-body);
  font-weight: normal;
  color: var(--color-ink);
  border: 1.5px solid var(--color-line);
  padding: 0.6em 1.1em;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background var(--transition-mid), border-color var(--transition-mid);
}
.radio-pill:has(input:checked) {
  background: var(--color-sage);
  border-color: var(--color-sage-deep);
  color: var(--color-paper);
}
.radio-pill input { accent-color: var(--color-terracotta); }

.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

.rsvp-submit {
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
  position: relative;
}
.btn-spinner {
  display: inline-block;
  visibility: hidden;
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,0.5);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
.rsvp-submit.is-loading .btn-text { opacity: 0.6; }
.rsvp-submit.is-loading .btn-spinner { visibility: visible; }
@keyframes spin { to { transform: rotate(360deg); } }
.form-note { text-align: center; font-size: 0.82rem; color: var(--color-ink-soft); margin: 0.8rem 0 0; }
.form-note-inline { text-align: left; margin: 0.35rem 0 0; }

/* Thank-you card */
.thankyou-card {
  position: absolute;
  inset: 0;
  z-index: 7;
  background: var(--color-paper);
  border-radius: var(--radius-soft);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--color-line);
  padding: 3rem 2.5rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: card-pop 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes card-pop {
  from { opacity: 0; transform: scale(0.94) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.thankyou-close {
  position: absolute;
  top: 14px; right: 14px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--color-ink-soft);
  line-height: 1;
}
.thankyou-inner { max-width: 420px; }
.thankyou-seal { font-size: 2.6rem; margin-bottom: 0.5rem; }
.thankyou-script {
  font-family: var(--font-script);
  font-style: normal;
  color: var(--color-dusty-rose-deep);
  font-size: 1.6rem;
  margin-bottom: 0.2rem;
}
.thankyou-inner h3 { font-size: 1.9rem; }
.thankyou-inner p { color: var(--color-ink-soft); }
.thankyou-sign {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--color-olive);
  margin: 1.2rem 0 1.6rem;
}

.toast {
  position: fixed;
  left: 50%;
  top: 1.5rem;
  transform: translate(-50%, -0.6rem);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--color-olive);
  color: var(--warm-white);
  font-family: var(--font-accent);
  font-size: 0.92rem;
  padding: 0.85rem 1.4rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-mid), transform var(--transition-mid);
  z-index: 999;
}
.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* =========================================================
   GALLERY
   ========================================================= */
.masonry-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.75rem;
}
.gallery-item {
  flex: 0 1 300px;
  max-width: 340px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  position: relative;
  cursor: pointer;
  border: 1px solid var(--color-line);
  padding: 12px 12px 28px;
  display: block;
  background: var(--color-paper);
  transform: rotate(var(--tilt, 0deg));
  transition: transform var(--transition-mid), box-shadow var(--transition-mid);
}
.gallery-item:nth-of-type(3n+1) { --tilt: -2deg; }
.gallery-item:nth-of-type(3n+2) { --tilt: 1.5deg; }
.gallery-item:nth-of-type(3n+3) { --tilt: -1deg; }
.gallery-item:hover, .gallery-item:focus-visible {
  transform: rotate(0deg) translateY(-3px);
  box-shadow: 0 14px 28px rgba(75, 58, 42, 0.16);
}
@media (max-width: 700px) {
  .gallery-item { flex: 0 1 45%; padding: 8px 8px 20px; }
}
@media (prefers-reduced-motion: reduce) {
  .gallery-item { transform: none !important; transition: none; }
}
.gallery-item img {
  width: 100%;
  display: block;
  border-radius: 2px;
  box-shadow: inset 0 0 0 1px var(--color-line);
  transition: transform 0.5s ease;
}
.gallery-item:hover img, .gallery-item:focus-visible img { transform: scale(1.05); }
.gallery-item .gallery-caption {
  position: absolute;
  inset: auto 0 4px 0;
  text-align: center;
  color: var(--color-ink-soft);
  font-family: var(--font-script);
  font-size: 1.15rem;
  line-height: 1;
  padding: 0 0.6rem;
}

.gallery-placeholder {
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.9);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  text-align: center;
  padding: 1rem;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(28, 22, 16, 0.92);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
}
.lightbox-image {
  max-width: min(90vw, 820px);
  max-height: 74vh;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  animation: lightbox-in 0.35s ease;
}
@keyframes lightbox-in {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}
.lightbox-caption { color: #f2ead9; font-family: var(--font-accent); font-size: 0.9rem; }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  border-radius: 50%;
  width: 46px; height: 46px;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-close { top: 20px; right: 20px; }
.lightbox-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.25); }

/* =========================================================
   FAQ ACCORDION
   ========================================================= */
.accordion { max-width: 720px; margin: 0 auto; }
.accordion-item {
  border-bottom: 1px solid var(--color-line);
}
.accordion-trigger {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.3rem 0.2rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--color-ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.accordion-trigger::after {
  content: '+';
  font-size: 1.6rem;
  color: var(--color-terracotta);
  transition: transform var(--transition-mid);
  flex: none;
}
.accordion-trigger[aria-expanded="true"]::after { transform: rotate(45deg); }
.accordion-panel {
  overflow: hidden;
  padding: 0 0.2rem 1.4rem;
  color: var(--color-ink-soft);
}
.accordion-panel p:last-child { margin-bottom: 0; }

/* =========================================================
   GUESTBOOK
   ========================================================= */
.guestbook-form {
  position: relative;
  z-index: 6;
  max-width: 560px;
  margin: 0 auto 3rem;
  background: var(--color-paper);
  padding: 2rem;
  border-radius: var(--radius-soft);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-line);
}
.guestbook-form label {
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--color-olive);
  display: block;
  margin-bottom: 0.4rem;
}
.guestbook-form input, .guestbook-form textarea {
  width: 100%;
  font-family: var(--font-body);
  padding: 0.7em 1em;
  border: 1.5px solid var(--color-line);
  border-radius: 10px;
  background: var(--color-cream);
  margin-bottom: 1rem;
}
.guestbook-list {
  position: relative;
  z-index: 6;
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}
.guestbook-list li {
  position: relative;
  z-index: 6;
  background: var(--color-paper);
  border: 1px solid var(--color-line);
  border-left: 4px solid var(--color-dusty-rose);
  border-radius: 10px;
  padding: 1.1rem 1.4rem;
}
.guestbook-list .gb-name {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--color-olive);
  margin-right: 0.4em;
}
.guestbook-list .gb-date {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  color: var(--color-ink-soft);
}
.guestbook-empty { text-align: center; color: var(--color-ink-soft); font-style: italic; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  text-align: center;
  padding: 4rem 1.5rem 2.5rem;
  background: var(--color-olive);
  color: var(--color-cream-deep);
}
.site-footer::before {
  content: '';
  display: block;
  width: 34px;
  height: 34px;
  margin: 0 auto 1rem;
  background-color: var(--antique-gold);
  opacity: 0.9;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cellipse cx='12' cy='6.5' rx='3' ry='5.5'/%3E%3Cellipse cx='12' cy='6.5' rx='3' ry='5.5' transform='rotate(72 12 12)'/%3E%3Cellipse cx='12' cy='6.5' rx='3' ry='5.5' transform='rotate(144 12 12)'/%3E%3Cellipse cx='12' cy='6.5' rx='3' ry='5.5' transform='rotate(216 12 12)'/%3E%3Cellipse cx='12' cy='6.5' rx='3' ry='5.5' transform='rotate(288 12 12)'/%3E%3Ccircle cx='12' cy='12' r='2.4'/%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cellipse cx='12' cy='6.5' rx='3' ry='5.5'/%3E%3Cellipse cx='12' cy='6.5' rx='3' ry='5.5' transform='rotate(72 12 12)'/%3E%3Cellipse cx='12' cy='6.5' rx='3' ry='5.5' transform='rotate(144 12 12)'/%3E%3Cellipse cx='12' cy='6.5' rx='3' ry='5.5' transform='rotate(216 12 12)'/%3E%3Cellipse cx='12' cy='6.5' rx='3' ry='5.5' transform='rotate(288 12 12)'/%3E%3Ccircle cx='12' cy='12' r='2.4'/%3E%3C/svg%3E") no-repeat center / contain;
}
.footer-monogram {
  font-family: var(--font-display);
  font-size: 2.2rem;
  margin-bottom: 0.6rem;
}
.footer-monogram .amp { color: var(--color-honey); font-style: italic; }
.site-footer p { margin-bottom: 0.3rem; opacity: 0.9; }
.footer-note { font-style: normal; font-family: var(--font-script); font-size: 1.5rem; }

.music-player {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin: 1.5rem 0;
  background: rgba(255,255,255,0.1);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
}
.music-toggle {
  background: var(--color-honey);
  color: var(--brown-deep);
  border: none;
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: transform var(--transition-mid);
}
.music-toggle:hover { transform: scale(1.08); }
.music-toggle[aria-pressed="true"] .music-icon::before { content: '\275A\275A'; }
.music-label { font-family: var(--font-accent); font-size: 0.85rem; }
.footer-copy { font-size: 0.78rem; opacity: 0.7; margin-top: 1rem; }

/* =========================================================
   RESPONSIVE TWEAKS
   ========================================================= */
@media (max-width: 640px) {
  .attire-role-grid { grid-template-columns: 1fr; }
  .role-card { padding: 1.4rem 1.1rem; }
  .role-body { flex-direction: column; }
  .entourage-columns { flex-direction: column; gap: 0.6rem; align-items: center; }
  .entourage-couples { grid-template-columns: 1fr; gap: 0.35rem; }
  .sponsor-symbol-grid { grid-template-columns: 1fr; gap: 1.2rem; }
}

@media (max-width: 600px) {
  .section { padding: 4rem 1.2rem; }
  .rsvp-form { padding: 1.6rem; }
  .details-actions { flex-direction: column; align-items: stretch; }
  .details-actions .btn { justify-content: center; }
  .countdown { gap: 0.7rem; }
  .countdown-item { min-width: 64px; padding: 0.7rem 0.6rem; }
  .countdown-number { font-size: 1.6rem; }
}

/* Print styles for downloadable confirmation */
@media print {
  .site-header, .site-footer, .petals-container, .butterflies-container,
  #loading-screen, .nav-toggle { display: none !important; }
}
