/* Lumière theme — порт из httpdocs/filles/src/styles.css */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --radius: 0.875rem;
  --background: oklch(0.99 0.005 60);
  --foreground: oklch(0.18 0.04 320);
  --card: oklch(1 0 0);
  --card-foreground: oklch(0.18 0.04 320);
  --muted: oklch(0.96 0.015 50);
  --muted-foreground: oklch(0.5 0.04 320);
  --primary: oklch(0.68 0.22 35);
  --primary-foreground: oklch(0.99 0.005 60);
  --secondary: oklch(0.96 0.025 50);
  --border: oklch(0.92 0.015 50);
  --sunset-orange: oklch(0.72 0.21 40);
  --sunset-violet: oklch(0.55 0.22 295);
  --gradient-sunset: linear-gradient(135deg, oklch(0.72 0.21 40), oklch(0.68 0.22 0) 50%, oklch(0.55 0.22 295));
  --gradient-soft: linear-gradient(180deg, oklch(0.99 0.01 60), oklch(0.97 0.03 30));
  --shadow-soft: 0 4px 20px -8px oklch(0.55 0.22 295 / 0.18);
  --shadow-glow: 0 20px 60px -20px oklch(0.68 0.22 0 / 0.45);
  --shadow-card: 0 8px 30px -12px oklch(0.18 0.04 320 / 0.12);
  --font-display: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --font-sans: "Inter", system-ui, sans-serif;
  --container: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }
body.lm-body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-feature-settings: "ss01", "cv01";
  line-height: 1.5;
}
h1, h2, h3, h4 { font-family: var(--font-display); letter-spacing: -0.02em; margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.lm-container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.bg-gradient-sunset { background: var(--gradient-sunset); }
.bg-gradient-soft { background: var(--gradient-soft); }
.text-gradient-sunset {
  background: var(--gradient-sunset);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.text-muted { color: var(--muted-foreground); }
.shadow-soft { box-shadow: var(--shadow-soft); }
.shadow-glow { box-shadow: var(--shadow-glow); }
.shadow-card { box-shadow: var(--shadow-card); }

/* Header */
.lm-header {
  position: sticky; top: 0; z-index: 40;
  backdrop-filter: blur(16px);
  background: color-mix(in oklch, var(--background) 70%, transparent);
  border-bottom: 1px solid color-mix(in oklch, var(--border) 60%, transparent);
}
.lm-header-inner {
  height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.lm-logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 1.25rem; }
.lm-logo-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--gradient-sunset);
  display: grid; place-items: center; color: #fff; font-size: 14px; box-shadow: var(--shadow-soft);
}
.lm-nav { display: none; gap: 28px; font-size: 14px; }
@media (min-width: 1024px) { .lm-nav { display: flex; } }
.lm-nav a { color: var(--muted-foreground); transition: color .2s; }
.lm-nav a:hover, .lm-nav a.is-active { color: var(--foreground); font-weight: 500; }
.lm-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 20px; border-radius: 999px; font-size: 14px; font-weight: 500;
  border: none; cursor: pointer; transition: opacity .2s, transform .15s;
}
.lm-btn-primary { background: var(--foreground); color: var(--background); }
.lm-btn-primary:hover { opacity: .9; text-decoration: none; }
.lm-btn-outline { background: transparent; border: 1px solid var(--border); color: var(--foreground); }
.lm-btn-outline:hover { background: var(--secondary); text-decoration: none; }
.lm-btn-sunset { background: var(--gradient-sunset); color: #fff; }
.lm-header-actions { display: flex; align-items: center; gap: 12px; }
.lm-menu-toggle { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--border); background: #fff; cursor: pointer; }
@media (min-width: 1024px) { .lm-menu-toggle { display: none; } }
.lm-mobile-nav { display: none; border-top: 1px solid var(--border); background: var(--background); padding: 16px 24px; flex-direction: column; gap: 12px; }
.lm-mobile-nav.is-open { display: flex; }

/* Hero */
.lm-hero { position: relative; overflow: hidden; padding: 80px 0 96px; }
.lm-hero-glow {
  position: absolute; top: -160px; right: -160px; width: 600px; height: 600px;
  border-radius: 50%; background: var(--gradient-sunset); opacity: .2; filter: blur(80px); pointer-events: none;
}
.lm-hero-grid { display: grid; gap: 48px; align-items: center; }
@media (min-width: 992px) { .lm-hero-grid { grid-template-columns: 1fr 1fr; } }
.lm-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; text-transform: uppercase; letter-spacing: .2em; color: var(--muted-foreground);
}
.lm-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--sunset-orange); }
.lm-hero h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); line-height: .95; margin-top: 24px; }
.lm-hero-lead { font-size: 1.125rem; color: var(--muted-foreground); max-width: 32rem; margin-top: 24px; }
.lm-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.lm-stats { display: flex; flex-wrap: wrap; gap: 32px; margin-top: 48px; font-size: 12px; color: var(--muted-foreground); }
.lm-stats strong { display: block; font-family: var(--font-display); font-size: 1.5rem; color: var(--foreground); }
.lm-hero-img-wrap { position: relative; }
.lm-hero-img {
  aspect-ratio: 4/3; border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-glow);
}
.lm-hero-badge {
  position: absolute; bottom: -24px; left: -24px;
  background: var(--card); border-radius: 16px; padding: 16px;
  box-shadow: var(--shadow-card); display: flex; gap: 12px; align-items: center; max-width: 260px;
}
.lm-hero-badge-icon {
  width: 40px; height: 40px; border-radius: 50%; background: var(--gradient-sunset);
  display: grid; place-items: center; color: #fff; flex-shrink: 0;
}

