:root {
  --color-primary: #9d6376;
  --color-secondary: #d9e1c3;
  --color-accent: #c8a96a;
  --color-background: #fff8f6;
  --color-text: #3d2630;
  --font-serif: "Georgia", "Times New Roman", serif;
  --font-sans: "Helvetica Neue", Arial, sans-serif;
}

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

/* —— Romantic Floral (mockup etapa-17) —— */
body.theme-romantic-floral {
  --rf-paper: #fffdf9;
  --rf-paper-soft: #fff1f3;
  --rf-primary-dark: color-mix(in srgb, var(--color-primary) 72%, #2a1520);
  --rf-secondary-dark: color-mix(in srgb, var(--color-secondary) 35%, #3d4a2e);
  --rf-muted: #7a6870;
  --rf-shadow: 0 24px 80px rgba(95, 55, 70, .13);
  --rf-radius-xl: 42px;
  --rf-radius-lg: 28px;
  --font-serif: Georgia, "Times New Roman", serif;
  --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
  margin: 0;
  color: var(--color-text);
  font-family: var(--font-sans);
  background:
    radial-gradient(circle at 12% 9%, color-mix(in srgb, var(--color-primary) 28%, transparent), transparent 24rem),
    radial-gradient(circle at 92% 20%, color-mix(in srgb, var(--color-secondary) 48%, transparent), transparent 26rem),
    linear-gradient(135deg, #fffaf8 0%, #fff3f5 42%, #fbf7ed 100%);
  overflow-x: hidden;
  overflow-x: clip;
  max-width: 100%;
}
body.theme-romantic-floral::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .34;
  background-image:
    linear-gradient(color-mix(in srgb, var(--color-primary) 4.5%, transparent) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in srgb, var(--color-primary) 3.5%, transparent) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
  z-index: -1;
}
html:has(body.theme-romantic-floral) {
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-x: clip;
}
body.theme-romantic-floral img { max-width: 100%; display: block; }
body.theme-romantic-floral a { color: inherit; text-decoration: none; }
body.theme-romantic-floral button,
body.theme-romantic-floral input,
body.theme-romantic-floral select,
body.theme-romantic-floral textarea { font: inherit; }
body.theme-romantic-floral main {
  max-width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: clip;
}
body.theme-romantic-floral .skip-link {
  position: absolute; left: -999px; top: 12px; z-index: 20;
  background: var(--rf-primary-dark); color: white; padding: 12px 18px; border-radius: 999px;
}
body.theme-romantic-floral .skip-link:focus { left: 12px; }

body.theme-romantic-floral .site-header {
  width: min(1180px, calc(100% - 32px));
  max-width: calc(100% - 32px);
  margin: 18px auto 0;
  padding: 12px 14px 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid color-mix(in srgb, var(--color-accent) 32%, transparent);
  border-radius: 999px;
  background: rgba(255, 253, 249, .78);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 44px rgba(93, 62, 74, .08);
  position: sticky;
  top: 12px;
  z-index: 10;
  box-sizing: border-box;
}
body.theme-romantic-floral .brand-mark {
  height: 46px;
  min-width: 72px;
  width: auto;
  padding: 0 14px;
  flex-shrink: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.15em;
  font: 700 15px/1 var(--font-serif);
  letter-spacing: 0.02em;
  color: var(--rf-primary-dark);
  background: linear-gradient(135deg, #fff, #fae4ea);
  border: 1px solid color-mix(in srgb, var(--color-accent) 35%, transparent);
}
body.theme-romantic-floral .brand-mark span {
  color: var(--color-accent);
  font-style: italic;
  font-weight: 700;
}
body.theme-romantic-floral .site-header nav {
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap; justify-content: flex-end;
  min-width: 0;
}
body.theme-romantic-floral .site-header a {
  font-size: 14px; color: #624c55; padding: 10px 12px; border-radius: 999px;
}
body.theme-romantic-floral .site-header a:hover,
body.theme-romantic-floral .site-header a:focus-visible {
  background: #fff0f3; color: var(--rf-primary-dark);
}
body.theme-romantic-floral .nav-cta {
  color: white !important;
  background: var(--color-primary);
  box-shadow: 0 10px 28px color-mix(in srgb, var(--color-primary) 22%, transparent);
  white-space: nowrap;
}

body.theme-romantic-floral .section {
  width: min(1180px, calc(100% - 32px));
  max-width: calc(100% - 32px);
  margin: 0 auto;
  padding: 82px 0;
  position: relative;
  border-bottom: 0;
  box-sizing: border-box;
  overflow-x: clip;
}
body.theme-romantic-floral .hero {
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(0, .86fr);
  gap: 56px;
  align-items: center;
  padding-top: 74px;
  overflow: clip;
}
body.theme-romantic-floral .hero::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 35px;
  width: min(520px, 90%); height: 110px;
  transform: translateX(-50%);
  background: url("assets/romantic-floral/bouquet-line.svg") center / contain no-repeat;
  opacity: .72; pointer-events: none;
}
body.theme-romantic-floral .hero-ornament {
  position: absolute; width: 260px; height: 260px;
  background: url("assets/romantic-floral/floral-corner.svg") center / contain no-repeat;
  opacity: .64; pointer-events: none;
  filter: drop-shadow(0 18px 28px rgba(103, 65, 72, .06));
}
body.theme-romantic-floral .hero-ornament-left { left: -94px; top: 46px; transform: rotate(-5deg); }
body.theme-romantic-floral .hero-ornament-right {
  right: -112px; bottom: 120px; transform: scaleX(-1) rotate(12deg); opacity: .56;
}
body.theme-romantic-floral .reveal-card {
  position: relative;
  padding: clamp(34px, 5vw, 72px);
  border-radius: var(--rf-radius-xl);
  background: linear-gradient(135deg, rgba(255, 253, 249, .9), rgba(255, 244, 247, .78));
  border: 1px solid color-mix(in srgb, var(--color-accent) 28%, transparent);
  box-shadow: var(--rf-shadow);
  overflow: hidden;
}
body.theme-romantic-floral .reveal-card::before,
body.theme-romantic-floral .rsvp-card::before,
body.theme-romantic-floral .paper-card::before,
body.theme-romantic-floral .gift-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid color-mix(in srgb, var(--color-accent) 34%, transparent);
  border-radius: calc(var(--rf-radius-xl) - 14px);
  pointer-events: none;
}
body.theme-romantic-floral .eyebrow {
  margin: 0 0 12px;
  font-size: 12px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 800;
}
body.theme-romantic-floral h1,
body.theme-romantic-floral h2,
body.theme-romantic-floral h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: -.035em;
  color: var(--color-text);
}
body.theme-romantic-floral h1 {
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  line-height: .92;
  max-width: 730px;
}
body.theme-romantic-floral h2 { font-size: clamp(2.25rem, 5vw, 4.65rem); line-height: .96; }
body.theme-romantic-floral h3 { font-size: 1.42rem; }
body.theme-romantic-floral p { line-height: 1.72; }
body.theme-romantic-floral .floral-divider {
  width: 300px; height: 56px; margin: 24px 0 18px;
  background: url("assets/romantic-floral/bouquet-line.svg") left center / contain no-repeat;
}
body.theme-romantic-floral .hero-date {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 10px 18px; margin: 0;
  border-radius: 999px;
  color: var(--rf-primary-dark);
  background: rgba(255, 255, 255, .72);
  border: 1px solid color-mix(in srgb, var(--color-accent) 42%, transparent);
  font-weight: 800; letter-spacing: .04em;
}
body.theme-romantic-floral .hero-place {
  color: var(--rf-secondary-dark); font-weight: 800; margin: 12px 0 0;
}
body.theme-romantic-floral .hero-intro {
  max-width: 620px; color: var(--rf-muted); font-size: 1.08rem; margin-top: 18px;
}
body.theme-romantic-floral .hero-actions {
  display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px;
}
body.theme-romantic-floral .button,
body.theme-romantic-floral .btn {
  min-height: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 22px; border: 0; border-radius: 999px;
  font-weight: 800; cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  text-decoration: none;
}
body.theme-romantic-floral .button:hover,
body.theme-romantic-floral .btn:hover { transform: translateY(-2px); }
body.theme-romantic-floral .button-primary,
body.theme-romantic-floral .btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--color-primary), var(--rf-primary-dark));
  box-shadow: 0 18px 42px color-mix(in srgb, var(--color-primary) 24%, transparent);
}
body.theme-romantic-floral .button-soft,
body.theme-romantic-floral .btn-secondary {
  color: var(--rf-primary-dark);
  background: #fff;
  border: 1px solid color-mix(in srgb, var(--color-accent) 38%, transparent);
  box-shadow: 0 12px 32px rgba(93, 62, 74, .08);
}
body.theme-romantic-floral .hero-portrait { margin: 0; position: relative; }
body.theme-romantic-floral .hero-portrait img,
body.theme-romantic-floral .hero-portrait .image-placeholder {
  width: min(100%, 520px); margin-left: auto;
  border-radius: 46% 46% 48% 48%;
  filter: drop-shadow(0 30px 70px rgba(91, 58, 70, .2));
}
body.theme-romantic-floral .hero-portrait .image-placeholder {
  min-height: 28rem;
  display: grid; place-items: center;
  background: linear-gradient(160deg, #fae4ea, #fff8f6 55%, #e8efd8);
  color: var(--rf-primary-dark); font-weight: 700; text-align: center; padding: 2rem;
}
body.theme-romantic-floral .hero-portrait figcaption {
  width: min(340px, 80%); margin: -18px auto 0; position: relative;
  padding: 14px 20px; border-radius: 999px;
  background: rgba(255, 253, 249, .86);
  border: 1px solid color-mix(in srgb, var(--color-accent) 35%, transparent);
  color: var(--rf-primary-dark); text-align: center; font-weight: 700;
  box-shadow: 0 14px 36px rgba(90, 58, 70, .1);
}

body.theme-romantic-floral .quick-info {
  width: min(1080px, calc(100% - 32px));
  margin: -28px auto 32px;
  position: relative; z-index: 3;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
body.theme-romantic-floral .quick-info article {
  padding: 26px; border-radius: 30px;
  background: rgba(255, 253, 249, .88);
  border: 1px solid color-mix(in srgb, var(--color-accent) 28%, transparent);
  box-shadow: 0 16px 52px rgba(83, 52, 64, .09);
}
body.theme-romantic-floral .quick-info span {
  display: block; color: var(--color-primary); font-size: 12px; font-weight: 900;
  text-transform: uppercase; letter-spacing: .18em; margin-bottom: 8px;
}
body.theme-romantic-floral .quick-info strong {
  display: block; font-family: var(--font-serif); font-size: 1.5rem; font-weight: 500;
}
body.theme-romantic-floral .quick-info p { margin: 8px 0 0; color: var(--rf-muted); }

body.theme-romantic-floral .section-heading { margin-bottom: 38px; }
body.theme-romantic-floral .centered { text-align: center; max-width: 760px; margin-left: auto; margin-right: auto; }
body.theme-romantic-floral .split-heading {
  display: grid; grid-template-columns: 1fr minmax(260px, 420px); gap: 24px; align-items: end;
}
body.theme-romantic-floral .split-heading > p { margin: 0; color: var(--rf-muted); }
body.theme-romantic-floral .story-grid,
body.theme-romantic-floral .location {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, .8fr);
  gap: 34px; align-items: center;
  min-width: 0;
}
body.theme-romantic-floral .paper-card,
body.theme-romantic-floral .gift-card,
body.theme-romantic-floral .rsvp-card {
  position: relative;
  background: rgba(255,253,249,.9);
  border: 1px solid color-mix(in srgb, var(--color-accent) 28%, transparent);
  box-shadow: var(--rf-shadow);
}
body.theme-romantic-floral .story-card {
  padding: clamp(32px, 5vw, 62px);
  border-radius: var(--rf-radius-xl);
  overflow: hidden;
}
body.theme-romantic-floral .story-card::after {
  content: "";
  position: absolute; right: -48px; top: -52px; width: 190px; height: 190px;
  background: url("assets/romantic-floral/floral-corner.svg") center / contain no-repeat;
  transform: rotate(95deg); opacity: .4;
}
body.theme-romantic-floral blockquote {
  margin: 34px 0; padding: 26px 28px;
  border-left: 4px solid var(--color-accent);
  border-radius: 0 26px 26px 0;
  color: var(--rf-primary-dark);
  background: rgba(255, 241, 243, .7);
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.26;
}
body.theme-romantic-floral .polaroid-card {
  margin: 0; padding: 16px 16px 28px; border-radius: 34px;
  background: #fffdf9;
  box-shadow: 0 22px 62px rgba(91,58,70,.14);
  transform: rotate(2.2deg);
  border: 1px solid color-mix(in srgb, var(--color-accent) 28%, transparent);
  max-width: 100%;
  min-width: 0;
}
body.theme-romantic-floral .polaroid-card img,
body.theme-romantic-floral .polaroid-card .image-placeholder {
  border-radius: 24px; min-height: 18rem;
}
body.theme-romantic-floral .polaroid-card .image-placeholder {
  display: grid; place-items: center;
  background: linear-gradient(160deg, #fff1f3, #f7f3e8);
  color: var(--rf-muted); padding: 1.5rem; text-align: center;
}
body.theme-romantic-floral .polaroid-card figcaption {
  margin-top: 14px; text-align: center;
  font-family: var(--font-serif); color: var(--rf-primary-dark); font-size: 1.2rem;
}

body.theme-romantic-floral .gallery-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr .75fr;
  grid-auto-rows: 260px; gap: 18px;
}
body.theme-romantic-floral .gallery-grid figure,
body.theme-romantic-floral .gallery-item,
body.theme-romantic-floral .gallery-feature {
  margin: 0; position: relative; overflow: hidden; border-radius: 32px;
  box-shadow: 0 20px 56px rgba(84, 54, 64, .12);
  border: 1px solid rgba(255,255,255,.8);
}
body.theme-romantic-floral .gallery-grid img,
body.theme-romantic-floral .gallery-grid .image-placeholder {
  width: 100%; height: 100%; object-fit: cover; min-height: 100%;
}
body.theme-romantic-floral .gallery-grid .image-placeholder {
  display: grid; place-items: center;
  background: linear-gradient(145deg, #fae4ea, #eef3e2);
  color: var(--rf-primary-dark); font-weight: 700; padding: 1rem; text-align: center;
}
body.theme-romantic-floral .gallery-feature { grid-row: span 2; }
body.theme-romantic-floral .gallery-grid figcaption {
  position: absolute; left: 16px; bottom: 16px;
  padding: 8px 14px; border-radius: 999px;
  color: var(--rf-primary-dark);
  background: rgba(255, 253, 249, .82);
  backdrop-filter: blur(8px); font-weight: 800;
}

body.theme-romantic-floral .program { width: min(1040px, calc(100% - 32px)); max-width: calc(100% - 32px); }
body.theme-romantic-floral .timeline { position: relative; display: grid; gap: 22px; overflow-x: clip; }
body.theme-romantic-floral .timeline::before {
  content: "";
  position: absolute; left: 50%; top: 18px; bottom: 18px; width: 1px;
  background: linear-gradient(var(--color-accent), color-mix(in srgb, var(--color-accent) 16%, transparent));
}
body.theme-romantic-floral .timeline-item {
  width: calc(50% - 32px); padding: 24px; border-radius: 30px;
  background: rgba(255,253,249,.88);
  border: 1px solid color-mix(in srgb, var(--color-accent) 26%, transparent);
  box-shadow: 0 16px 46px rgba(84, 54, 64, .09);
  position: relative;
}
body.theme-romantic-floral .timeline-item:nth-child(even) { margin-left: calc(50% + 32px); }
body.theme-romantic-floral .timeline-item::after {
  content: "";
  position: absolute; top: 28px; width: 18px; height: 18px; border-radius: 50%;
  background: var(--color-primary);
  border: 4px solid #fff8f6;
  box-shadow: 0 0 0 1px var(--color-accent);
}
body.theme-romantic-floral .timeline-item:nth-child(odd)::after { right: -43px; }
body.theme-romantic-floral .timeline-item:nth-child(even)::after { left: -43px; }
body.theme-romantic-floral .timeline-item time {
  display: inline-flex; margin-bottom: 12px; padding: 8px 13px; border-radius: 999px;
  color: var(--rf-primary-dark); background: #fff0f4;
  border: 1px solid color-mix(in srgb, var(--color-accent) 34%, transparent);
  font-weight: 900;
}
body.theme-romantic-floral .timeline-item p { margin-bottom: 0; color: var(--rf-muted); }

body.theme-romantic-floral .location { padding-top: 60px; }
body.theme-romantic-floral .location-copy {
  padding: 36px; border-radius: var(--rf-radius-xl);
  background: rgba(255,253,249,.74);
  border: 1px solid color-mix(in srgb, var(--color-accent) 22%, transparent);
}
body.theme-romantic-floral .location-copy .venue-title {
  font-family: var(--font-serif); font-size: 1.35rem; margin: 0 0 1rem;
  color: var(--rf-primary-dark);
}
body.theme-romantic-floral .soft-list {
  padding: 0; margin: 24px 0 28px; list-style: none; display: grid; gap: 12px;
}
body.theme-romantic-floral .soft-list li {
  position: relative; padding-left: 28px; color: var(--rf-muted);
}
body.theme-romantic-floral .soft-list li::before {
  content: "✽"; position: absolute; left: 0; top: -1px; color: var(--color-primary);
}
body.theme-romantic-floral .map-card {
  margin: 0; padding: 14px; border-radius: 42px; background: #fff;
  box-shadow: var(--rf-shadow); transform: rotate(-1.5deg);
  max-width: 100%;
  min-width: 0;
}
body.theme-romantic-floral .map-card img,
body.theme-romantic-floral .map-card .image-placeholder,
body.theme-romantic-floral .map-card .map-embed {
  border-radius: 30px; width: 100%; min-height: 22rem; border: 0; display: block;
}
body.theme-romantic-floral .map-card .image-placeholder {
  display: grid; place-items: center;
  background: linear-gradient(160deg, #eef3e2, #fff1f3);
  color: var(--rf-muted); font-weight: 700;
}

body.theme-romantic-floral .info-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
body.theme-romantic-floral .info-grid article {
  padding: 26px; border-radius: 30px;
  background: rgba(255, 253, 249, .78);
  border: 1px solid color-mix(in srgb, var(--color-accent) 25%, transparent);
  box-shadow: 0 14px 42px rgba(84,54,64,.08);
}
body.theme-romantic-floral .info-grid h3 { color: var(--rf-primary-dark); }
body.theme-romantic-floral .info-grid p { color: var(--rf-muted); margin-bottom: 0; }

body.theme-romantic-floral .rsvp { width: min(960px, calc(100% - 32px)); max-width: calc(100% - 32px); }
body.theme-romantic-floral .rsvp-card {
  padding: clamp(34px, 6vw, 72px);
  border-radius: var(--rf-radius-xl);
  text-align: center; overflow: hidden;
  background: linear-gradient(135deg, rgba(255,253,249,.96), rgba(250,226,233,.92));
}
body.theme-romantic-floral .rsvp-flowers {
  position: absolute; left: -62px; bottom: -62px; width: 230px; height: 230px;
  background: url("assets/romantic-floral/floral-corner.svg") center / contain no-repeat;
  opacity: .42; transform: rotate(-18deg);
}
body.theme-romantic-floral .rsvp-card > p {
  max-width: 660px; margin-left: auto; margin-right: auto; color: var(--rf-muted);
}
body.theme-romantic-floral .rsvp-form {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  margin-top: 30px; text-align: left; position: relative; z-index: 1;
}
body.theme-romantic-floral .rsvp-form label {
  display: block; font-weight: 800; color: var(--rf-primary-dark); margin-top: 0;
}
body.theme-romantic-floral .rsvp-form .rsvp-attending,
body.theme-romantic-floral .rsvp-form label[for="rsvp-note"],
body.theme-romantic-floral .rsvp-form #rsvp-note,
body.theme-romantic-floral .rsvp-form button,
body.theme-romantic-floral .rsvp-form .rsvp-form-status {
  grid-column: 1 / -1;
}
body.theme-romantic-floral .rsvp-form input,
body.theme-romantic-floral .rsvp-form textarea {
  width: 100%; max-width: none; margin-top: 8px;
  border: 1px solid color-mix(in srgb, var(--color-primary) 22%, transparent);
  background: rgba(255,255,255,.82);
  border-radius: 20px; padding: 14px 16px; color: var(--color-text); outline: none;
}
body.theme-romantic-floral .rsvp-form textarea { min-height: 104px; resize: vertical; }
body.theme-romantic-floral .rsvp-form input:focus,
body.theme-romantic-floral .rsvp-form textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--color-primary) 12%, transparent);
}
body.theme-romantic-floral .rsvp-form .rsvp-attending {
  max-width: none; margin: 0;
}
body.theme-romantic-floral .rsvp-form .rsvp-attending legend {
  font-weight: 800; color: var(--rf-primary-dark);
}
body.theme-romantic-floral .rsvp-form .rsvp-attending-options { gap: 12px; }
body.theme-romantic-floral .rsvp-form .rsvp-attending-option {
  border-radius: 20px;
  border: 1px solid color-mix(in srgb, var(--color-accent) 38%, transparent);
  background: rgba(255,255,255,.82);
  font-weight: 700;
  color: var(--rf-primary-dark);
  padding: 14px 16px;
}
body.theme-romantic-floral .rsvp-form .rsvp-attending-option:has(input:checked) {
  border-color: var(--color-primary);
  background: linear-gradient(135deg, #fff, #fae4ea);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--color-primary) 12%, transparent);
}
body.theme-romantic-floral .rsvp-form .rsvp-attending-option input {
  margin-top: 0;
  accent-color: var(--color-primary);
}
body.theme-romantic-floral .rsvp-form button { justify-self: stretch; margin-top: .6rem; }
body.theme-romantic-floral .rsvp-form-status {
  margin: 0; padding: 10px 14px; border-radius: 16px;
  background: #eef6ea; color: #2f5a34; font-weight: 700;
}
body.theme-romantic-floral .rsvp-form-status--error {
  background: #fde8ea; color: #7a2430;
}

body.theme-romantic-floral .gifts { width: min(880px, calc(100% - 32px)); max-width: calc(100% - 32px); text-align: center; }
body.theme-romantic-floral .gift-card {
  padding: clamp(34px, 5vw, 64px);
  border-radius: var(--rf-radius-xl);
  background: rgba(255,253,249,.88); overflow: hidden;
}
body.theme-romantic-floral .gift-card::after {
  content: "";
  position: absolute; right: -48px; top: -54px; width: 170px; height: 170px;
  background: url("assets/romantic-floral/floral-corner.svg") center / contain no-repeat;
  opacity: .35; transform: scaleX(-1) rotate(25deg);
}
body.theme-romantic-floral .gift-card p {
  color: var(--rf-muted); max-width: 610px; margin-left: auto; margin-right: auto;
}

body.theme-romantic-floral .footer {
  width: min(1020px, calc(100% - 32px));
  max-width: calc(100% - 32px);
  margin: 28px auto 0; padding: 70px 0 56px; text-align: center;
  overflow-x: clip;
}
body.theme-romantic-floral .footer-bouquet {
  width: min(440px, 80%); height: 72px; margin: 0 auto 18px;
  background: url("assets/romantic-floral/bouquet-line.svg") center / contain no-repeat;
  opacity: .9;
}
body.theme-romantic-floral .footer h2 { font-size: clamp(2.7rem, 7vw, 6rem); }
body.theme-romantic-floral .footer p { color: var(--rf-muted); margin: 8px 0; }
body.theme-romantic-floral .design-block-placeholder {
  margin: 0; padding: 1.5rem; text-align: center; color: var(--rf-muted);
}

@media (max-width: 980px) {
  body.theme-romantic-floral .hero,
  body.theme-romantic-floral .story-grid,
  body.theme-romantic-floral .location,
  body.theme-romantic-floral .split-heading { grid-template-columns: minmax(0, 1fr); }
  body.theme-romantic-floral .hero { gap: 28px; min-height: auto; }
  body.theme-romantic-floral .hero-ornament-left { left: -40px; }
  body.theme-romantic-floral .hero-ornament-right { right: -48px; bottom: 40px; }
  body.theme-romantic-floral .hero-portrait img,
  body.theme-romantic-floral .hero-portrait .image-placeholder { margin: 0 auto; max-width: min(460px, 100%); }
  body.theme-romantic-floral .quick-info,
  body.theme-romantic-floral .info-grid { grid-template-columns: minmax(0, 1fr); }
  body.theme-romantic-floral .gallery-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  body.theme-romantic-floral .gallery-feature { grid-column: 1 / -1; grid-row: auto; }
  body.theme-romantic-floral .timeline::before { left: 14px; }
  body.theme-romantic-floral .timeline-item,
  body.theme-romantic-floral .timeline-item:nth-child(even) {
    width: auto; max-width: 100%; margin-left: 42px; box-sizing: border-box;
  }
  body.theme-romantic-floral .timeline-item:nth-child(odd)::after,
  body.theme-romantic-floral .timeline-item:nth-child(even)::after { left: -37px; right: auto; }
  body.theme-romantic-floral .polaroid-card,
  body.theme-romantic-floral .map-card { transform: none; }
}

@media (max-width: 680px) {
  body.theme-romantic-floral .site-header {
    align-items: center;
    flex-direction: row;
    border-radius: 999px;
    padding: 8px 8px 8px 12px;
    gap: 8px;
  }
  body.theme-romantic-floral .site-header nav {
    justify-content: flex-end;
    flex-wrap: nowrap;
  }
  body.theme-romantic-floral .site-header .nav-link { display: none; }
  body.theme-romantic-floral .site-header .nav-cta {
    padding: 10px 14px;
    font-size: 13px;
  }
  body.theme-romantic-floral .brand-mark {
    height: 40px; min-width: 64px; padding: 0 12px; font-size: 13px;
  }
  body.theme-romantic-floral .section { padding: 56px 0; }
  body.theme-romantic-floral .hero { padding-top: 44px; }
  body.theme-romantic-floral .hero-ornament { display: none; }
  body.theme-romantic-floral .hero::after {
    width: min(280px, 70%);
    height: 64px;
    bottom: 12px;
  }
  body.theme-romantic-floral h1 {
    font-size: clamp(2.4rem, 12vw, 3.6rem);
    max-width: 100%;
    overflow-wrap: anywhere;
  }
  body.theme-romantic-floral h2 {
    font-size: clamp(1.85rem, 8vw, 2.8rem);
    overflow-wrap: anywhere;
  }
  body.theme-romantic-floral .reveal-card { padding: 30px 24px; }
  body.theme-romantic-floral .reveal-card::before,
  body.theme-romantic-floral .rsvp-card::before,
  body.theme-romantic-floral .paper-card::before,
  body.theme-romantic-floral .gift-card::before { inset: 9px; }
  body.theme-romantic-floral .floral-divider { width: min(230px, 100%); max-width: 100%; }
  body.theme-romantic-floral .quick-info { margin-top: 0; width: min(1080px, calc(100% - 32px)); }
  body.theme-romantic-floral .gallery-grid {
    grid-template-columns: minmax(0, 1fr);
    grid-auto-rows: 240px;
  }
  body.theme-romantic-floral .story-card::after,
  body.theme-romantic-floral .gift-card::after,
  body.theme-romantic-floral .rsvp-flowers { display: none; }
  body.theme-romantic-floral .location-copy { padding: 24px; }
  body.theme-romantic-floral .rsvp-card { padding: 28px 20px; }
  body.theme-romantic-floral .rsvp-form { grid-template-columns: minmax(0, 1fr); }
  body.theme-romantic-floral .rsvp-form .rsvp-attending-options { grid-template-columns: minmax(0, 1fr); }
  body.theme-romantic-floral .rsvp-form input,
  body.theme-romantic-floral .rsvp-form textarea {
    max-width: 100%;
    box-sizing: border-box;
  }
  body.theme-romantic-floral .button,
  body.theme-romantic-floral .btn { width: 100%; max-width: 100%; box-sizing: border-box; }
  body.theme-romantic-floral .footer h2 {
    font-size: clamp(2.2rem, 12vw, 3.4rem);
    overflow-wrap: anywhere;
  }
}