/* Crowned Final theme ported from "Moegliche Verbesserungen_.zip". */

:root {
  --page: #efe7d6;
  --paper: #e6dcc6;
  --paper-soft: #f6f0e4;
  --ink: #211c14;
  --ink-soft: #3a3327;
  --muted: #5f5645;
  --line: rgba(160, 133, 96, 0.34);
  --line-soft: rgba(160, 133, 96, 0.2);
  --gold: #b8863f;
  --gold-deep: #8a6420;
  --gold-light: #e6c98a;
  --moss: #5f7a4a;
  --moss-deep: #465c37;
  --night: #14110c;
  --night-soft: #1b1710;
  --radius: 16px;
  --shadow: 0 18px 48px -26px rgba(20, 15, 8, 0.34);
  --shadow-soft: 0 14px 34px -20px rgba(20, 15, 8, 0.24);
}

html {
  background: var(--night);
  scroll-padding-top: 84px;
}

body {
  color: var(--ink-soft);
  background:
    radial-gradient(ellipse 70% 45% at 50% 0%, rgba(184, 134, 63, 0.07), transparent 58%),
    var(--page);
  font-family: "Manrope", system-ui, sans-serif;
  line-height: 1.65;
}

h1,
h2,
h3,
h4,
h5,
h6,
.brand,
.footer-brand,
.stat-value,
.store-price {
  color: var(--ink);
  font-family: "Cinzel", Georgia, serif;
}

a {
  color: var(--gold-deep);
}

a:hover {
  color: var(--gold);
}

.container {
  width: min(1200px, 92vw);
}

/* Header */

.site-header,
.site-header.light,
.site-header.scrolled {
  min-height: 70px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(184, 134, 63, 0.18);
  color: #fff;
  background: rgba(20, 17, 12, 0.92);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(14px);
}

body[data-crowned-page="home"] .site-header:not(.scrolled) {
  padding: 16px 0;
  border-bottom-color: transparent;
  background: linear-gradient(180deg, rgba(12, 10, 6, 0.76), rgba(12, 10, 6, 0));
  box-shadow: none;
  backdrop-filter: none;
}

.header-inner {
  min-height: 48px;
  gap: 22px;
}

.brand-wrap {
  gap: 12px;
}

.brand-icon {
  width: 38px;
  height: 38px;
  border: 1.5px solid var(--gold);
  border-radius: 9px;
  object-fit: cover;
  box-shadow: 0 7px 18px rgba(0, 0, 0, 0.28);
}

