/* DANA55 — Slot Gacor Landing */

:root {
  --void: #0b0505;
  --panel: #140a0a;
  --panel-2: #1a0e0e;
  --line: rgba(212, 175, 55, 0.22);
  --text: #f5ebe0;
  --muted: #a8988c;
  --acid: #d4af37;
  --acid-dim: #b8922e;
  --ember: #e11d2e;
  --ember-deep: #a01220;
  --gold: #f0c14b;
  --font-display: "Exo 2", system-ui, sans-serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --max: 1120px;
  --header: 4.25rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text);
  background:
    radial-gradient(ellipse 90% 55% at 80% -10%, rgba(225, 29, 46, 0.18), transparent 50%),
    radial-gradient(ellipse 60% 40% at 0% 30%, rgba(212, 175, 55, 0.1), transparent 45%),
    linear-gradient(180deg, var(--void) 0%, #120808 40%, var(--void) 100%);
  background-attachment: fixed;
  min-height: 100dvh;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

body.nav-lock {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--ember);
  color: #fff;
  font-weight: 600;
}

.skip-link:focus {
  top: 1rem;
}

.wrap {
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
}

@media (min-width: 640px) {
  .wrap {
    width: min(var(--max), calc(100% - 2.5rem));
  }
}

/* Topbar */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header);
  border-bottom: 1px solid transparent;
  background: rgba(11, 5, 5, 0.78);
  backdrop-filter: blur(16px);
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
  padding-top: env(safe-area-inset-top);
}

.topbar.is-scrolled,
.topbar.is-open {
  border-bottom-color: var(--line);
  background: rgba(11, 5, 5, 0.96);
}

.topbar-inner {
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
  min-height: var(--header);
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "brand actions"
    "nav nav";
  align-items: center;
  gap: 0;
  position: relative;
}

@media (min-width: 640px) {
  .topbar-inner {
    width: min(var(--max), calc(100% - 2.5rem));
  }
}

.brand {
  grid-area: brand;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
}

.brand-logo {
  height: 2.1rem;
  width: auto;
  max-width: min(148px, 42vw);
  object-fit: contain;
}

@media (min-width: 640px) {
  .brand-logo {
    height: 2.35rem;
    max-width: 160px;
  }
}

.brand-foot .brand-logo {
  height: 2.5rem;
  max-width: 170px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: #fff;
  background: var(--ember);
  clip-path: polygon(0 0, 100% 0, 100% 70%, 70% 100%, 0 100%);
}

.brand-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold);
}

.topbar-actions {
  grid-area: actions;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  justify-self: end;
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.55rem;
  border: 1px solid var(--line);
  background: var(--panel);
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
  transform-origin: center;
}

.topbar.is-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.topbar.is-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.topbar.is-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav {
  grid-area: nav;
  display: none;
  flex-direction: column;
  gap: 0;
  width: 100%;
  padding: 0.5rem 0 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
  border-top: 1px solid transparent;
}

.topbar.is-open .nav {
  display: flex;
  border-top-color: var(--line);
}

.nav a {
  padding: 0.85rem 0.15rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--gold);
}

.topbar-cta {
  display: none;
}

@media (min-width: 480px) {
  .topbar-cta {
    display: inline-flex;
  }
}

@media (min-width: 900px) {
  .topbar-inner {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
  }

  .nav-toggle {
    display: none;
  }

  .nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: auto;
    padding: 0;
    gap: 1.35rem;
    font-size: 0.88rem;
    border: 0;
  }

  .topbar.is-open .nav {
    border-top-color: transparent;
  }

  .nav a {
    padding: 0;
    border: 0;
  }

  .topbar-cta {
    display: inline-flex;
  }

  .topbar-actions {
    order: 3;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.35rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.btn-sm {
  padding: 0.5rem 0.9rem;
  font-size: 0.78rem;
}

.btn-lg {
  padding: 1.05rem 1.75rem;
  font-size: 1.05rem;
}

.btn-accent {
  color: #fff;
  background: linear-gradient(135deg, var(--ember) 0%, var(--ember-deep) 100%);
  box-shadow: 0 0 0 1px rgba(225, 29, 46, 0.35), 0 10px 30px rgba(225, 29, 46, 0.28);
}

.btn-accent:hover {
  background: linear-gradient(135deg, #f0283a 0%, var(--ember) 100%);
  box-shadow: 0 0 0 1px rgba(225, 29, 46, 0.5), 0 14px 36px rgba(225, 29, 46, 0.35);
}

.btn-line {
  color: var(--text);
  background: transparent;
  border-color: rgba(212, 175, 55, 0.35);
}

.btn-line:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Hero — game storefront layout */
.hero {
  padding: clamp(2rem, 5vw, 3.5rem) 0 clamp(3.5rem, 8vw, 5.5rem);
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
  display: grid;
  gap: clamp(1.75rem, 5vw, 3.5rem);
  align-items: center;
}

@media (min-width: 640px) {
  .hero-grid {
    width: min(var(--max), calc(100% - 2.5rem));
  }
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem;
  }
}

.kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.65rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--void);
  background: var(--ember);
}

