:root {
  --bg: #f4efe6;
  --bg-soft: #fffaf3;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #fffdf8;
  --text: #171717;
  --muted: #5c5f62;
  --line: rgba(23, 23, 23, 0.1);
  --red: #e62712;
  --red-deep: #b81406;
  --blue: #1567d7;
  --green: #7abc18;
  --shadow: 0 24px 60px rgba(89, 48, 18, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 156px;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 14%, rgba(21, 103, 215, 0.09), transparent 18%),
    radial-gradient(circle at 88% 10%, rgba(230, 39, 18, 0.08), transparent 16%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.74)),
    linear-gradient(90deg, rgba(20, 62, 110, 0.06) 0, rgba(20, 62, 110, 0.06) 2px, transparent 2px, transparent 120px),
    linear-gradient(rgba(20, 62, 110, 0.04) 0, rgba(20, 62, 110, 0.04) 2px, transparent 2px, transparent 120px),
    linear-gradient(180deg, #eef4f7 0%, #e6eef2 100%);
  background-size: auto, auto, auto, 120px 120px, 120px 120px, auto;
  background-attachment: fixed;
}

img {
  display: block;
  max-width: 100%;
  -webkit-user-drag: none;
  user-select: none;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 56px;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 250, 243, 0.76);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.brand {
  flex: 0 0 auto;
  width: min(420px, 58vw);
  user-select: none;
}

.header-toggle {
  display: none;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(23, 23, 23, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  color: var(--text);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
}

.site-nav {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 8px;
  font-size: 0.86rem;
  font-weight: 700;
  white-space: nowrap;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  line-height: 1;
}

.nav-emphasis {
  padding: 0 12px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%);
  box-shadow: 0 14px 24px rgba(182, 20, 6, 0.22);
  font-weight: 700;
  line-height: 1;
}

.header-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}

.language-switcher {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.language-switcher a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-height: 34px;
  padding: 0 8px;
  border: 1px solid rgba(23, 23, 23, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.language-switcher a[aria-current="true"] {
  color: #fff;
  background: linear-gradient(135deg, var(--blue) 0%, #0f4ea5 100%);
  border-color: transparent;
}

.site-nav a,
.admin-link,
.header-cta,
.button {
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.admin-link:hover,
.admin-link:focus-visible,
.header-cta:hover,
.header-cta:focus-visible,
.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.nav-emphasis:hover,
.nav-emphasis:focus-visible {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #c01c10 0%, #7c0f05 100%);
}

.site-nav a.is-current,
.site-nav a[aria-current="true"] {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--blue) 0%, #0f4ea5 100%);
  box-shadow: 0 14px 24px rgba(15, 78, 165, 0.22);
}

.site-nav a.nav-emphasis.is-current,
.site-nav a.nav-emphasis[aria-current="true"] {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%);
  box-shadow: 0 14px 24px rgba(182, 20, 6, 0.22);
}

.site-nav a.is-current:hover,
.site-nav a.is-current:focus-visible,
.site-nav a[aria-current="true"]:hover,
.site-nav a[aria-current="true"]:focus-visible {
  color: #fff;
  background: linear-gradient(135deg, #1b78f2 0%, #134f9a 100%);
}

.site-nav a.nav-emphasis.is-current:hover,
.site-nav a.nav-emphasis.is-current:focus-visible,
.site-nav a.nav-emphasis[aria-current="true"]:hover,
.site-nav a.nav-emphasis[aria-current="true"]:focus-visible {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%);
}

.admin-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid rgba(23, 23, 23, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 800;
}

.header-cta,
.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%);
  box-shadow: 0 16px 28px rgba(182, 20, 6, 0.28);
}

.button-secondary {
  border: 1px solid rgba(23, 23, 23, 0.12);
  background: rgba(255, 255, 255, 0.52);
}

main {
  display: grid;
  gap: 28px;
  margin-top: 28px;
}

section {
  border: 1px solid var(--line);
  border-radius: 32px;
  background: var(--surface);
  box-shadow: var(--shadow);
  scroll-margin-top: 156px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 24px;
  padding: 44px;
  user-select: none;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
strong {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
}

h1 {
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3.1rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

h3 {
  margin: 0;
  font-size: 1.35rem;
}

p {
  color: var(--muted);
  line-height: 1.65;
}

.hero-text {
  max-width: 62ch;
  margin: 22px 0 0;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-highlights {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.hero-highlights li {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(23, 23, 23, 0.08);
}

.hero-highlights li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--green));
  flex: 0 0 auto;
}

.hero-panel {
  display: grid;
  gap: 18px;
  align-content: stretch;
}

.hero > *,
.quote-hero > *,
.gallery-hero > *,
.expertise-layout > *,
.contact > *,
.form-grid > *,
.admin-login-shell > * {
  min-width: 0;
}

.stat-card {
  min-height: 220px;
  padding: 28px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 247, 239, 0.86)),
    var(--surface-strong);
  border: 1px solid rgba(23, 23, 23, 0.08);
}