.site-header .brand,
.site-header.light .brand {
  color: #fff;
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.site-header .nav,
.site-header.light .nav {
  gap: 4px;
}

.site-header .nav a,
.site-header.light .nav a {
  padding: 9px 12px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.site-header .nav a:hover,
.site-header .nav a.active,
.site-header.light .nav a:hover,
.site-header.light .nav a.active {
  color: #fff;
  background: rgba(184, 134, 63, 0.16);
}

.site-header .nav .nav-join-cta,
.site-header.light .nav .nav-join-cta {
  margin-left: 8px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #1a1208;
  background: linear-gradient(135deg, var(--gold), #a2762f);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.28);
  font-weight: 800;
}

.site-header .nav .nav-join-cta:hover,
.site-header.light .nav .nav-join-cta:hover {
  color: #1a1208;
  background: linear-gradient(135deg, #c99a4f, var(--gold));
}

/* Homepage hero */

.hero-section {
  position: relative;
  min-height: 100svh;
  padding: 126px 0 94px;
  overflow: hidden;
  color: #fff;
  background-color: var(--night);
  background-image: url("/assets/media/Stadt.png");
  background-position: center;
  background-size: cover;
  isolation: isolate;
}

.hero-section::before,
.hero-section::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
}

.hero-section::before {
  background: linear-gradient(
    90deg,
    rgba(10, 8, 5, 0.93) 0%,
    rgba(10, 8, 5, 0.74) 42%,
    rgba(10, 8, 5, 0.3) 72%,
    rgba(10, 8, 5, 0.46) 100%
  );
}

.hero-section::after {
  background: linear-gradient(
    180deg,
    rgba(10, 8, 5, 0.58) 0%,
    transparent 24%,
    transparent 62%,
    rgba(10, 8, 5, 0.82) 100%
  );
}

#hero-canvas,
.hero-bg-glow,
.hero-grain {
  display: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: clamp(40px, 5vw, 72px);
  width: min(1200px, 92vw);
  max-width: none;
  min-height: calc(100svh - 220px);
  margin: 0 auto;
  padding: 44px 0;
}

.hero-copy {
  display: flex;
  min-height: calc(100svh - 300px);
  max-width: 620px;
  flex-direction: column;
  justify-content: center;
}

.hero-visual {
  display: block;
  min-width: 0;
  animation: crowned-wordmark-float 6s ease-in-out infinite;
}

.hero-logo-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  padding: 0;
  border: 1px solid rgba(201, 154, 63, 0.62);
  border-radius: 16px;
  background: #100d09;
  box-shadow:
    0 28px 72px rgba(0, 0, 0, 0.5),
    inset 0 0 0 1px rgba(255, 255, 255, 0.025);
  transform: perspective(1100px) rotateY(-2deg);
  transition:
    border-color 280ms ease,
    box-shadow 280ms ease,
    transform 380ms cubic-bezier(0.2, 1, 0.2, 1);
}

.hero-logo-wrap::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.045),
    transparent 24%,
    transparent 72%,
    rgba(0, 0, 0, 0.22)
  );
  content: "";
  pointer-events: none;
}

.hero-logo-wrap::after {
  position: absolute;
  z-index: 3;
  top: -55%;
  bottom: -55%;
  left: -45%;
  width: 18%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.15),
    transparent
  );
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: rotate(17deg);
  animation: crowned-wordmark-shine 7s ease-in-out 1.8s infinite;
}