.pill-soft {
  color: var(--acid);
  background: transparent;
  border: 1px solid var(--line);
}

.brand-hero {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 7vw, 4.25rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
  text-shadow: 0 0 40px rgba(212, 175, 55, 0.35);
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.45rem, 3.2vw, 2rem);
  line-height: 1.2;
  letter-spacing: 0.01em;
  max-width: 22ch;
  margin-bottom: 1rem;
}

.lede {
  color: var(--muted);
  max-width: 40ch;
  margin-bottom: 1.5rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.hero-cta .btn {
  flex: 1 1 auto;
  min-width: min(100%, 11.5rem);
}

@media (max-width: 420px) {
  .hero-cta .btn {
    width: 100%;
  }

  .btn-lg {
    width: 100%;
    padding-inline: 1.1rem;
    font-size: 0.92rem;
  }
}

.meta-row {
  display: grid;
  gap: 0.75rem 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
}

@media (min-width: 560px) {
  .meta-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.meta-row span {
  display: block;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--acid-dim);
  margin-bottom: 0.2rem;
}

/* 1:1 cover art */
.cover {
  margin: 0;
  justify-self: center;
  width: min(100%, 480px);
}

@media (min-width: 900px) {
  .cover {
    justify-self: end;
    width: min(100%, 520px);
  }
}

.cover-frame {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow:
    0 0 0 1px rgba(212, 175, 55, 0.12),
    0 24px 60px rgba(0, 0, 0, 0.55),
    0 0 80px rgba(225, 29, 46, 0.12);
  transform: translateY(12px) rotate(-1.5deg);
  animation: cover-in 1s var(--ease) forwards;
}

.cover-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(225, 29, 46, 0.18), transparent 40%),
    linear-gradient(to top, rgba(11, 5, 5, 0.45), transparent 35%);
  mix-blend-mode: screen;
}

.cover-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 1 / 1;
}

@keyframes cover-in {
  to {
    transform: translateY(0) rotate(0deg);
  }
}

/* Sections */
.block {
  padding: clamp(3.75rem, 9vw, 6rem) 0;
  border-bottom: 1px solid var(--line);
}

.block-dark {
  background: linear-gradient(180deg, rgba(14, 20, 17, 0.95), rgba(7, 10, 8, 0.4));
}

.block-stripe {
  background:
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 18px,
      rgba(212, 175, 55, 0.035) 18px,
      rgba(212, 175, 55, 0.035) 19px
    );
}

.section-tag {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 0.75rem;
}

.block h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  max-width: 16ch;
  margin-bottom: 0.85rem;
}

.section-lede {
  color: var(--muted);
  max-width: 48ch;
  margin-bottom: 2.25rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Why */
.pain-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 760px) {
  .pain-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.pain-grid li {
  padding: 1.25rem 1.15rem;
  background: var(--panel);
  border-left: 3px solid var(--ember);
}

.pain-grid h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.45rem;
}

.pain-grid p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* Benefits */
.feature-rails {
  display: grid;
  gap: 0;
}

.feature-rails li {
  display: grid;
  gap: 0.35rem;
  padding: 1.35rem 0;
  border-top: 1px solid var(--line);
}

.feature-rails li:last-child {
  border-bottom: 1px solid var(--line);
}

