:root {
  --bg: #fffaf9;
  --paper: #ffffff;
  --ink: #2a1d1f;
  --muted: #735d61;
  --primary: #9b5164;
  --primary-dark: #71354a;
  --primary-soft: #f4dfe5;
  --border: #ead8dc;
  --danger: #a83242;
  --shadow: 0 18px 60px rgba(75, 35, 48, 0.12);
  --shadow-soft: 0 12px 32px rgba(75, 35, 48, 0.09);
  --radius: 26px;
  --radius-sm: 16px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top left, #fff1f4 0, transparent 34rem), var(--bg);
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  appearance: none;
  -webkit-appearance: none;
}

.site-header,
.admin-top {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.9rem clamp(1rem, 4vw, 4rem);
  background: rgba(255, 250, 249, 0.92);
  border-bottom: 1px solid rgba(234, 216, 220, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  flex: 0 0 auto;
  font-weight: 850;
  letter-spacing: -0.03em;
  color: var(--primary-dark);
}

.brand.center {
  justify-content: center;
}

.brand-mark {
  display: inline-grid;
  width: 2.6rem;
  height: 2.6rem;
  place-items: center;
  border-radius: 999px;
  background: var(--primary);
  color: white;
  font-size: 0.85rem;
  box-shadow: 0 10px 30px rgba(155, 81, 100, 0.28);
}

.brand-logo {
  width: 2.8rem;
  height: 2.8rem;
  object-fit: contain;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 30px rgba(155, 81, 100, 0.18);
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.7rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.72rem 1rem;
  background: var(--paper);
  color: var(--primary-dark);
  font-weight: 850;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(75, 35, 48, 0.06);
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--primary-dark);
}

.nav-toggle-lines {
  position: relative;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-lines::before {
  top: -6px;
}

.nav-toggle-lines::after {
  top: 6px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.25rem;
  margin-left: auto;
}

.site-nav a,
.site-nav button,
.admin-side a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.66rem 0.92rem;
  border-radius: 999px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-weight: 750;
  line-height: 1.1;
  white-space: nowrap;
  cursor: pointer;
}

.site-nav a:hover,
.site-nav a.active,
.site-nav button:hover,
.site-nav button.active,
.admin-side a:hover,
.admin-side a.active {
  color: var(--primary-dark);
  background: var(--primary-soft);
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

@media (hover: hover) and (min-width: 861px) {
  .nav-dropdown::after {
    content: "";
    position: absolute;
    left: -0.5rem;
    right: -0.5rem;
    top: 100%;
    height: 0.9rem;
  }
}

.nav-dropdown-trigger {
  gap: 0.35rem;
}

.nav-dropdown-trigger::after {
  content: "";
  width: 0.46rem;
  height: 0.46rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-0.12rem) rotate(45deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.65rem);
  left: 50%;
  z-index: 160;
  display: none;
  width: max-content;
  min-width: 300px;
  max-width: min(360px, calc(100vw - 2rem));
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.65rem;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
  transform: translateX(-50%);
}

.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -8px;
  width: 14px;
  height: 14px;
  background: white;
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
  transform: translateX(-50%) rotate(45deg);
}

.nav-dropdown-menu a {
  position: relative;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  min-height: 44px;
  padding: 0.82rem 0.95rem;
  border-radius: 15px;
  white-space: normal;
  text-align: left;
}

.nav-dropdown-menu a::after {
  content: "PDF";
  flex: 0 0 auto;
  padding: 0.18rem 0.48rem;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.04em;
}

.nav-dropdown.open .nav-dropdown-menu {
  display: flex;
}

@media (hover: hover) and (min-width: 861px) {
  .nav-dropdown:hover .nav-dropdown-menu {
    display: flex;
  }
}

main {
  min-height: 70vh;
}

.hero,
.page-hero,
.section {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  align-items: start;
  gap: 2rem;
  padding: clamp(3rem, 8vw, 6.5rem) 0 clamp(1rem, 3vw, 2rem);
}

.hero-copy,
.daily-card,
.card,
.contact-card,
.map-card,
.public-form,
.admin-card,
.login-card,
.stat-card,
.empty-state,
.cta-band {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}