.hero-logo-wrap:hover {
  border-color: rgba(230, 201, 138, 0.82);
  box-shadow:
    0 34px 84px rgba(0, 0, 0, 0.58),
    0 0 28px rgba(184, 134, 63, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  transform: perspective(1100px) rotateY(0) translateY(-3px);
}

.hero-logo-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.hero-badges {
  display: none;
}

@keyframes crowned-wordmark-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

@keyframes crowned-wordmark-shine {
  0%,
  62% {
    left: -45%;
    opacity: 0;
  }

  68% {
    opacity: 0.7;
  }

  82% {
    left: 130%;
    opacity: 0;
  }

  100% {
    left: 130%;
    opacity: 0;
  }
}

.hero-eyebrow,
.eyebrow,
.section-label,
.store-product-category,
.store-product-type {
  color: var(--gold-deep);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 24px;
  color: #d9b877;
}

.hero-eyebrow::before,
.section-label::before,
.eyebrow::before {
  display: inline-block;
  width: 30px;
  height: 1px;
  margin-right: 10px;
  vertical-align: middle;
  background: currentColor;
  content: "";
}

.hero-title {
  max-width: 780px;
  max-inline-size: 100%;
  margin: 0 0 24px;
  color: #fff;
  font-size: 4.8rem;
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: 0;
  overflow-wrap: break-word;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
}

.gold-word {
  color: var(--gold-light);
}

.hero-lead {
  max-width: 52ch;
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.1rem;
  line-height: 1.72;
}

.hero-sub {
  max-width: 50ch;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.96rem;
}

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

.hero-socials {
  max-width: 100%;
  margin-top: 30px !important;
}

.hero-scroll {
  bottom: 24px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.28em;
}

/* Homepage status strip */

.home-status-strip {
  position: relative;
  z-index: 3;
  border-top: 1px solid rgba(184, 134, 63, 0.16);
  border-bottom: 1px solid rgba(184, 134, 63, 0.12);
  color: #fff;
  background: var(--night-soft);
}

.home-status-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.home-status-cell {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
  padding: 23px 22px;
}

.home-status-cell + .home-status-cell {
  border-left: 1px dashed rgba(184, 134, 63, 0.2);
}

.home-status-cell .status-dot {
  width: 8px;
  height: 8px;
  margin: 0;
  flex: 0 0 auto;
}

.home-status-label {
  display: block;
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.home-status-value {
  display: block;
  overflow: hidden;
  color: #fff;
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.87rem;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-status-value.mono {
  color: #d9b877;
  font-family: "JetBrains Mono", Consolas, monospace;
  font-size: 0.82rem;
}

/* Shared light content */

.content-area,
.content-wrap {
  background: transparent;
}

.content-area {
  background:
    radial-gradient(ellipse 70% 42% at 50% 0%, rgba(184, 134, 63, 0.08), transparent 56%),
    var(--page);
}

.section {
  padding: 96px 0;
}

.section + .section {
  border-top: 1px solid rgba(160, 133, 96, 0.16);
}

.section-title {
  max-width: 760px;
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.12;
}

.section-lead,
.lead {
  max-width: 62ch;
  color: var(--ink-soft);
  font-size: 1.03rem;
}

.grid {
  gap: 22px;
}

.card,
.feature-card,
.stat-card,
.rule-public,
.player-card,
.percent-summary,
.forum-pill,
.store-trust-panel,
.store-product-card,
.store-detail-main,
.store-purchase-panel,
.store-result-card,
.store-state {
  border-color: var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.2)),
    var(--paper);
  box-shadow: var(--shadow-soft);
}

.card,
.feature-card {
  padding: 30px;
  border-radius: 16px;
}

.card:hover,
.feature-card:hover,
.player-card:hover {
  border-color: rgba(184, 134, 63, 0.56);
  box-shadow: 0 20px 44px -24px rgba(20, 15, 8, 0.34);
  transform: translateY(-3px);
}

.card p,
.feature-card p,
.list-muted {
  color: var(--ink-soft);
}

.feature-grid {
  gap: 22px;
}

.feature-icon {
  width: 54px;
  height: 54px;
  padding: 12px;
  border: 1px solid rgba(160, 133, 96, 0.4);
  border-radius: 13px;
  color: var(--gold-deep);
  background: linear-gradient(135deg, var(--page), #d8caa8);
}

.stat-grid {
  gap: 14px;
}

.stat-card {
  border-radius: 13px;
}

.stat-label {
  color: var(--gold-deep);
  font-size: 0.66rem;
  letter-spacing: 0.15em;
}

.stat-value {
  font-size: 1rem;
}

.info-list li {
  border-color: var(--line-soft);
}

.faq-item,
.faq-list details {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.5);
}

.faq-item summary,
.faq-list summary {
  padding: 17px 20px;
  color: var(--ink);
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.96rem;
  font-weight: 700;
}

.faq-body,
.faq-item > div {
  padding: 0 20px 18px;
  color: var(--ink-soft);
}

.map-preview,
.media-placeholder,
.map-placeholder {
  border-color: var(--line);
  color: var(--muted);
  background:
    linear-gradient(rgba(20, 17, 12, 0.35), rgba(20, 17, 12, 0.62)),
    url("/assets/media/Stadt.png") center / cover;
}

/* Buttons */

.btn {
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.btn-primary {
  border-color: rgba(255, 255, 255, 0.14);
  color: #1a1208;
  background: linear-gradient(135deg, #c0913f, #a2762f);
  box-shadow: 0 10px 28px rgba(120, 86, 30, 0.3), inset 0 1px rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
  color: #1a1208;
  background: linear-gradient(135deg, #c99a4f, var(--gold));
  box-shadow: 0 13px 32px rgba(120, 86, 30, 0.38), inset 0 1px rgba(255, 255, 255, 0.32);
}

.btn-secondary {
  border-color: rgba(184, 134, 63, 0.58);
  color: #4c3510;
  background: rgba(255, 253, 247, 0.86);
  box-shadow: 0 6px 18px rgba(33, 28, 20, 0.1);
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--ink);
  background: #fffdf7;
  box-shadow: 0 9px 24px rgba(33, 28, 20, 0.16);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
}

.btn-ghost:hover {
  border-color: rgba(230, 201, 138, 0.64);
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

.btn-sm {
  min-height: 38px;
  padding: 9px 14px;
}

/* Page heroes use the ZIP's route-specific imagery. */

.page-hero {
  position: relative;
  min-height: 440px;
  padding: 156px 0 76px;
  overflow: hidden;
  color: #fff;
  background-color: var(--night);
  background-image:
    linear-gradient(90deg, rgba(10, 8, 5, 0.9), rgba(10, 8, 5, 0.5)),
    linear-gradient(180deg, rgba(10, 8, 5, 0.28), rgba(10, 8, 5, 0.8)),
    var(--page-hero-image, url("/assets/media/Stadt.png"));
  background-position: center;
  background-size: cover;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 850px;
  margin: 12px 0 16px;
  color: #fff;
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1.1;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.38);
}

.page-hero .eyebrow {
  color: #d9b877;
}

.page-hero .lead {
  color: rgba(255, 255, 255, 0.78);
}

body[data-crowned-page="join"] { --page-hero-image: url("/assets/media/Koenigswahl.png"); }
body[data-crowned-page="rules"] { --page-hero-image: url("/assets/media/Gruppe2.png"); }
body[data-crowned-page="server"] { --page-hero-image: url("/assets/media/Stadt.png"); }
body[data-crowned-page="faq"] { --page-hero-image: url("/assets/media/Kirche.png"); }
body[data-crowned-page="forum"] { --page-hero-image: url("/assets/media/Gruppe2.png"); }
body[data-crowned-page="report"] { --page-hero-image: url("/assets/media/Grab.png"); }
body[data-crowned-page="map"] { --page-hero-image: url("/assets/media/Stadt.png"); }
body[data-crowned-page="shop"] { --page-hero-image: url("/assets/media/Brunnen.png"); }
body[data-crowned-page="agb"] { --page-hero-image: url("/assets/media/Turnier.png"); }
body[data-crowned-page="datenschutz"] { --page-hero-image: url("/assets/media/Mond.png"); }
body[data-crowned-page="impressum"] { --page-hero-image: url("/assets/media/Kirche.png"); }

/* Forms, tables and content tools */

.form input,
.form textarea,
.form select,
.store-field input,
.store-field select {
  border-color: var(--line);
  border-radius: 9px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.58);
}

.form input:focus,
.form textarea:focus,
.form select:focus,
.store-field input:focus,
.store-field select:focus {
  border-color: var(--gold);
  background: #fffdf7;
  box-shadow: 0 0 0 3px rgba(184, 134, 63, 0.14);
}

table,
.table-wrap {
  border-color: var(--line);
}

th,
td {
  border-color: var(--line-soft);
}

.rule-public strong,
.player-name {
  color: var(--ink);
}

/* Final call to action */

.cta-banner {
  position: relative;
  min-height: 390px;
  padding: 86px 34px;
  overflow: hidden;
  border: 1px solid rgba(184, 134, 63, 0.26);
  border-radius: 16px;
  color: #fff;
  background:
    radial-gradient(ellipse 70% 80% at 50% 50%, rgba(20, 17, 12, 0.52), rgba(12, 10, 6, 0.92)),
    url("/assets/media/Turnier.png") center / cover;
  box-shadow: 0 24px 54px -28px rgba(0, 0, 0, 0.62);
}

.cta-banner::before {
  display: none;
}

.cta-banner h2 {
  color: #fff;
  font-size: 3rem;
  line-height: 1.1;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.74);
}

/* Store */

.store-page {
  padding-top: 70px;
  background:
    radial-gradient(ellipse 70% 42% at 50% 0%, rgba(184, 134, 63, 0.08), transparent 56%),
    var(--page);
}

.store-hero {
  position: relative;
  min-height: 520px;
  padding: 108px 0 72px;
  overflow: hidden;
  border-bottom: 1px solid rgba(184, 134, 63, 0.18);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(10, 8, 5, 0.94), rgba(10, 8, 5, 0.48)),
    linear-gradient(180deg, rgba(10, 8, 5, 0.22), rgba(10, 8, 5, 0.8)),
    url("/assets/media/Brunnen.png") center / cover;
}

