@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&family=Playfair+Display:wght@600;700&display=swap");

:root {
  --blackbg: #0f0f0f;
  --darkgray: #1a1a1a;
  --card: #1b1b1b;
  --text: #8d99ad;
  --white: #f7f4f0;
  --rosegold: #c67d8c;
  --burgundy: #5b1424;
  --champagne: #f3e5ab;
  --border: #242935;
  --max: 1100px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--blackbg);
}

body {
  margin: 0;
  background: var(--blackbg);
  color: var(--text);
  font-family: Lato, sans-serif;
  font-size: 16px;
  line-height: 1.72;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 1rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  background: var(--rosegold);
  color: #111;
  font-weight: 900;
}

.skip-link:focus {
  left: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 15, 15, 0.98);
  border-bottom: 1px solid #171b23;
}

.nav {
  min-height: 64px;
  padding: 0 28px;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
  align-items: center;
  gap: 24px;
}

.brand {
  color: var(--white);
  font-family: "Playfair Display", serif;
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1;
}

.brand span {
  color: var(--rosegold);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  color: #9aa4b7;
  font-size: 0.82rem;
  font-weight: 700;
}

.site-header .nav-links a[href="/affiliate-disclosure/"] {
  display: none;
}

.nav-links a[aria-current="page"] {
  color: var(--rosegold);
  border-bottom: 2px solid var(--rosegold);
  padding-bottom: 7px;
}

.nav-cta {
  justify-self: end;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid #333947;
  border-radius: 4px;
  background: transparent;
  color: var(--white);
  font-size: 1.4rem;
  line-height: 1;
}

.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.7rem;
  border-radius: 4px;
  border: 1px solid transparent;
  font-weight: 900;
  line-height: 1.2;
}

.btn-primary {
  color: #181214;
  background: var(--rosegold);
  box-shadow: 0 0 18px rgba(198, 125, 140, 0.28);
}

.btn-primary:hover {
  color: #181214;
  background: var(--champagne);
}

.btn-secondary {
  color: var(--rosegold);
  border-color: rgba(198, 125, 140, 0.65);
  background: rgba(15, 15, 15, 0.45);
}

.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  text-align: center;
  border-bottom: 1px solid #222;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(15, 15, 15, 0.45), rgba(15, 15, 15, 0.96)),
    var(--hero-image, url("https://images.unsplash.com/photo-1517457210565-5c1ebddf8510?auto=format&fit=crop&w=1800&q=80"));
  background-size: cover;
  background-position: center;
  opacity: 0.9;
}

.hero-inner,
.section-inner {
  position: relative;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.hero-copy {
  max-width: 780px;
  margin: 0 auto;
  padding: 90px 0;
}

.eyebrow,
.meta {
  color: var(--rosegold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  margin: 0 0 1rem;
  color: var(--white);
  font-family: "Playfair Display", serif;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
}

h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.65rem);
}

p {
  margin: 0 0 1rem;
}

.lead {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  color: #9ba6ba;
  font-size: 1.05rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 1.7rem;
}

.section {
  padding: 82px 0;
  border-bottom: 1px solid #202020;
  background: var(--blackbg);
}

.section.alt {
  background: var(--darkgray);
}

.section > .section-inner > .eyebrow,
.section > .section-inner > h2,
.section > .section-inner > .lead,
.faq,
.callout {
  text-align: center;
}

.grid {
  display: grid;
  gap: 24px;
}

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

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

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

.card,
.article-card,
.callout,
.toc {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--card);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}

.card {
  padding: 28px;
  overflow: hidden;
}

.card strong {
  color: var(--white);
}

.card > img {
  width: calc(100% + 56px);
  max-width: none;
  height: 230px;
  object-fit: cover;
  margin: -28px -28px 24px;
}

.media-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 58px;
  max-width: 1080px;
}

.media-split img,
.article-hero img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 0 26px rgba(198, 125, 140, 0.08);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 20px;
}