.hero-copy {
  padding: clamp(2rem, 5vw, 4rem);
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
  color: var(--primary-dark);
}

.hero p,
.page-hero p,
.card p,
.contact-card p {
  color: var(--muted);
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.78rem;
  font-weight: 950;
}

.hero-actions,
.section-head,
.admin-title,
.inline-form,
.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-actions {
  justify-content: flex-start;
  margin-top: 2rem;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: clamp(1.35rem, 3vw, 2.25rem);
}

.hero-about {
  margin-top: clamp(0.75rem, 2vw, 1.25rem);
  padding: clamp(1.5rem, 3.5vw, 2.5rem);
}

.hero-about .eyebrow {
  color: var(--primary);
}

.hero-about h2 {
  margin: 0 0 0.85rem;
  color: var(--primary-dark);
  font-size: clamp(1.45rem, 2.5vw, 2.15rem);
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.hero-about p:last-child {
  margin: 0;
  max-width: 760px;
  color: var(--primary-dark);
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.75;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 0;
  border-radius: 999px;
  padding: 0.82rem 1.25rem;
  background: var(--primary);
  color: white;
  font-weight: 850;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(155, 81, 100, 0.25);
}

.btn:hover {
  background: var(--primary-dark);
}

.btn.secondary,
.btn.ghost {
  background: var(--primary-soft);
  color: var(--primary-dark);
  box-shadow: none;
}

.btn.danger {
  background: var(--danger);
}

.btn.small {
  padding: 0.6rem 1rem;
}

.btn.full {
  width: 100%;
}

.text-link {
  color: var(--primary-dark);
  font-weight: 850;
}

.daily-card {
  padding: clamp(1.4rem, 4vw, 2rem);
}

.daily-card h2 {
  margin-top: 0;
  color: var(--primary-dark);
}

.daily-list,
.menu-list,
.admin-list {
  display: grid;
  gap: 0.75rem;
}

.daily-item,
.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255, 250, 249, 0.74);
}

.daily-item span,
.menu-item p {
  display: block;
  margin: 0.25rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.daily-item b,
.menu-item strong {
  flex: 0 0 auto;
  color: var(--primary-dark);
  white-space: nowrap;
}

.section {
  padding: 3rem 0;
}

.about-section {
  padding-top: clamp(0.75rem, 2vw, 1.5rem);
}

.about-section > p {
  margin: 0;
  max-width: 680px;
  font-size: clamp(1.02rem, 1.6vw, 1.16rem);
  line-height: 1.72;
}

.split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 2rem;
  align-items: start;
}

.section h2,
.card h3,
.card h2,
.contact-card h2,
.menu-title h2 {
  margin: 0 0 0.75rem;
  color: var(--primary-dark);
  letter-spacing: -0.04em;
}

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

.card {
  padding: 1.35rem;
}

.card.large {
  grid-column: span 2;
  min-height: 220px;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem;
  background: linear-gradient(135deg, #fff, #f7e3e8);
}

.cta-band h2,
.cta-band p {
  margin: 0.25rem 0;
}

.page-hero {
  padding: clamp(3rem, 7vw, 5.5rem) 0 2rem;
  text-align: center;
}

.page-hero.centered {
  min-height: 60vh;
  display: grid;
  place-items: center;
  align-content: center;
}

.menu-pdf-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.menu-pdf-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 260px;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
}

.menu-pdf-card h2 {
  margin: 0 0 0.75rem;
  color: var(--primary-dark);
  letter-spacing: -0.04em;
}

.menu-pdf-card p {
  color: var(--muted);
}

.select-form,
.public-form {
  display: grid;
  gap: 1rem;
}

.select-form {
  grid-template-columns: 1fr auto;
  align-items: end;
  max-width: 620px;
  margin: 0 auto 2rem;
}

.select-form label {
  display: grid;
  gap: 0.35rem;
  color: var(--primary-dark);
  font-weight: 800;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.85rem 1rem;
  color: var(--ink);
  background: white;
  outline: none;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(155, 81, 100, 0.12);
}

.menu-group {
  margin-top: 2rem;
}

.menu-group h3 {
  color: var(--primary-dark);
  font-size: 1.45rem;
  letter-spacing: -0.04em;
}