.store-hero h1 {
  margin: 10px 0 16px;
  color: #fff;
  font-size: 4rem;
  line-height: 1.08;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.42);
}

.store-hero .eyebrow {
  color: #d9b877;
}

.store-hero .lead {
  color: rgba(255, 255, 255, 0.78);
}

.store-trust-panel {
  border-color: rgba(230, 201, 138, 0.28);
  color: rgba(255, 255, 255, 0.78);
  background: rgba(20, 17, 12, 0.72);
  box-shadow: 0 22px 48px -24px rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(12px);
}

.store-check {
  color: #fff;
  background: var(--moss);
}

.store-section {
  padding: 92px 0 110px;
}

.store-toolbar {
  margin-bottom: 34px;
}

.store-toolbar h2 {
  margin: 7px 0 0;
  font-size: 2.4rem;
}

.store-filter {
  border-color: var(--line);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.42);
}

.store-filter:hover,
.store-filter[aria-pressed="true"] {
  border-color: var(--gold);
  color: var(--ink);
  background: rgba(184, 134, 63, 0.14);
}

.store-grid {
  gap: 22px;
}

.store-product-card {
  border-radius: 16px;
}

.store-product-card:hover {
  border-color: rgba(184, 134, 63, 0.62);
  box-shadow: 0 22px 48px -25px rgba(20, 15, 8, 0.42);
  transform: translateY(-4px);
}