.feature-list li {
  position: relative;
  padding-left: 26px;
}

.feature-list li::before {
  content: "◆";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--rosegold);
  font-size: 0.78rem;
}

.city-card {
  position: relative;
  min-height: 168px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #080808;
}

.city-card img {
  width: 100%;
  height: 168px;
  object-fit: cover;
  opacity: 0.62;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.city-card:hover img {
  transform: scale(1.06);
  opacity: 0.82;
}

.city-card span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: "Playfair Display", serif;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.18);
}

.article-card {
  overflow: hidden;
}

.article-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.article-card-body {
  padding: 28px;
}

.article-card h2,
.article-card h3,
.card h2 {
  font-size: 1.45rem;
}

.small {
  color: #7f8a9c;
  font-size: 0.94rem;
}

.article-hero {
  max-width: 760px;
  text-align: center;
}

.article-hero .lead {
  margin-bottom: 0.4rem;
}

.article-hero .meta {
  color: #7f8a9c;
  letter-spacing: 0;
  text-transform: none;
}

.article-layout {
  display: block;
  max-width: 760px;
}

.article-content {
  color: #9ba6ba;
  font-size: 1.05rem;
}

.article-content h2 {
  margin-top: 2rem;
  font-size: 1.95rem;
}

.article-content h3,
.article-content strong {
  color: var(--champagne);
}

.article-content a {
  color: var(--rosegold);
  font-weight: 900;
}

.article-content a.btn {
  border-bottom: 0;
}

.article-content a.btn-primary {
  color: #181214;
}

.article-content a.btn-primary:hover {
  color: #181214;
}

.article-content ul {
  margin: 1.4rem 0;
  padding: 24px 28px;
  list-style: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--card);
}

.article-content li {
  position: relative;
  margin-bottom: 1rem;
  padding-left: 24px;
}

.article-content li::before {
  content: "◆";
  position: absolute;
  left: 0;
  color: var(--rosegold);
  font-size: 0.78rem;
}

.toc {
  display: none;
}

.faq {
  width: min(760px, 100%);
  max-width: 760px;
  margin: 0 auto;
}

.faq details {
  margin-top: 16px;
  padding: 22px 28px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--card);
  text-align: left;
}

.faq summary {
  color: var(--rosegold);
  cursor: pointer;
  font-weight: 900;
}

.callout {
  max-width: 760px;
  padding: 54px 28px !important;
}

.notice {
  border-left: 4px solid var(--rosegold);
  padding: 20px 24px;
  background: rgba(198, 125, 140, 0.08);
  color: #bdc6d5;
}

.site-footer {
  padding: 72px 0 28px;
  background: #0b0b0b;
  border-top: 1px solid #171b23;
}

.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 72px;
}

.footer-grid h3 {
  font-family: Lato, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-grid li {
  margin-bottom: 0.55rem;
}

.copyright {
  max-width: var(--max);
  margin: 48px auto 0;
  padding: 22px 24px 0;
  border-top: 1px solid #171b23;
  color: #5f6878;
  text-align: center;
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .nav {
    display: flex;
    min-height: 66px;
    justify-content: space-between;
    padding: 0 20px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    position: absolute;
    top: 66px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 22px 18px;
    background: rgba(15, 15, 15, 0.98);
    border-bottom: 1px solid #171b23;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 0.75rem 0;
  }

  .nav-links a[aria-current="page"] {
    border-bottom: 0;
    padding-bottom: 0.75rem;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    min-height: 520px;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .media-split,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .media-split {
    gap: 32px;
  }
}

@media (max-width: 520px) {
  .brand {
    font-size: 1.18rem;
  }

  .hero-copy {
    padding: 74px 0;
  }

  h1 {
    font-size: 2.45rem;
  }

  .section {
    padding: 64px 0;
  }

  .btn {
    width: 100%;
  }

  .article-card img,
  .city-card img {
    height: 210px;
  }
}