.menu-item h4 {
  margin: 0;
}

.notice {
  margin-top: 2rem;
  padding: 1rem;
  border-radius: var(--radius-sm);
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-weight: 780;
}

.form-section {
  max-width: 880px;
}

.public-form {
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

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

.public-form label,
.admin-form label,
.login-card label {
  display: grid;
  gap: 0.4rem;
  color: var(--primary-dark);
  font-weight: 760;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.75rem, 2vw, 1rem);
  align-items: stretch;
}

.gallery-grid.compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gallery-item {
  display: block;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.gallery-item[hidden] {
  display: none;
}

.gallery-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
}

.gallery-item img {
  border-radius: inherit;
  box-shadow: none;
}

.gallery-actions {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.gallery-load-more {
  min-width: 10rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 1rem;
}

.contact-card {
  padding: 2rem;
}

.map-card {
  min-height: 420px;
  overflow: hidden;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.site-footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  width: min(1160px, calc(100% - 2rem));
  margin: 4rem auto 1rem;
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--primary-dark);
  color: white;
}

.site-footer p {
  margin: 0.2rem 0;
  color: rgba(255, 255, 255, 0.82);
}

.small {
  font-size: 0.88rem;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(760px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: white;
  box-shadow: var(--shadow);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  margin: 0;
}

.cookie-banner button {
  border: 0;
  border-radius: 999px;
  padding: 0.65rem 1rem;
  background: var(--primary);
  color: white;
  font-weight: 850;
  cursor: pointer;
}

.flash {
  width: min(1160px, calc(100% - 2rem));
  margin: 1rem auto 0;
  padding: 1rem;
  border-radius: 16px;
  font-weight: 750;
}

.flash.success {
  background: #edf8ef;
  color: #276238;
  border: 1px solid #c7e9cf;
}

.flash.error {
  background: #fff0f0;
  color: #9b2334;
  border: 1px solid #f1c7cf;
}

.admin-body {
  background: #fffaf9;
}

.admin-shell {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  width: min(1480px, 100%);
  margin: 0 auto;
}

.admin-side {
  position: sticky;
  top: var(--header-height);
  height: calc(100vh - var(--header-height));
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem;
  border-right: 1px solid var(--border);
  background: rgba(255, 250, 249, 0.72);
}

.admin-side a {
  justify-content: flex-start;
}

.admin-main {
  padding: clamp(1rem, 3vw, 2rem);
}

.admin-section {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}

.admin-title {
  margin-bottom: 1.25rem;
}

.admin-title h1 {
  margin: 0;
  color: var(--primary-dark);
  letter-spacing: -0.05em;
  font-size: clamp(2rem, 4vw, 3rem);
}

.admin-card {
  padding: 1.25rem;
  margin-bottom: 1rem;
}

.admin-card h2 {
  margin: 0 0 1rem;
  color: var(--primary-dark);
}

.accent-card {
  border-color: rgba(155, 81, 100, 0.45);
}

.admin-form {
  display: grid;
  gap: 1rem;
}

.grid-form {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: end;
}

.grid-form .wide {
  grid-column: 1 / -1;
}

.check {
  display: inline-flex !important;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.6rem !important;
}

.check input {
  width: auto;
}

.delete-form {
  margin-top: 0.75rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.stat-card {
  padding: 1.5rem;
  color: var(--primary-dark);
}

.stat-card strong {
  display: block;
  font-size: 2.3rem;
  line-height: 1;
}

.stat-card span {
  color: var(--muted);
  font-weight: 750;
}

.admin-login-wrap {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.login-card {
  width: min(420px, 100%);
  padding: 2rem;
}

.login-card h1 {
  text-align: center;
  color: var(--primary-dark);
  letter-spacing: -0.04em;
}

.login-card form {
  display: grid;
  gap: 1rem;
}

.admin-group-title h2 {
  color: var(--primary-dark);
}

.admin-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-edit-card img {
  width: 100%;
  aspect-ratio: 1 / 0.7;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
}

.empty-state {
  padding: 2rem;
  text-align: center;
  color: var(--muted);
}

@media (max-width: 1180px) {
  .site-nav a,
  .site-nav button {
    padding-inline: 0.72rem;
    font-size: 0.94rem;
  }
}

@media (max-width: 980px) {
  .hero,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .gallery-grid,
  .gallery-grid.compact,
  .admin-gallery,
  .stats-grid,
  .menu-pdf-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .admin-shell {
    grid-template-columns: 1fr;
  }

  .admin-side {
    position: static;
    height: auto;
    flex-direction: row;
    flex-wrap: wrap;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

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

@media (max-width: 860px) {
  :root {
    --header-height: 70px;
  }

  .site-header {
    align-items: center;
    gap: 1rem;
    min-height: var(--header-height);
  }

  .brand {
    max-width: calc(100% - 160px);
  }

  .brand span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .site-nav {
    position: fixed;
    top: calc(var(--header-height) + 0.75rem);
    left: 1rem;
    right: 1rem;
    z-index: 150;
    display: none;
    max-height: calc(100vh - var(--header-height) - 1.5rem);
    overflow: auto;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0.35rem;
    width: auto;
    margin: 0;
    padding: 0.8rem;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a,
  .site-nav button {
    justify-content: space-between;
    width: 100%;
    min-height: 48px;
    padding: 0.95rem 1rem;
    border-radius: 18px;
    font-size: 1rem;
  }

  .nav-dropdown {
    display: block;
    width: 100%;
  }

  .nav-dropdown-menu {
    position: static;
    display: none;
    width: 100%;
    min-width: 0;
    max-width: none;
    gap: 0.35rem;
    padding: 0.35rem 0 0.2rem 0.65rem;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
  }

  .nav-dropdown-menu::before {
    display: none;
  }

  .nav-dropdown.open .nav-dropdown-menu {
    display: flex;
  }

  .nav-dropdown-menu a {
    min-height: 46px;
    padding: 0.85rem 0.95rem;
    border-radius: 16px;
    background: rgba(244, 223, 229, 0.42);
  }

  .hero {
    padding-top: 2rem;
  }

  .hero-copy,
  .daily-card,
  .public-form {
    padding: 1.25rem;
  }

  .hero-about {
    margin-top: 0.75rem;
    padding: 1.25rem;
  }
}

@media (max-width: 720px) {
  .form-grid.two,
  .grid-form,
  .select-form,
  .card-grid,
  .gallery-grid,
  .gallery-grid.compact,
  .admin-gallery,
  .stats-grid,
  .menu-pdf-grid {
    grid-template-columns: 1fr;
  }

  .cta-band,
  .daily-item,
  .menu-item,
  .cookie-banner {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions,
  .section-head,
  .admin-title,
  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .btn,
  .section-head .text-link,
  .admin-title .btn,
  .form-actions .btn {
    width: 100%;
  }

  .page-hero {
    padding-top: 2.5rem;
  }

  .card.large {
    grid-column: auto;
    min-height: auto;
  }

  .menu-pdf-card {
    min-height: auto;
    padding: 1.25rem;
  }

  .admin-side a {
    width: 100%;
  }

  .cookie-banner {
    display: grid;
  }

  .cookie-banner button {
    width: 100%;
  }
}

@media (max-width: 460px) {
  .site-header,
  .admin-top {
    padding-inline: 0.75rem;
  }

  .brand {
    gap: 0.55rem;
    max-width: calc(100% - 128px);
  }

  .brand-mark,
  .brand-logo {
    width: 2.35rem;
    height: 2.35rem;
  }

  .nav-toggle {
    padding: 0.66rem 0.82rem;
  }

  .nav-toggle span:first-child {
    font-size: 0.95rem;
  }

  .hero,
  .page-hero,
  .section,
  .site-footer {
    width: min(100% - 1rem, 1160px);
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.15rem, 13vw, 3.2rem);
  }

  .daily-card h2 {
    font-size: 1.55rem;
  }

  .contact-card,
  .cta-band,
  .site-footer {
    padding: 1.25rem;
  }
}

.admin-logo-preview {
  display: block;
  width: 88px;
  height: 88px;
  margin-top: 0.7rem;
  object-fit: contain;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: rgba(255,255,255,0.8);
  padding: 0.5rem;
}