/* Cards / sections */
.lm-section { padding: 96px 0; }
.lm-section-head { margin-bottom: 48px; }
.lm-section-head .lm-eyebrow { margin-bottom: 12px; }
.lm-section-head h2 { font-size: clamp(2rem, 4vw, 3rem); }
.lm-grid-3 { display: grid; gap: 24px; }
@media (min-width: 768px) { .lm-grid-3 { grid-template-columns: repeat(3, 1fr); } }
.lm-service-card {
  border-radius: 24px; overflow: hidden; background: var(--card);
  box-shadow: var(--shadow-card); transition: box-shadow .3s, transform .3s;
}
.lm-service-card:hover { box-shadow: var(--shadow-glow); transform: translateY(-4px); text-decoration: none; }
.lm-service-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .7s; }
.lm-service-card:hover img { transform: scale(1.05); }
.lm-service-card-body { padding: 24px; }
.lm-service-card h3 { font-size: 1.5rem; margin-top: 12px; }
.lm-service-card p { font-size: 14px; color: var(--muted-foreground); margin-top: 8px; }

.lm-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (min-width: 768px) { .lm-gallery { grid-template-columns: repeat(4, 1fr); } }
.lm-gallery-item { border-radius: 16px; overflow: hidden; }
.lm-gallery-item:nth-child(2), .lm-gallery-item:nth-child(4) { aspect-ratio: 3/4; }
.lm-gallery-item:nth-child(1), .lm-gallery-item:nth-child(3) { aspect-ratio: 4/5; }
@media (min-width: 768px) {
  .lm-gallery-item:nth-child(2), .lm-gallery-item:nth-child(4) { transform: translateY(32px); }
}
.lm-gallery-item img { width: 100%; height: 100%; object-fit: cover; }

.lm-process-grid { display: grid; gap: 24px; }
@media (min-width: 768px) { .lm-process-grid { grid-template-columns: repeat(4, 1fr); } }
.lm-process-step {
  background: var(--card); border-radius: 16px; padding: 24px; box-shadow: var(--shadow-soft);
}
.lm-process-step .num { font-family: var(--font-display); font-size: 2rem; color: var(--sunset-orange); }