@media (min-width: 720px) {
  .feature-rails {
    grid-template-columns: 1fr 1fr;
    gap: 0 2.5rem;
  }

  .feature-rails li:nth-child(odd) {
    border-right: 1px solid var(--line);
    padding-right: 1.5rem;
  }
}

.feature-rails h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--gold);
}

.feature-rails p {
  color: var(--muted);
  font-size: 0.96rem;
}

/* How */
.flow {
  display: grid;
  gap: 0;
}

.flow li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.15rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
}

.flow li:last-child {
  border-bottom: 1px solid var(--line);
}

.flow-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ember);
  line-height: 1;
}

.flow h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.flow p {
  color: var(--muted);
  font-size: 0.96rem;
}

/* Who */
.audience {
  display: grid;
  gap: 1rem;
}

@media (min-width: 720px) {
  .audience {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
}

.audience li {
  padding: 1.25rem;
  background: var(--panel-2);
  border: 1px solid var(--line);
}

.audience h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.4rem;
}

.audience p {
  color: var(--muted);
  font-size: 0.94rem;
}

/* Proof */
.proof-strip {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 700px) {
  .proof-strip {
    grid-template-columns: repeat(3, 1fr);
  }
}

.proof-strip dt {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.proof-strip dd {
  color: var(--muted);
  font-size: 0.92rem;
  max-width: 16ch;
}

/* Quotes spotlight */
.block-quotes {
  background:
    radial-gradient(ellipse 60% 70% at 10% 20%, rgba(225, 29, 46, 0.12), transparent 50%),
    radial-gradient(ellipse 50% 60% at 90% 80%, rgba(212, 175, 55, 0.1), transparent 50%),
    var(--panel);
}

.quotes-spotlight {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 800px) {
  .quotes-spotlight {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

.quote-feature {
  padding: 1.75rem 1.5rem;
  border-left: 3px solid var(--ember);
  background: rgba(11, 5, 5, 0.45);
}

.quote-feature-alt {
  border-left-color: var(--gold);
}

.quote-feature p {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 1.35rem;
}

.quote-feature footer {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.quote-feature footer img {
  width: 3rem;
  height: 3rem;
  object-fit: cover;
  border: 2px solid var(--line);
}

.quote-feature cite {
  display: block;
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.quote-feature footer span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  margin-top: 0.15rem;
}

/* Review grid — 6 user stories */
.review-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 700px) {
  .review-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1020px) {
  .review-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review-card {
  display: flex;
  flex-direction: column;
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-top: 2px solid var(--ember);
  padding: 0;
}

.review-card blockquote {
  flex: 1;
  padding: 1.25rem 1.15rem 0.85rem;
}

.review-card blockquote p {
  color: var(--text);
  font-size: 0.96rem;
  line-height: 1.5;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.15rem 1.2rem;
  margin-top: auto;
  border-top: 1px solid rgba(212, 175, 55, 0.12);
}

.review-author img {
  width: 2.75rem;
  height: 2.75rem;
  object-fit: cover;
  border: 2px solid rgba(212, 175, 55, 0.35);
  flex-shrink: 0;
}

.review-author strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.review-author span {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  margin-top: 0.1rem;
}

.player-quote {
  padding: 1.5rem 0 0;
  border-top: 1px solid var(--line);
}

.player-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  font-weight: 500;
  line-height: 1.35;
  max-width: 32ch;
  margin-bottom: 0.85rem;
}

.player-quote footer {
  color: var(--muted);
  font-size: 0.9rem;
}

/* FAQ */
.faq {
  border-top: 1px solid var(--line);
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(0.88rem, 2.8vw, 1rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  cursor: pointer;
  line-height: 1.35;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  color: var(--gold);
  font-size: 1.35rem;
  font-weight: 500;
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.25s var(--ease);
}

.faq details[open] summary::after {
  transform: rotate(45deg);
}

.faq summary:hover,
.faq summary:focus-visible {
  color: var(--gold);
}

.faq details p {
  padding: 0 0 1.25rem;
  color: var(--muted);
  max-width: 58ch;
  font-size: 0.96rem;
}

/* Team */
.team-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 960px) {
  .team-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.team-card {
  padding: 1.35rem 1.2rem 1.5rem;
  background: var(--panel);
  border-top: 2px solid var(--ember);
}

.team-avatar {
  display: block;
  width: 5rem;
  height: 5rem;
  margin-bottom: 1rem;
  object-fit: cover;
  border: 2px solid rgba(212, 175, 55, 0.45);
  background: var(--panel-2);
}

.team-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0.25rem;
}

.team-role {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 0.65rem;
}

.team-bio {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.team-grid-doc {
  margin: 1.5rem 0 2rem;
  list-style: none;
  padding: 0;
}

/* CTA */
.cta-block {
  background:
    radial-gradient(ellipse 70% 80% at 50% 100%, rgba(225, 29, 46, 0.16), transparent 55%),
    var(--panel);
  text-align: center;
  border-bottom: 0;
}

.cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-block h2 {
  max-width: none;
}

.cta-block .section-lede {
  margin-inline: auto;
}

.cta-fine {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--muted);
}

/* Footer */
.site-foot {
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(20, 10, 10, 0.9), var(--void));
}

.foot-grid {
  display: grid;
  gap: 1.75rem;
}

.foot-grid-pro {
  gap: 2rem 1.75rem;
}

.foot-copy,
.foot-meta {
  color: var(--muted);
  font-size: 0.88rem;
}

.foot-brand .foot-copy {
  margin-top: 0.85rem;
  max-width: 36ch;
}

.foot-heading {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.foot-address {
  font-style: normal;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
  margin-bottom: 0.65rem;
}

.foot-contact {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.foot-contact a:hover,
.foot-maps-link:hover {
  color: var(--gold);
}

.foot-maps-link {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ember);
}

/* Large map above footer */
.map-section {
  border-top: 1px solid var(--line);
  background: var(--panel);
  padding: clamp(2.5rem, 6vw, 3.75rem) 0;
}

.map-section-head {
  padding: 0 0 1.35rem;
}

.map-section-head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  max-width: 18ch;
  margin-bottom: 0.85rem;
}

.map-section-head .section-lede {
  margin-bottom: 1.15rem;
}

.map-section-frame {
  width: 100%;
  height: clamp(280px, 42vw, 420px);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--void);
}

.map-section-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.15) contrast(1.05) saturate(0.9);
}

