:root {
  --ink: #17171a;
  --paper: #f7f5f2;
  --white: #ffffff;
  --line: #dcd6d0;
  --muted: #68636d;
  --coral: #f2554b;
  --teal: #0d9998;
  --gold: #f2bf4b;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

.seo-header {
  align-items: center;
  background: var(--ink);
  color: var(--white);
  display: flex;
  gap: 28px;
  justify-content: space-between;
  min-height: 72px;
  padding: 12px max(24px, calc((100% - 1180px) / 2));
  position: sticky;
  top: 0;
  z-index: 10;
}

.seo-brand {
  align-items: center;
  display: inline-flex;
  gap: 10px;
  text-decoration: none;
}

.seo-brand img {
  height: 44px;
  width: 44px;
}

.seo-brand span {
  display: grid;
}

.seo-brand strong {
  font-size: 18px;
}

.seo-brand small {
  color: #83d8d5;
  font-size: 11px;
  font-weight: 800;
}

.seo-nav {
  align-items: center;
  display: flex;
  gap: 20px;
}

.seo-nav a {
  color: #e9e5e1;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.seo-nav a:hover,
.seo-nav a:focus-visible {
  color: var(--white);
}

.seo-hero {
  align-items: end;
  background-image: linear-gradient(90deg, rgba(10, 11, 14, 0.94) 0%, rgba(10, 11, 14, 0.68) 49%, rgba(10, 11, 14, 0.18) 100%), url("/hero-nightlife.webp");
  background-position: center;
  background-size: cover;
  color: var(--white);
  display: flex;
  min-height: 72vh;
}

.seo-hero-inner {
  margin: 0 auto;
  max-width: 1180px;
  padding: 80px 24px 72px;
  width: 100%;
}

.adult-label,
.section-label {
  color: #86dfdc;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.seo-hero h1 {
  font-size: 64px;
  line-height: 1.02;
  margin: 16px 0 22px;
  max-width: 850px;
}

.seo-hero p {
  color: #ece7e4;
  font-size: 20px;
  max-width: 720px;
}

.seo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.seo-button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 6px;
  display: inline-flex;
  font-weight: 850;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  text-decoration: none;
}

.seo-button.primary {
  background: var(--coral);
  color: var(--white);
}

.seo-button.secondary {
  background: var(--white);
  color: var(--ink);
}

.seo-proof {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.seo-proof-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 auto;
  max-width: 1180px;
  padding: 24px;
}

.seo-proof div {
  border-right: 1px solid var(--line);
  padding: 8px 22px;
}

.seo-proof div:last-child {
  border-right: 0;
}

.seo-proof strong,
.seo-proof span {
  display: block;
}

.seo-proof strong {
  font-size: 18px;
}

.seo-proof span {
  color: var(--muted);
  font-size: 13px;
}

.seo-section {
  padding: 76px 24px;
}

.seo-section.alt {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

.seo-section-inner {
  margin: 0 auto;
  max-width: 1120px;
}

.seo-section h2 {
  font-size: 40px;
  line-height: 1.12;
  margin: 10px 0 18px;
  max-width: 780px;
}

.seo-intro {
  color: var(--muted);
  font-size: 18px;
  max-width: 790px;
}

.seo-grid {
  display: grid;
  gap: 0 34px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 42px;
}

.seo-grid article {
  border-top: 4px solid var(--teal);
  padding: 24px 2px 8px;
}

.seo-grid article:nth-child(2) {
  border-top-color: var(--coral);
}

.seo-grid article:nth-child(3) {
  border-top-color: var(--gold);
}

.seo-grid h3 {
  font-size: 22px;
  margin: 0 0 10px;
}

.seo-grid p,
.seo-copy p,
.seo-copy li {
  color: var(--muted);
}

.seo-split {
  display: grid;
  gap: 64px;
  grid-template-columns: 1fr 1fr;
}

.seo-copy h2 {
  font-size: 36px;
  margin-top: 0;
}

.seo-copy ul {
  padding-left: 20px;
}

.seo-links {
  border-left: 5px solid var(--coral);
  padding: 4px 0 4px 26px;
}

.seo-links a {
  color: #087a79;
  display: block;
  font-weight: 800;
  margin: 10px 0;
}

.seo-faq details {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}

.seo-faq summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 850;
}

.seo-faq p {
  color: var(--muted);
  max-width: 800px;
}

.seo-cta {
  background: var(--ink);
  color: var(--white);
  padding: 62px 24px;
}

.seo-cta-inner {
  align-items: center;
  display: flex;
  gap: 40px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1120px;
}

.seo-cta h2 {
  font-size: 36px;
  margin: 0 0 8px;
}

.seo-cta p {
  color: #c9c4c0;
  margin: 0;
}

.seo-footer {
  background: #0e0e10;
  color: #bbb6b2;
  padding: 32px 24px;
}

.seo-footer-inner {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1120px;
}

.seo-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.seo-footer a {
  color: var(--white);
  font-weight: 700;
}

@media (max-width: 820px) {
  .seo-header {
    align-items: flex-start;
    padding: 12px 18px;
  }

  .seo-nav a:not(.seo-button) {
    display: none;
  }

  .seo-hero {
    min-height: 68vh;
  }

  .seo-hero h1 {
    font-size: 42px;
  }

  .seo-hero p {
    font-size: 17px;
  }

  .seo-proof-inner,
  .seo-grid,
  .seo-split {
    grid-template-columns: 1fr;
  }

  .seo-proof div {
    border-bottom: 1px solid var(--line);
    border-right: 0;
  }

  .seo-section {
    padding: 56px 20px;
  }

  .seo-section h2,
  .seo-copy h2,
  .seo-cta h2 {
    font-size: 32px;
  }

  .seo-grid article {
    margin-top: 24px;
  }

  .seo-cta-inner,
  .seo-footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
