:root {
  --green-950: #042d22;
  --green-900: #063f2e;
  --green-800: #07543d;
  --green-700: #087556;
  --green-100: #dff3e9;
  --green-50: #f2faf6;
  --yellow: #f5c942;
  --blue: #2f62a8;
  --red: #db3148;
  --ink: #14231d;
  --muted: #5e6e67;
  --line: #d8e3dd;
  --paper: #ffffff;
  --canvas: #f5f8f6;
  --danger: #a72535;
  --warning: #8a6200;
  --radius: 18px;
  --shadow: 0 18px 45px rgba(4, 45, 34, .10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
}
a { color: var(--green-800); text-decoration-thickness: 1px; text-underline-offset: 3px; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
button, .button { cursor: pointer; }
.container { width: min(1120px, calc(100% - 32px)); margin-inline: auto; }
.narrow { width: min(720px, calc(100% - 32px)); margin-inline: auto; }
.visually-hidden { position: absolute; inline-size: 1px; block-size: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.header-inner { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand img { width: 238px; height: auto; }
.nav { display: flex; align-items: center; gap: 18px; }
.nav a { color: var(--ink); text-decoration: none; font-weight: 680; }
.nav a:hover { color: var(--green-700); }
.mobile-menu { display: none; border: 0; background: transparent; color: var(--green-900); font-size: 1.55rem; }

.main { min-height: calc(100vh - 180px); }
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--green-950), var(--green-800));
  color: #fff;
  padding: 64px 0 74px;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -90px -150px auto;
  width: 380px;
  height: 380px;
  border: 70px solid rgba(245, 201, 66, .12);
  border-radius: 50%;
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr .85fr; gap: 54px; align-items: center; }
.eyebrow { color: var(--yellow); font-size: .86rem; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.hero h1 { max-width: 720px; margin: 8px 0 14px; font-size: clamp(2.15rem, 5vw, 4.2rem); line-height: 1.03; letter-spacing: -.045em; }
.hero p { margin: 0; max-width: 680px; color: #dceae4; font-size: 1.08rem; }
.route-card { border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.08); border-radius: 28px; padding: 25px; box-shadow: 0 22px 55px rgba(0,0,0,.17); }
.route-line { display: flex; align-items: center; gap: 14px; }
.route-dot { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 16px; font-size: 1.35rem; background: #fff; color: var(--green-900); }
.route-path { flex: 1; height: 2px; background: repeating-linear-gradient(90deg, var(--yellow) 0 9px, transparent 9px 15px); }
.route-card strong { display: block; margin-top: 18px; font-size: 1.25rem; }
.route-card span { color: #dceae4; }

.search-panel { position: relative; z-index: 5; margin-top: -35px; }
.search-box { padding: 24px; border: 1px solid var(--line); background: var(--paper); border-radius: 24px; box-shadow: var(--shadow); }
.search-form { display: grid; grid-template-columns: 1.5fr .8fr auto; gap: 12px; align-items: end; }
.field { display: grid; gap: 7px; }
.field > label, .group-label { font-size: .91rem; font-weight: 760; color: #31433b; }
input, select, textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #c7d6ce;
  background: #fff;
  color: var(--ink);
  border-radius: 12px;
  padding: 11px 13px;
  outline: none;
}
textarea { min-height: 130px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--green-700); box-shadow: 0 0 0 4px rgba(8,117,86,.12); }
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: var(--green-800);
  color: #fff;
  font-weight: 780;
  text-decoration: none;
}
.button:hover { background: var(--green-700); }
.button:disabled { cursor: not-allowed; opacity: .58; }
.button-secondary { background: #fff; color: var(--green-900); border-color: #b9cbc1; }
.button-secondary:hover { background: var(--green-50); }
.button-danger { background: #fff; color: var(--danger); border-color: #e3b8be; }
.button-small { min-height: 38px; padding: 7px 12px; border-radius: 9px; font-size: .9rem; }
.button-wide { width: 100%; }

.category-strip { display: flex; gap: 9px; flex-wrap: wrap; margin-top: 17px; }
.chip, .keyword-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  border: 1px solid #cad8d1;
  border-radius: 999px;
  background: #fff;
  color: #29453a;
  padding: 7px 13px;
  text-decoration: none;
  font-size: .9rem;
  font-weight: 700;
}
.chip:hover, .keyword-chip:hover { border-color: var(--green-700); background: var(--green-50); }
.keyword-chip input { width: auto; min-height: 0; margin: 0; accent-color: var(--green-700); }
.keyword-chip:has(input:checked) { background: var(--green-100); border-color: var(--green-700); }
.section { padding: 56px 0; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 24px; }
.section h1, .section h2 { margin: 0; letter-spacing: -.025em; line-height: 1.15; }
.section h1 { font-size: clamp(1.85rem, 4vw, 2.8rem); }
.section h2 { font-size: clamp(1.45rem, 3vw, 2.1rem); }
.muted { color: var(--muted); }

.results-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.profile-card { display: flex; flex-direction: column; min-width: 0; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; box-shadow: 0 8px 24px rgba(4,45,34,.05); }
.profile-card-link { color: inherit; text-decoration: none; cursor: pointer; }
.profile-card-link:focus-visible { outline: 3px solid rgba(17,104,73,.35); outline-offset: 3px; }
.profile-card-featured { border: 2px solid #e2b52d; background: linear-gradient(180deg, #fffdf5, #fff); box-shadow: 0 12px 30px rgba(123,88,0,.13); }
.profile-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); transition: .2s ease; }
.profile-top { display: flex; gap: 13px; align-items: center; }
.avatar { flex: 0 0 auto; width: 58px; height: 58px; border-radius: 17px; overflow: hidden; display: grid; place-items: center; background: var(--green-100); color: var(--green-900); font-size: 1.3rem; font-weight: 850; }
.avatar img { width: 100%; height: 100%; object-fit: cover; }
.profile-card h3 { margin: 0 0 2px; font-size: 1.08rem; line-height: 1.25; }
.profile-card .category { color: var(--green-700); font-weight: 730; font-size: .91rem; }
.profile-card p { margin: 15px 0; color: #4d6057; }
.profile-card .card-footer { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.location { color: var(--muted); font-size: .9rem; }
.badge { display: inline-flex; align-items: center; gap: 5px; width: fit-content; border-radius: 999px; padding: 4px 9px; font-size: .76rem; font-weight: 820; }
.badge-verified { background: #dff5ea; color: #07543d; }
.badge-imported { background: #f4efe1; color: #71540b; }
.badge-pending { background: #fff1c8; color: #765500; }
.badge-rejected, .badge-suspended { background: #fae5e8; color: #972536; }
.badge-approved { background: #dff5ea; color: #07543d; }
.badge-free { background: #edf2ef; color: #3b5348; }
.badge-pro { background: #dcefe8; color: #064d39; }
.badge-featured { background: #fff0bb; color: #735200; }
.empty { padding: 34px; border: 1px dashed #b7c9bf; border-radius: 18px; background: #fff; text-align: center; }
.empty h2, .empty h3 { margin: 0 0 8px; }

.notice { margin: 18px 0; padding: 14px 16px; border-radius: 12px; border: 1px solid; }
.notice-info { background: #eaf2fb; border-color: #b8cee8; color: #24496f; }
.notice-success { background: #e4f5eb; border-color: #add7bf; color: #0b5a3c; }
.notice-warning { background: #fff5d8; border-color: #ecd68f; color: #705300; }
.notice-danger { background: #fdebed; border-color: #e7b7bd; color: #8e2533; }

.auth-wrap { padding: 55px 0; }
.auth-card, .panel { background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: clamp(22px, 4vw, 38px); box-shadow: var(--shadow); }
.auth-card h1, .panel h1 { margin: 0 0 7px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 17px; }
.form-grid .full { grid-column: 1 / -1; }
.form-actions { display: flex; flex-wrap: wrap; gap: 11px; align-items: center; margin-top: 22px; }
.help { margin: 0; color: var(--muted); font-size: .84rem; }
.error-list { margin: 0; padding-left: 20px; }
.required { color: var(--danger); }
.keyword-options { display: flex; flex-wrap: wrap; gap: 9px; }
.custom-category[hidden], .custom-keyword[hidden] { display: none; }

.dashboard-shell { padding: 42px 0 62px; }
.dashboard-grid { display: grid; grid-template-columns: 250px minmax(0,1fr); gap: 24px; align-items: start; }
.side-nav { position: sticky; top: 98px; background: var(--green-950); color: #fff; border-radius: 19px; padding: 18px; }
.side-nav strong { display: block; padding: 8px 10px 14px; }
.side-nav a { display: block; color: #dceae4; text-decoration: none; padding: 10px; border-radius: 10px; font-weight: 680; }
.side-nav a:hover, .side-nav a.active { background: rgba(255,255,255,.1); color: #fff; }
.status-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.copy-row { display: flex; gap: 8px; }
.copy-row input { min-width: 0; }
.stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; margin-bottom: 20px; }
.stat { background: #fff; border: 1px solid var(--line); border-radius: 15px; padding: 17px; }
.stat strong { display: block; font-size: 1.7rem; line-height: 1; color: var(--green-900); }
.stat span { color: var(--muted); font-size: .9rem; }
.metric-details { display: flex; flex-wrap: wrap; gap: 10px 20px; margin: -5px 0 24px; color: var(--muted); font-size: .92rem; }
.promotion-box { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 24px; padding: 22px; border: 1px solid #e5ce78; border-radius: 17px; background: linear-gradient(135deg, #fff9e5, #fff); }
.promotion-box h2 { margin: 9px 0 5px; }
.promotion-box p { margin: 0; }
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; min-width: 760px; }
th, td { padding: 13px 11px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
th { color: #41554b; font-size: .84rem; text-transform: uppercase; letter-spacing: .04em; }
.actions { display: flex; gap: 7px; flex-wrap: wrap; }
.inline-form { display: inline; }
.toggle-row { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 18px; border: 1px solid var(--line); border-radius: 14px; background: var(--green-50); }
.switch { position: relative; width: 52px; height: 30px; flex: 0 0 auto; }
.switch input { opacity: 0; width: 0; height: 0; }
.switch span { position: absolute; inset: 0; border-radius: 999px; background: #93a69c; transition: .2s; }
.switch span::after { content: ""; position: absolute; top: 4px; left: 4px; width: 22px; height: 22px; border-radius: 50%; background: #fff; transition: .2s; }
.switch input:checked + span { background: var(--green-700); }
.switch input:checked + span::after { transform: translateX(22px); }

.profile-page { padding: 42px 0 65px; }
.profile-hero { display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: start; padding: 30px; border-radius: 24px; background: #fff; border: 1px solid var(--line); }
.profile-hero-featured { border: 2px solid #e2b52d; background: linear-gradient(135deg, #fffdf4, #fff); }
.profile-identity { display: flex; gap: 20px; align-items: center; }
.profile-avatar { width: 104px; height: 104px; border-radius: 27px; overflow: hidden; display: grid; place-items: center; background: var(--green-100); color: var(--green-900); font-size: 2rem; font-weight: 850; }
.profile-avatar img { width: 100%; height: 100%; object-fit: cover; }
.profile-hero h1 { margin: 0 0 6px; font-size: clamp(1.8rem,4vw,3rem); line-height: 1.05; }
.profile-meta { display: flex; flex-wrap: wrap; gap: 8px 14px; color: var(--muted); }
.profile-body { display: grid; grid-template-columns: minmax(0,1fr) 330px; gap: 24px; margin-top: 24px; }
.contact-card { position: sticky; top: 98px; }
.contact-list { display: grid; gap: 10px; }
.gallery { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-top: 17px; }
.gallery img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 12px; background: #eef3f0; }
.photo-preview { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.photo-item { position: relative; }
.photo-item img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 12px; }
.photo-item label { position: absolute; inset: auto 7px 7px 7px; background: rgba(255,255,255,.92); padding: 5px 7px; border-radius: 8px; font-size: .76rem; }

.sponsor-wrap { padding: 24px 0 0; }
.sponsor-banner { display: grid; grid-template-columns: minmax(150px,.55fr) 1fr; align-items: center; gap: 4px 24px; padding: 18px 22px; border: 1px solid #d7c06b; border-radius: 17px; background: linear-gradient(120deg, #fff7d8, #fff); color: var(--ink); text-decoration: none; box-shadow: 0 8px 22px rgba(93,70,0,.08); }
.sponsor-banner:hover { border-color: #b89413; }
.sponsor-banner strong { grid-row: 1 / span 2; font-size: 1.18rem; color: var(--green-900); }
.sponsor-banner > span:last-child { color: var(--muted); }
.sponsor-label { color: #806000; font-size: .75rem; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }
.plan-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 14px; }
.plan-card { padding: 20px; border: 1px solid var(--line); border-radius: 16px; background: var(--green-50); }
.plan-card-pro { border-color: #9ccab9; background: #f3fbf7; }
.plan-card h3 { margin: 11px 0 6px; }
.plan-card p { margin: 0; color: var(--muted); }

.directory-section { background: #eef5f1; }
.directory-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 14px; }
.directory-card { display: grid; gap: 5px; min-height: 132px; padding: 20px; border: 1px solid var(--line); border-radius: 17px; background: #fff; color: var(--ink); text-decoration: none; box-shadow: 0 7px 20px rgba(4,45,34,.04); }
.directory-card:hover { transform: translateY(-2px); border-color: #9ccab9; box-shadow: var(--shadow); }
.directory-card strong { font-size: 1.08rem; color: var(--green-900); }
.directory-card span { color: var(--green-700); font-weight: 750; }
.directory-card small { color: var(--muted); }
.directory-hero { padding: 48px 0; background: linear-gradient(135deg,var(--green-950),var(--green-800)); color: #fff; }
.directory-hero h1 { max-width: 850px; margin: 9px 0 12px; font-size: clamp(2rem,5vw,3.6rem); line-height: 1.06; }
.directory-hero p { max-width: 790px; margin: 0; color: #dceae4; font-size: 1.06rem; }
.seo-links { margin-top: 42px; padding-top: 30px; border-top: 1px solid var(--line); }
.seo-links h2 { margin: 0; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 7px; align-items: center; margin: 0 0 22px; color: var(--muted); font-size: .86rem; }
.breadcrumbs a { color: inherit; }
.directory-hero .breadcrumbs, .event-hero .breadcrumbs { color: #dceae4; margin-bottom: 16px; }
.profile-page > .container > .breadcrumbs, .event-page > .container > .breadcrumbs { margin-bottom: 18px; }
.faq-list { display: grid; gap: 11px; }
.faq-list details { padding: 17px 19px; border: 1px solid var(--line); border-radius: 14px; background: #fff; }
.faq-list summary { cursor: pointer; color: var(--green-900); font-weight: 780; }
.faq-list p { margin: 12px 0 0; color: var(--muted); }

.event-hero { padding: 52px 0; background: linear-gradient(135deg, var(--green-950), var(--green-800)); color: #fff; }
.event-hero .container { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.event-hero h1 { margin: 7px 0 10px; font-size: clamp(2rem,5vw,3.6rem); line-height: 1.05; }
.event-hero p { margin: 0; max-width: 720px; color: #dceae4; }
.event-hero .button { background: var(--yellow); color: var(--green-950); }
.events-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 20px; }
.event-card { overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: 0 8px 24px rgba(4,45,34,.06); }
.event-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); transition: .2s ease; }
.event-poster { display: grid; place-items: center; aspect-ratio: 4/3; overflow: hidden; background: linear-gradient(145deg,var(--green-950),var(--green-700)); color: #fff; text-decoration: none; }
.event-poster img { width: 100%; height: 100%; object-fit: cover; }
.event-poster > span { display: grid; place-items: center; gap: 3px; color: var(--yellow); font-weight: 850; letter-spacing: .08em; }
.event-poster > span strong { font-size: 3rem; line-height: 1; color: #fff; }
.event-card-body { padding: 19px; }
.event-card h3 { margin: 12px 0 10px; font-size: 1.28rem; }
.event-card h3 a { color: var(--ink); text-decoration: none; }
.event-meta { display: grid; gap: 7px; margin-bottom: 17px; color: var(--muted); font-size: .91rem; }
.event-manage-list { display: grid; gap: 12px; }
.event-manage-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 16px; border: 1px solid var(--line); border-radius: 14px; }
.event-manage-row > div:first-child { display: grid; gap: 5px; }
.event-manage-row > div:first-child > span:not(.badge) { color: var(--muted); font-size: .9rem; }
.event-manage-row small { color: var(--danger); }
.event-page { padding: 42px 0 65px; }
.event-detail { display: grid; grid-template-columns: minmax(280px,430px) minmax(0,1fr); gap: 32px; align-items: start; padding: 28px; border: 1px solid var(--line); border-radius: 24px; background: #fff; box-shadow: var(--shadow); }
.event-detail-poster { overflow: hidden; border-radius: 18px; background: var(--green-50); }
.event-detail-poster img { display: block; width: 100%; max-height: 620px; object-fit: contain; background: #edf2ef; }
.event-poster-placeholder { display: grid; place-items: center; min-height: 430px; padding: 30px; background: linear-gradient(145deg,var(--green-950),var(--green-700)); color: #fff; text-align: center; }
.event-poster-placeholder span { color: var(--yellow); font-weight: 850; text-transform: uppercase; letter-spacing: .1em; }
.event-poster-placeholder strong { font-size: 2rem; }
.event-detail-info h1 { margin: 12px 0 22px; font-size: clamp(2rem,5vw,3.7rem); line-height: 1.02; }
.event-facts { display: grid; gap: 14px; margin-bottom: 22px; }
.event-facts > div { display: grid; gap: 2px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.event-facts span { color: var(--muted); font-size: .8rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.event-facts strong { font-size: 1.05rem; }
.event-facts small { color: var(--muted); }
.event-content, .comments-section { margin-top: 22px; }
.comments-list { display: grid; gap: 12px; }
.comment { padding: 16px; border: 1px solid var(--line); border-radius: 14px; background: var(--green-50); }
.comment time, .moderation-item time { display: block; margin-top: 2px; color: var(--muted); font-size: .8rem; }
.comment p { margin: 10px 0 0; }
.comment-form { margin-top: 25px; padding-top: 23px; border-top: 1px solid var(--line); }
.comment-form .button { margin-top: 15px; }
.moderation-list { display: grid; gap: 12px; }
.moderation-item { display: flex; justify-content: space-between; gap: 22px; padding: 17px; border: 1px solid var(--line); border-radius: 14px; }
.moderation-item p { margin: 9px 0 0; }
.photo-preview > img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 12px; }

.install { min-height: 100vh; display: grid; place-items: center; padding: 32px 0; background: linear-gradient(145deg, var(--green-950), var(--green-800)); }
.install .auth-card { width: min(680px, calc(100% - 32px)); }
.install-logo { width: 260px; margin-bottom: 22px; }
.checks { display: grid; gap: 8px; padding: 0; list-style: none; }
.checks li { padding: 9px 11px; border-radius: 9px; background: var(--green-50); }

.footer { padding: 44px 0; background: var(--green-950); color: #cfe0d8; }
.footer-grid { display: grid; grid-template-columns: 1.25fr repeat(3,1fr); gap: 34px; align-items: start; }
.footer-grid p { margin: 8px 0 14px; max-width: 330px; }
.footer-grid nav { display: grid; gap: 7px; margin-top: 10px; }
.footer a { color: #fff; }

@media (max-width: 900px) {
  .hero-grid, .profile-body { grid-template-columns: 1fr; }
  .route-card { display: none; }
  .results-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .dashboard-grid { grid-template-columns: 1fr; }
  .side-nav { position: static; display: flex; overflow-x: auto; }
  .side-nav strong { display: none; }
  .side-nav a { white-space: nowrap; }
  .contact-card { position: static; }
  .stats { grid-template-columns: repeat(2,1fr); }
  .plan-grid { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .event-detail { grid-template-columns: minmax(240px,340px) minmax(0,1fr); }
  .directory-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .footer-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (max-width: 680px) {
  .container, .narrow { width: min(100% - 22px, 1120px); }
  .header-inner { min-height: 68px; }
  .brand img { width: 192px; }
  .mobile-menu { display: block; }
  .nav { display: none; position: absolute; inset: 68px 11px auto; flex-direction: column; align-items: stretch; padding: 14px; border: 1px solid var(--line); border-radius: 14px; background: #fff; box-shadow: var(--shadow); }
  .nav.open { display: flex; }
  .hero { padding: 48px 0 66px; }
  .search-box { padding: 17px; }
  .search-form, .form-grid { grid-template-columns: 1fr; }
  .form-grid .full { grid-column: auto; }
  .results-grid { grid-template-columns: 1fr; }
  .profile-hero { grid-template-columns: 1fr; padding: 21px; }
  .profile-identity { align-items: flex-start; }
  .profile-avatar { width: 76px; height: 76px; border-radius: 20px; }
  .gallery, .photo-preview { grid-template-columns: repeat(2,1fr); }
  .directory-grid, .footer-grid { grid-template-columns: 1fr; }
  .copy-row { flex-direction: column; }
  .stats { grid-template-columns: 1fr 1fr; }
  .promotion-box, .sponsor-banner { align-items: stretch; grid-template-columns: 1fr; flex-direction: column; }
  .sponsor-banner strong { grid-row: auto; }
  .event-hero .container, .event-manage-row, .moderation-item { align-items: stretch; flex-direction: column; }
  .events-grid, .event-detail { grid-template-columns: 1fr; }
  .event-detail { padding: 17px; }
  .event-poster-placeholder { min-height: 300px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}