.store-product-media {
  aspect-ratio: 16 / 9;
  border-color: var(--line-soft);
  background: var(--night-soft);
}

.store-product-body {
  padding: 22px;
}

.store-product-card h2 {
  margin: 8px 0 10px;
  font-size: 1.3rem;
}

.store-product-summary {
  color: var(--ink-soft);
}

.store-product-footer,
.store-legal-note {
  border-color: var(--line-soft);
}

.store-detail {
  gap: 24px;
  padding: 56px 0 104px;
}

.store-detail-main,
.store-purchase-panel,
.store-result-card {
  border-radius: 16px;
}

.store-detail-image {
  border-color: var(--line-soft);
  background: var(--night-soft);
}

.store-detail-copy {
  padding: 30px;
}

.store-purchase-panel {
  top: 92px;
  padding: 28px;
}

.store-purchase-panel .store-price {
  color: var(--ink);
}

.store-result {
  background:
    linear-gradient(rgba(20, 17, 12, 0.84), rgba(20, 17, 12, 0.9)),
    url("/assets/media/Brunnen.png") center / cover;
}

.store-result-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0.22)),
    var(--paper);
}

/* Footer */

.site-footer {
  padding: 52px 0 38px;
  border-top: 1px solid rgba(184, 134, 63, 0.18);
  color: rgba(255, 255, 255, 0.48);
  background: var(--night-soft);
}

.footer-inner {
  min-height: 0;
  gap: 20px;
}

.footer-brand {
  color: #c0913f;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.footer-links {
  gap: 22px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.5);
}

.site-footer a:hover {
  color: var(--gold-light);
}

/* Responsive */