.foot-grid nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.foot-grid nav a:hover {
  color: var(--gold);
}

.foot-grid nav.foot-nav-wide {
  display: grid;
  gap: 0.4rem 1.25rem;
  align-content: start;
}

@media (min-width: 520px) {
  .foot-grid nav.foot-nav-wide {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .foot-grid-pro {
    grid-template-columns: 1.15fr 0.9fr 1.25fr;
    align-items: start;
  }

  .foot-meta {
    grid-column: 1 / -1;
    padding-top: 0.5rem;
    border-top: 1px solid var(--line);
  }
}

@media (min-width: 720px) and (max-width: 899px) {
  .foot-grid {
    grid-template-columns: 1.4fr 1fr;
    align-items: start;
  }

  .foot-location {
    grid-column: 1 / -1;
  }

  .foot-meta {
    grid-column: 1 / -1;
  }
}

/* Small screens polish */
@media (max-width: 639px) {
  body {
    font-size: 1rem;
    background-attachment: scroll;
  }

  .brand-hero {
    font-size: clamp(2.15rem, 12vw, 3rem);
  }

  .hero h1,
  .block h2,
  .map-section-head h2 {
    max-width: none;
  }

  .lede,
  .section-lede {
    max-width: none;
  }

  .quote-feature {
    padding: 1.35rem 1.1rem;
  }

  .review-card blockquote {
    padding: 1.1rem 1rem 0.7rem;
  }

  .review-author {
    padding: 0.75rem 1rem 1.05rem;
  }

  .map-section-frame {
    height: min(58vw, 300px);
    min-height: 220px;
  }

  .feature-rails li:nth-child(odd) {
    border-right: 0;
    padding-right: 0;
  }

  .proof-strip {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }

  .proof-strip > div {
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--line);
  }

  .proof-strip > div:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }
}

@media (min-width: 480px) and (max-width: 699px) {
  .proof-strip {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.85rem;
  }

  .proof-strip > div {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .proof-strip dt {
    font-size: clamp(1.45rem, 5vw, 2rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .cover-frame,
  .reveal,
  .btn,
  .nav-toggle-bar {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}