.lm-cta-band {
  border-radius: 24px; background: var(--gradient-sunset);
  padding: 48px 80px; color: #fff; position: relative; overflow: hidden;
}
.lm-cta-band h2 { font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1.1; }
.lm-cta-band p { margin-top: 16px; opacity: .9; }
.lm-cta-band .lm-btn { margin-top: 32px; background: #fff; color: var(--foreground); }

/* Footer */
.lm-footer { margin-top: 128px; border-top: 1px solid var(--border); background: var(--gradient-soft); }
.lm-footer-grid {
  display: grid; gap: 40px; padding: 64px 0;
}
@media (min-width: 768px) { .lm-footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
.lm-footer ul { list-style: none; padding: 0; margin: 8px 0 0; }
.lm-footer li { margin: 8px 0; font-size: 14px; color: var(--muted-foreground); }
.lm-footer li a:hover { color: var(--foreground); }
.lm-footer-copy {
  border-top: 1px solid var(--border); padding: 24px; text-align: center;
  font-size: 12px; color: var(--muted-foreground);
}

/* FAB + editor compat */
.lm-fab-panel {
  position: fixed; right: 16px; top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 10px; z-index: 150;
}
.lm-fab {
  display: flex; align-items: center; gap: 8px; padding: 10px 14px;
  background: var(--card); border: 1px solid var(--border); border-radius: 999px;
  box-shadow: var(--shadow-card); font-size: 13px; font-weight: 600;
}
.lm-fab-accent { background: var(--gradient-sunset); color: #fff; border: none; }

/* Editor shell (Lumière) */
.lm-editor-shell { display: flex; flex-direction: column; height: calc(100vh - 64px); background: color-mix(in oklch, var(--muted) 30%, transparent); }
.lm-editor-topbar {
  height: 56px; border-bottom: 1px solid var(--border); background: var(--card);
  display: flex; align-items: center; justify-content: space-between; padding: 0 16px; flex-wrap: wrap; gap: 8px;
}
.lm-editor-workspace { flex: 1; display: flex; overflow: hidden; }
.lm-editor-tools-rail {
  width: 80px; border-right: 1px solid var(--border); background: var(--card);
  display: flex; flex-direction: column; padding: 12px 8px; gap: 4px;
}
.lm-tool-btn {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 12px 8px; border-radius: 12px; border: none; background: transparent;
  font-size: 10px; color: var(--muted-foreground); cursor: pointer;
}
.lm-tool-btn.is-active { background: var(--gradient-sunset); color: #fff; box-shadow: var(--shadow-soft); }
.lm-editor-canvas-area {
  flex: 1; display: grid; place-items: center; padding: 32px; overflow: auto;
  background: linear-gradient(135deg, color-mix(in oklch, var(--muted) 40%, transparent), var(--background));
}
.lm-editor-panel {
  width: 320px; border-left: 1px solid var(--border); background: var(--card); overflow-y: auto;
}
.lm-panel-section { padding: 20px; border-bottom: 1px solid var(--border); }
.lm-chip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.lm-chip {
  padding: 8px; border-radius: 8px; border: 1px solid var(--border);
  font-size: 12px; background: #fff; cursor: pointer; text-align: center;
}
.lm-chip.is-active { border-color: var(--sunset-orange); background: color-mix(in oklch, var(--sunset-orange) 10%, white); }
.lm-dpi-badge {
  position: absolute; top: -12px; right: -12px;
  background: var(--sunset-orange); color: #fff; font-size: 10px; padding: 4px 10px; border-radius: 999px;
}
.lm-cmyk-toggle { font-size: 12px; display: flex; align-items: center; gap: 8px; margin-top: 12px; }
.lm-layer-item {
  display: flex; align-items: center; gap: 8px; padding: 8px; border-radius: 8px;
  border: 1px solid var(--border); margin-bottom: 8px; font-size: 12px;
}
.lm-layer-item select { font-size: 11px; max-width: 90px; }
.lm-qr-box { text-align: center; padding: 16px; background: var(--secondary); border-radius: 12px; margin-top: 12px; }
.lm-qr-box img { margin: 0 auto; max-width: 160px; }

/* Page layout */
.lm-page-hero { padding: 64px 0 48px; }
.lm-page-hero-grid { display: grid; gap: 48px; align-items: center; }
@media (min-width: 992px) { .lm-page-hero-grid { grid-template-columns: 1fr 1fr; } }
.lm-page-hero h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); line-height: 1.05; margin-top: 12px; }
.lm-page-hero-img { border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-glow); }
.lm-page-hero-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.lm-section-muted { background: var(--gradient-soft); }
.lm-format-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (min-width: 768px) { .lm-format-grid { grid-template-columns: repeat(4, 1fr); } }
.lm-format-card {
  padding: 24px; border-radius: 16px; border: 1px solid var(--border);
  transition: border-color .2s;
}
.lm-format-card:hover { border-color: var(--sunset-orange); }
.lm-format-card .icon { color: var(--sunset-orange); font-size: 20px; }
.lm-format-card .size { font-family: var(--font-display); font-size: 1.5rem; margin-top: 12px; }
.lm-paper-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; }
.lm-paper-card { padding: 24px; border-radius: 16px; background: var(--gradient-soft); }
.lm-pricing-grid { display: grid; gap: 24px; margin-top: 56px; }
@media (min-width: 768px) { .lm-pricing-grid { grid-template-columns: repeat(3, 1fr); } }
.lm-pricing-card {
  padding: 32px; border-radius: 24px; border: 1px solid var(--border); background: var(--card);
}
.lm-pricing-card.is-featured { background: var(--gradient-sunset); color: #fff; border: none; box-shadow: var(--shadow-glow); }
.lm-pricing-card .price { font-family: var(--font-display); font-size: 3rem; margin-top: 8px; }
.lm-pricing-card ul { list-style: none; padding: 0; margin: 24px 0 0; font-size: 14px; }
.lm-pricing-card li { display: flex; gap: 8px; margin: 12px 0; }
.lm-contact-grid { display: grid; gap: 48px; }
@media (min-width: 992px) { .m-contact-grid, .lm-contact-grid { grid-template-columns: 1fr 1fr; } }
.lm-contact-item { display: flex; gap: 16px; align-items: flex-start; margin: 20px 0; }
.lm-contact-icon {
  width: 40px; height: 40px; border-radius: 50%; background: var(--gradient-sunset);
  display: grid; place-items: center; color: #fff; flex-shrink: 0; font-size: 16px;
}
.lm-form-card { padding: 32px; border-radius: 24px; background: var(--gradient-soft); }
.lm-form-group { margin-bottom: 16px; }
.lm-form-group label { display: block; font-size: 12px; color: var(--muted-foreground); margin-bottom: 6px; }
.lm-form-group input, .lm-form-group textarea, .lm-form-group select {
  width: 100%; padding: 12px 16px; border-radius: 12px; border: 1px solid var(--border);
  background: var(--background); font-size: 14px; font-family: inherit;
}
.lm-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.lm-table th, .lm-table td { padding: 12px; border-bottom: 1px solid var(--border); text-align: left; }
.lm-table th { font-size: 11px; text-transform: uppercase; letter-spacing: .05em; color: var(--muted-foreground); }
.lm-alert { padding: 12px 16px; border-radius: 12px; font-size: 14px; margin-bottom: 16px; }
.lm-alert-success { background: color-mix(in oklch, var(--sunset-orange) 12%, white); color: var(--foreground); }
.lm-alert-error { background: #fef2f2; color: #991b1b; }
.lm-editor-hub-grid { display: grid; gap: 24px; margin-top: 48px; }
@media (min-width: 768px) { .lm-editor-hub-grid { grid-template-columns: repeat(3, 1fr); } }
.lm-editor-hub-card {
  position: relative; border-radius: 24px; overflow: hidden; padding: 32px; min-height: 320px;
  background: var(--card); box-shadow: var(--shadow-card); display: flex; flex-direction: column; justify-content: space-between;
  transition: box-shadow .3s, transform .3s; text-decoration: none; color: inherit;
}
.lm-editor-hub-card:hover { box-shadow: var(--shadow-glow); transform: translateY(-4px); text-decoration: none; }
.lm-editor-hub-card .icon-box {
  width: 48px; height: 48px; border-radius: 16px; background: var(--gradient-sunset);
  display: grid; place-items: center; color: #fff; font-size: 22px;
}
.lm-editor-hub-card h2 { font-size: 1.5rem; margin-top: 24px; }
.lm-editor-hub-card p { font-size: 14px; color: var(--muted-foreground); margin-top: 8px; }
.lm-editor-hub-card .link { font-size: 14px; font-weight: 500; margin-top: 24px; }
.lm-product-grid { display: grid; gap: 24px; }
@media (min-width: 640px) { .lm-product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .lm-product-grid { grid-template-columns: repeat(3, 1fr); } }
.lm-product-card {
  border-radius: 24px; overflow: hidden; background: var(--card); box-shadow: var(--shadow-card);
  transition: box-shadow .3s, transform .3s;
}
.lm-product-card:hover { box-shadow: var(--shadow-glow); transform: translateY(-4px); }
.lm-product-card-img {
  aspect-ratio: 4/3; background: var(--gradient-soft); display: grid; place-items: center;
  font-size: 48px; color: var(--muted-foreground);
}
.lm-product-card-body { padding: 24px; }
.lm-price { color: var(--sunset-orange); font-weight: 600; }
.lm-price-lg { font-size: 1.75rem; color: var(--sunset-orange); font-weight: 600; }
.lm-sticker-wrap { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.lm-sticker-btn {
  width: 36px; height: 36px; border: 1px solid var(--border); border-radius: 8px;
  background: #fff; cursor: pointer; font-size: 18px;
}
.lm-sticker-btn:hover { border-color: var(--sunset-orange); }

/* Editor page (full screen) */
.lm-editor-page { overflow: hidden; }
.lm-editor-header {
  height: 48px; border-bottom: 1px solid var(--border); background: var(--card);
}
.lm-editor-header-inner {
  max-width: 100%; padding: 0 16px; height: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.lm-editor-main { height: calc(100vh - 48px); }
.lm-editor-shell { display: flex; flex-direction: column; height: 100%; background: color-mix(in oklch, var(--muted) 30%, transparent); }
.lm-editor-canvas-glow {
  position: absolute; inset: -32px; background: var(--gradient-sunset); opacity: .1;
  filter: blur(48px); border-radius: 50%; pointer-events: none;
}
.lm-filter-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.lm-filter-btn {
  border: none; background: none; padding: 0; cursor: pointer; text-align: left;
}
.lm-filter-btn .thumb {
  aspect-ratio: 1; border-radius: 12px; overflow: hidden; border: 2px solid transparent;
  background: var(--muted);
}
.lm-filter-btn.is-active .thumb { border-color: var(--sunset-orange); }
.lm-filter-btn .thumb img { width: 100%; height: 100%; object-fit: cover; }
.lm-filter-btn .label { font-size: 10px; color: var(--muted-foreground); margin-top: 6px; }
.lm-slider-row { margin-bottom: 20px; }
.lm-slider-row .row-head {
  display: flex; justify-content: space-between; font-size: 12px; margin-bottom: 8px;
}
.lm-slider-row input[type=range] { width: 100%; accent-color: var(--sunset-orange); }
.lm-dpi-panel { margin-top: 16px; border-radius: 8px; padding: 10px; font-size: 12px; }
.lm-dpi-ok { background: #ecfdf5; color: #065f46; }
.lm-dpi-warn { background: #fffbeb; color: #92400e; }
.lm-dpi-critical { background: #fef2f2; color: #991b1b; }

/* Photobook / photowall editors */
.lm-editor-sidebar {
  width: 256px; border-right: 1px solid var(--border); background: var(--card);
  display: flex; flex-direction: column; flex-shrink: 0;
}
.lm-editor-sidebar-head { padding: 16px; border-bottom: 1px solid var(--border); }
.lm-photo-thumb-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; padding: 12px; overflow-y: auto; flex: 1; }
.lm-photo-thumb { aspect-ratio: 1; border-radius: 8px; overflow: hidden; cursor: pointer; }
.lm-photo-thumb img { width: 100%; height: 100%; object-fit: cover; }
.lm-photo-thumb:hover { outline: 2px solid var(--sunset-orange); }
.lm-spread-nav { display: flex; align-items: center; gap: 12px; }
.lm-spread-wrap { display: flex; box-shadow: var(--shadow-glow); border-radius: 4px; overflow: hidden; }
.lm-spread-page { width: 340px; aspect-ratio: 1/1.4; background: #fff; padding: 16px; }
.lm-spread-page + .lm-spread-page { border-left: 1px solid var(--border); }
.lm-photowall-stage {
  position: relative; width: 100%; max-width: 720px; aspect-ratio: 16/10;
  background: var(--muted); border-radius: 16px; overflow: hidden;
}
.lm-photowall-item {
  position: absolute; background: #fff; box-shadow: var(--shadow-card); overflow: hidden;
}
.lm-photowall-item img { width: 100%; height: 100%; object-fit: cover; }
.lm-preset-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.lm-preset-btn {
  padding: 12px; border-radius: 12px; border: 1px solid var(--border); background: #fff;
  text-align: left; cursor: pointer; font-size: 11px;
}
.lm-preset-btn.is-active { border-color: var(--sunset-orange); background: color-mix(in oklch, var(--sunset-orange) 8%, white); }

.lm-canvas-wrap { position: relative; display: inline-block; }
.lm-canvas-empty {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: 24px; pointer-events: none; color: var(--muted-foreground);
  font-size: 14px; background: color-mix(in oklch, var(--muted) 25%, transparent);
  border-radius: 4px; z-index: 2;
}
.lm-canvas-wrap .canvas-container { position: relative; z-index: 3; }
.lm-canvas-empty strong { color: var(--foreground); font-size: 15px; margin-bottom: 8px; }
.lm-editor-canvas-area.is-dragover { outline: 2px dashed var(--sunset-orange); outline-offset: 8px; }

/* Legacy rr-* aliases */
.lm-body .rr-card, .lm-body .rr-card-link { border-radius: var(--radius); border: 1px solid var(--border); box-shadow: var(--shadow-card); display: block; color: inherit; }
.lm-body .rr-btn, .lm-body .rr-btn-primary, .lm-body .rr-btn-outline {
  display: inline-flex; align-items: center; justify-content: center; padding: 10px 20px;
  border-radius: 999px; font-size: 14px; font-weight: 500; border: none; cursor: pointer; text-decoration: none;
}
.lm-body .rr-btn-primary { background: var(--foreground); color: var(--background); }
.lm-body .rr-btn-outline { background: transparent; border: 1px solid var(--border); color: var(--foreground); }
.lm-body .rr-price { color: var(--sunset-orange); }
.lm-body .rr-section { padding: 64px 0; }
.lm-body .rr-wrap, .lm-body .rr-content-page { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.lm-body .rr-form-group { margin-bottom: 16px; }
.lm-body .rr-form-group label { display: block; font-size: 12px; margin-bottom: 6px; }
.lm-body .rr-form-group input, .lm-body .rr-form-group textarea, .lm-body .rr-form-group select {
  width: 100%; padding: 12px; border-radius: 12px; border: 1px solid var(--border); font-family: inherit;
}
.lm-body .rr-table { width: 100%; border-collapse: collapse; }
.lm-body .rr-table th, .lm-body .rr-table td { padding: 12px; border-bottom: 1px solid var(--border); }