.stat-card.accent {
  color: #fff;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 30%),
    linear-gradient(135deg, #141414 0%, #1f3558 55%, #1f7f55 100%);
}

.stat-card.accent p,
.stat-card.accent .stat-label {
  color: rgba(255, 255, 255, 0.82);
}

.stat-label {
  display: block;
  margin-bottom: 18px;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.stat-card strong {
  display: block;
  margin-bottom: 14px;
  font-size: 1.8rem;
  line-height: 1.02;
}

.services,
.expertise,
.process,
.contact {
  padding: 38px;
}

.quote-hero,
.quote-form-section,
.gallery-hero,
.gallery-section {
  padding: 38px;
}

.section-heading {
  display: grid;
  gap: 14px;
  margin-bottom: 24px;
}

.hero-text,
.stat-card p,
.service-card p,
.expertise-copy p,
.checklist p,
.emergency-card p,
.contact-copy p,
.quote-hero-copy .hero-text,
.quote-aside .service-card p,
.quote-form-section .section-heading p:not(.eyebrow),
.form-note,
.form-feedback {
  text-align: justify;
  text-justify: inter-word;
}

.service-card p,
.checklist p,
.stat-card p {
  text-align: left;
  text-justify: auto;
}

.section-heading.narrow {
  max-width: 760px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.timeline article,
.contact-card,
.checklist div {
  padding: 24px;
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
}

.service-card span,
.timeline span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--blue);
  font-weight: 800;
}

.timeline article {
  display: grid;
  grid-template-rows: auto 1fr auto 1fr auto;
  max-width: 100%;
  justify-items: center;
  text-align: center;
  min-height: 240px;
}

.timeline article p {
  margin: 0;
  grid-row: 5;
  align-self: end;
}

.timeline-link {
  width: fit-content;
  grid-row: 3;
  align-self: center;
}

.expertise-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}

.expertise-copy {
  padding: 10px 8px 10px 0;
}

.checklist {
  display: grid;
  gap: 14px;
}

.emergency {
  padding: 20px;
  background:
    radial-gradient(circle at top left, rgba(230, 39, 18, 0.22), transparent 28%),
    linear-gradient(135deg, #191919 0%, #2d0c06 36%, #842113 100%);
}

.emergency-card {
  padding: 34px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.07);
}

.emergency-card h2,
.emergency-card p,
.emergency-card .eyebrow {
  color: #fff;
}

.timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: start;
}

.contact-card {
  display: grid;
  gap: 16px;
}

.map-card {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
}

.map-frame {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(23, 23, 23, 0.08);
  background: #dde6eb;
}

.map-frame iframe {
  display: block;
  width: 100%;
  min-height: 260px;
  border: 0;
}

.map-link {
  width: fit-content;
}

.map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.urgence-actions {
  align-items: center;
}

.contact-inline-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.contact-row {
  display: grid;
  gap: 6px;
}

.contact-row span {
  color: var(--muted);
  font-size: 0.9rem;
}

.quote-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 24px;
  user-select: none;
}

.gallery-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 24px;
}

.gallery-featured-photo {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  align-content: start;
}

.gallery-featured-photo img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 18px;
}

.gallery-featured-photo figcaption {
  color: var(--text);
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
}

.gallery-section {
  display: grid;
  gap: 24px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.gallery-card {
  overflow: hidden;
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.photo-card {
  display: grid;
  gap: 0;
  margin: 0;
}

.gallery-placeholder {
  min-height: 280px;
  border-bottom: 1px solid rgba(23, 23, 23, 0.08);
}

.photo-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-bottom: 1px solid rgba(23, 23, 23, 0.08);
}

.gallery-placeholder-blue {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.2), transparent 28%),
    linear-gradient(135deg, #dfe9ef 0%, #b9cfde 42%, #6b97bc 100%);
}

.gallery-placeholder-red {
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.18), transparent 24%),
    linear-gradient(135deg, #f5dfdb 0%, #eab4aa 40%, #c86f5b 100%);
}

.gallery-placeholder-green {
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.18), transparent 24%),
    linear-gradient(135deg, #e5efe4 0%, #c2d8bf 42%, #6f9a67 100%);
}

.gallery-placeholder-dark {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 22%),
    linear-gradient(135deg, #38404b 0%, #222b34 42%, #11161b 100%);
}

.photo-card figcaption {
  padding: 16px 18px 18px;
  color: var(--text);
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
}

.quote-aside {
  display: grid;
  align-content: start;
}

.quote-form {
  display: grid;
  gap: 18px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-grid-single {
  grid-template-columns: 1fr;
}

.form-card {
  min-width: 0;
  padding: 24px;
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.8);
}

.form-card legend {
  padding: 0 10px;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
}

.form-card label {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 14px;
  color: var(--text);
}

.form-card input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--red);
}

