:root {
  --bg-dark: #161715;
  --bg-light: #f7f5f0;
  --accent: #cfa668;
  --text-main: #2a2b28;
  --text-light: #e8e6e1;
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'DM Sans', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg-dark);
  color: var(--text-light);
  font-family: var(--font-sans);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); }

.seo-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 5vw;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.seo-brand img { height: 34px; width: auto; display: block; }

.seo-cta-nav {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 4px;
}

.seo-main {
  max-width: 760px;
  margin: 0 auto;
  padding: 2.5rem 5vw 4rem;
}

.seo-breadcrumb {
  font-size: 0.82rem;
  color: rgba(232,230,225,0.65);
  margin-bottom: 2rem;
}

.seo-breadcrumb a { text-decoration: none; }
.seo-breadcrumb a:hover { text-decoration: underline; }

.seo-hero { margin-bottom: 2.5rem; }

.seo-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.85rem;
}

.seo-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 2.85rem);
  font-weight: 300;
  line-height: 1.12;
  margin-bottom: 0.75rem;
}

.seo-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  color: rgba(232,230,225,0.82);
  margin-bottom: 1.35rem;
}

.seo-cta {
  display: inline-block;
  background: var(--accent);
  color: var(--bg-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
}

.seo-cta:hover { filter: brightness(1.05); color: var(--bg-dark); }

.seo-block {
  margin-bottom: 2.25rem;
  padding-top: 0.25rem;
}

.seo-block h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.45rem, 3.5vw, 1.9rem);
  font-weight: 400;
  margin-bottom: 0.85rem;
  color: var(--text-light);
}

.seo-block p {
  margin-bottom: 0.85rem;
  color: rgba(232,230,225,0.88);
  font-size: 1rem;
}

.seo-block ul {
  margin: 0.5rem 0 0 1.1rem;
  color: rgba(232,230,225,0.88);
}

.seo-block li { margin-bottom: 0.45rem; }

.seo-block--cta {
  margin-top: 2.5rem;
  padding: 1.75rem 1.5rem;
  border: 1px solid rgba(207,166,104,0.28);
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
}

.seo-back { margin-top: 1.25rem; font-size: 0.9rem; }

.seo-footer {
  text-align: center;
  padding: 2.5rem 5vw 3rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.85rem;
  color: rgba(232,230,225,0.62);
}

.seo-footer p { margin-bottom: 0.45rem; }
.seo-footer a { text-decoration: none; }
.seo-footer a:hover { text-decoration: underline; }

.seo-footer-links { font-size: 0.8rem; }

@media (max-width: 640px) {
  .seo-cta-nav { display: none; }
}