@media (max-width: 1080px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.92fr);
    gap: 36px;
  }

  .home-status-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-status-cell:nth-child(4) {
    border-left: 0;
  }

  .home-status-cell:nth-child(n + 4) {
    border-top: 1px dashed rgba(184, 134, 63, 0.2);
  }
}

@media (max-width: 980px) {
  html.menu-open {
    overflow: hidden;
  }

  .site-header #main-nav.nav-open {
    padding: 92px 24px 32px;
    background: rgba(20, 17, 12, 0.98);
  }

  .site-header #main-nav.nav-open a {
    width: min(360px, 100%);
    min-height: 48px;
    justify-content: center;
    font-size: 1rem;
  }

  .site-header #main-nav.nav-open .nav-join-cta {
    margin: 10px 0 0;
  }

  .hero-title {
    font-size: 3.55rem;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.85fr);
    gap: 30px;
  }

  .store-hero-grid,
  .store-detail {
    grid-template-columns: 1fr;
  }

  .store-purchase-panel {
    position: static;
  }
}

@media (max-width: 760px) {
  .hero-section {
    min-height: 760px;
    padding: 104px 0 74px;
    background-position: 58% center;
  }

  .hero-inner,
  .hero-copy {
    min-height: 580px;
  }

  .hero-inner {
    display: block;
  }

  .hero-visual {
    display: none;
  }

  .hero-title {
    font-size: 3.15rem;
  }

  .hero-lead {
    font-size: 1rem;
  }

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

  .home-status-cell:nth-child(3),
  .home-status-cell:nth-child(5) {
    border-left: 0;
  }

  .home-status-cell:nth-child(n + 3) {
    border-top: 1px dashed rgba(184, 134, 63, 0.2);
  }

  .section {
    padding: 72px 0;
  }

  .section-title,
  .cta-banner h2 {
    font-size: 2.25rem;
  }

  .page-hero {
    min-height: 390px;
    padding: 132px 0 60px;
  }

  .page-hero h1 {
    font-size: 2.55rem;
  }

  .store-hero {
    min-height: 500px;
    padding: 84px 0 60px;
  }

  .store-hero h1 {
    font-size: 2.8rem;
  }

  .cta-banner {
    min-height: 360px;
    padding: 68px 22px;
  }
}

@media (max-width: 520px) {
  .container,
  .hero-inner {
    width: min(100% - 28px, 1200px);
  }

  .hero-section {
    min-height: 720px;
    background-position: 63% center;
  }

  .hero-title {
    font-size: 2.3rem;
    line-height: 1.12;
  }

  .hero-copy,
  .hero-eyebrow,
  .hero-lead,
  .hero-sub,
  .hero-actions,
  .hero-socials {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .hero-eyebrow {
    flex-wrap: wrap;
    font-size: 0.64rem;
    letter-spacing: 0.18em;
  }

  .hero-actions .btn,
  .actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-socials {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px !important;
  }

  .social-card {
    width: 100%;
    min-width: 0;
    justify-content: center;
    padding-right: 0.65rem;
    padding-left: 0.65rem;
  }

  .home-status-grid {
    grid-template-columns: 1fr;
  }

  .home-status-cell,
  .home-status-cell:nth-child(n) {
    border-top: 1px dashed rgba(184, 134, 63, 0.2);
    border-left: 0;
  }

  .home-status-cell:first-child {
    border-top: 0;
  }

  .card,
  .feature-card,
  .store-detail-copy,
  .store-purchase-panel {
    padding: 22px;
  }

  .section-title,
  .cta-banner h2 {
    font-size: 1.9rem;
  }

  .page-hero h1,
  .store-hero h1 {
    font-size: 2.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .card,
  .feature-card,
  .store-product-card {
    transform: none !important;
  }

  .hero-visual,
  .hero-logo-wrap::after {
    animation: none !important;
  }

  .hero-logo-wrap {
    transform: none;
  }
}