.field-label {
  display: block;
  margin-top: 18px;
  margin-bottom: 8px;
  font-weight: 700;
}

.text-field {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border: 1px solid rgba(23, 23, 23, 0.12);
  border-radius: 16px;
  background: #fffefb;
  font: inherit;
  color: var(--text);
}

.text-area {
  min-height: 180px;
  resize: vertical;
}

.text-field:focus {
  outline: 2px solid rgba(21, 103, 215, 0.2);
  border-color: rgba(21, 103, 215, 0.45);
}

.password-field-wrap {
  position: relative;
}

.password-field-input {
  padding-right: 112px;
}

.password-toggle {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(23, 23, 23, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--muted);
  cursor: pointer;
}

.password-toggle-icon {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.password-toggle-icon-hide {
  display: none;
}

.password-toggle.is-visible .password-toggle-icon-show {
  display: none;
}

.password-toggle.is-visible .password-toggle-icon-hide {
  display: block;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 18px;
}

.form-note {
  margin: 0;
  font-size: 0.95rem;
}

.form-feedback {
  min-height: 24px;
  margin: 0;
  font-weight: 700;
}

.form-feedback.pending {
  color: var(--blue);
}

.form-feedback.success {
  color: #247a1b;
}

.form-feedback.error {
  color: var(--red-deep);
}

.admin-login-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 24px;
  padding: 40px;
}

.admin-login-card {
  padding: 28px;
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
}

.remember-toggle {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 18px 0 22px;
  color: var(--text);
  font-weight: 600;
}

.remember-toggle input {
  accent-color: var(--red);
}

@media (max-width: 1080px) {
  .site-header,
  .hero,
  .quote-hero,
  .gallery-hero,
  .admin-login-shell,
  .service-grid,
  .expertise-layout,
  .timeline,
  .contact,
  .form-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .site-header {
    position: static;
    flex-wrap: wrap;
    align-items: center;
  }

  .header-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    min-width: 92px;
  }

  .site-nav {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 6px;
    white-space: normal;
  }

  .site-nav a {
    flex: 1 1 calc(50% - 6px);
    min-width: 0;
  }

  .header-actions {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }

  .language-switcher {
    width: 100%;
    justify-content: flex-start;
    gap: 6px;
  }

  .header-cta,
  .admin-link {
    flex: 1 1 220px;
  }

  .site-header.is-collapsed .site-nav,
  .site-header.is-collapsed .header-actions {
    display: none;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 18px, 1180px);
    padding-top: 10px;
  }

  .site-header,
  .hero,
  .quote-hero,
  .gallery-hero,
  .admin-login-shell,
  .services,
  .expertise,
  .process,
  .contact,
  .quote-form-section,
  .gallery-section,
  .emergency-card {
    padding: 22px;
  }

  .site-header {
    gap: 14px;
    padding: 14px 16px;
  }

  .site-nav {
    gap: 8px;
    font-size: 0.82rem;
  }

  .site-nav a,
  .nav-emphasis,
  .admin-link,
  .header-cta {
    min-height: 38px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .language-switcher a {
    min-width: 36px;
    min-height: 32px;
    padding: 0 7px;
  }

  .site-nav a {
    flex-basis: 100%;
  }

  h1 {
    font-size: clamp(2.2rem, 11vw, 3.4rem);
  }

  h2 {
    font-size: clamp(1.7rem, 8vw, 2.4rem);
  }

  .brand {
    width: min(360px, 82vw);
  }
}

@media (max-width: 560px) {
  .hero-actions,
  .contact-actions,
  .map-actions,
  .form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .button,
  .contact-actions .button,
  .map-actions .button,
  .form-actions .button,
  .timeline-link {
    width: 100%;
  }

  .contact-inline-number {
    width: 100%;
    justify-content: flex-start;
  }

  .gallery-card,
  .gallery-featured-photo,
  .stat-card,
  .service-card,
  .contact-card,
  .map-card,
  .form-card,
  .admin-login-card {
    border-radius: 22px;
  }
}

.admin-inline-toolbar {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.admin-inline-toolbar .button,
.admin-inline-toolbar .admin-inline-link {
  min-height: 44px;
  box-shadow: 0 16px 28px rgba(23, 23, 23, 0.18);
}

.admin-editing-active .admin-editable {
  outline: 2px dashed rgba(21, 103, 215, 0.55);
  outline-offset: 4px;
  cursor: pointer;
}

.admin-editing-active .admin-editable:hover {
  background: rgba(21, 103, 215, 0.08);
}

.admin-edit-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: none;
}

.admin-edit-modal.is-open {
  display: block;
}

.admin-edit-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 20, 31, 0.52);
}

.admin-edit-modal__panel {
  position: relative;
  width: min(720px, calc(100% - 24px));
  margin: 7vh auto 0;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(23, 23, 23, 0.08);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 60px rgba(12, 20, 31, 0.24);
}

.admin-edit-modal__meta {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.92rem;
}

.admin-edit-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}
