/* Standalone blog article pages — matches Sparklean luxury editorial tone */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --gold: #b8a47a;
  --gold-lt: #d4bf96;
  --dark: #0e0e0e;
  --dark2: #161616;
  --dark3: #1c1c1c;
  --nav-bg: #131313;
  --white: #f9f7f3;
  --w70: rgba(249, 247, 243, 0.7);
  --w30: rgba(249, 247, 243, 0.3);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Montserrat", sans-serif;
  --nav-h: 120px;
  --article-max: 42rem;
  --tap-min: 44px;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--dark);
  color: var(--white);
  font-family: var(--sans);
  font-weight: 300;
  overflow-x: hidden;
}
body.is-scroll-locked {
  overflow: hidden;
  touch-action: none;
}
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--nav-h);
  background: var(--nav-bg);
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(16px, 4vw, 52px);
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  height: 100%;
  padding: 8px 0;
}
.nav-logo img {
  height: 104px;
  width: auto;
  max-width: min(200px, 42vw);
  display: block;
  object-fit: contain;
}
.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}
.nav-links a {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--w70);
  text-decoration: none;
  transition: color 0.25s;
  position: relative;
  padding-bottom: 3px;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-phone {
  font-size: 0.68rem;
  color: var(--w70);
  text-decoration: none;
  transition: color 0.25s;
  letter-spacing: 0.04em;
  min-height: var(--tap-min);
  display: inline-flex;
  align-items: center;
}
.nav-phone:hover {
  color: var(--gold-lt);
}
.nav-btn {
  font-size: 0.57rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #0e0e0e;
  background: var(--gold);
  padding: 11px 22px;
  text-decoration: none;
  transition: background 0.25s;
  min-height: var(--tap-min);
  display: inline-flex;
  align-items: center;
}
.nav-btn:hover {
  background: var(--gold-lt);
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  min-width: var(--tap-min);
  min-height: var(--tap-min);
  background: none;
  border: none;
  align-items: center;
  justify-content: center;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--w70);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}
.nav-mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--nav-bg);
  border-top: 1px solid rgba(201, 168, 76, 0.12);
  z-index: 899;
  padding: 12px 0 calc(12px + env(safe-area-inset-bottom, 0));
  max-height: min(75vh, calc(100dvh - var(--nav-h)));
  overflow-y: auto;
}
.nav-mobile-menu.open {
  display: flex;
}
.nav-mobile-menu a {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--w70);
  text-decoration: none;
  padding: 14px 28px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.06);
  min-height: var(--tap-min);
  display: flex;
  align-items: center;
}
.nav-mobile-menu a:hover {
  color: var(--gold);
}
@media (max-width: 900px) {
  .nav-links {
    display: none !important;
  }
  .nav-hamburger {
    display: flex !important;
  }
  .nav-btn {
    display: none;
  }
}
@media (max-width: 640px) {
  :root {
    --nav-h: 70px;
  }
  nav {
    height: 70px;
  }
  .nav-logo img {
    height: 54px;
  }
  .nav-phone {
    display: none;
  }
}

.article-shell {
  padding: calc(var(--nav-h) + clamp(40px, 7vw, 72px)) clamp(20px, 5vw, 80px) clamp(56px, 10vw, 100px);
  background: var(--dark);
}
.breadcrumb {
  max-width: calc(var(--article-max) + 4rem);
  margin: 0 auto clamp(20px, 3vw, 28px);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(249, 247, 243, 0.38);
}
.breadcrumb a {
  color: rgba(212, 191, 150, 0.85);
  text-decoration: none;
  border-bottom: 1px solid rgba(184, 164, 122, 0.25);
  padding-bottom: 1px;
}
.breadcrumb a:hover {
  color: var(--gold-lt);
}
.breadcrumb span {
  margin: 0 0.5em;
  color: rgba(249, 247, 243, 0.22);
}
.breadcrumb .breadcrumb-current {
  color: rgba(249, 247, 243, 0.5);
  letter-spacing: 0.12em;
  text-transform: none;
  font-size: 0.58rem;
}
.article-inner {
  max-width: var(--article-max);
  margin: 0 auto;
}
.article-cat {
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  display: block;
}
.article-title {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 4.2vw, 2.75rem);
  font-weight: 400;
  line-height: 1.12;
  margin-bottom: 12px;
  color: var(--white);
}
.article-byline {
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--w30);
  margin-bottom: 40px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}
.article-body {
  font-family: var(--serif);
  font-size: clamp(0.98rem, 2.2vw, 1.05rem);
  line-height: 1.92;
  color: var(--w70);
}
.article-body h2 {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.8vw, 1.4rem);
  font-weight: 400;
  color: var(--white);
  margin: 40px 0 14px;
}
.article-body h3 {
  font-family: var(--serif);
  font-size: clamp(1rem, 2.2vw, 1.12rem);
  font-weight: 400;
  color: var(--gold-lt);
  margin: 28px 0 10px;
}
.article-body p {
  margin-bottom: 18px;
}
.article-body ul,
.article-body ol {
  margin: 14px 0 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.article-body li {
  color: var(--w70);
  line-height: 1.68;
}
.article-body strong {
  color: var(--white);
  font-weight: 500;
}
.article-body a {
  color: var(--gold-lt);
  text-decoration: none;
  border-bottom: 1px solid rgba(184, 164, 122, 0.35);
}
.article-body a:hover {
  color: var(--white);
  border-bottom-color: var(--gold);
}
.article-cta {
  margin-top: 52px;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid rgba(201, 168, 76, 0.22);
  background: rgba(201, 168, 76, 0.04);
  text-align: center;
}
.article-cta p {
  font-family: var(--serif);
  font-size: clamp(1rem, 2.4vw, 1.12rem);
  color: var(--w70);
  margin-bottom: 22px;
  line-height: 1.68;
}
.article-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
}
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #0e0e0e;
  background: var(--gold);
  padding: 15px clamp(22px, 4vw, 32px);
  min-height: var(--tap-min);
  text-decoration: none;
  transition: background 0.25s;
}
.btn-gold:hover {
  background: var(--gold-lt);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(249, 247, 243, 0.3);
  padding: 15px 26px;
  min-height: var(--tap-min);
  text-decoration: none;
  transition: border-color 0.25s, color 0.25s;
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-lt);
}

.article-foot-note {
  max-width: var(--article-max);
  margin: 0 auto;
  padding: clamp(32px, 5vw, 48px) clamp(20px, 5vw, 80px) clamp(40px, 7vw, 64px);
  text-align: center;
  font-family: var(--serif);
  font-size: clamp(0.92rem, 2vw, 1.02rem);
  line-height: 1.8;
  color: var(--w70);
  border-top: 1px solid rgba(201, 168, 76, 0.08);
}
.article-foot-note a {
  color: var(--gold-lt);
  text-decoration: none;
  border-bottom: 1px solid rgba(184, 164, 122, 0.35);
}
.article-foot-note a:hover {
  color: var(--white);
  border-bottom-color: var(--gold);
}

.related-wrap {
  max-width: calc(var(--article-max) + 8rem);
  margin: 0 auto;
  padding: clamp(56px, 10vw, 96px) clamp(20px, 5vw, 80px);
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  background: var(--dark2);
}
.related-h {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.8vw, 1.65rem);
  font-weight: 400;
  margin-bottom: 28px;
  text-align: center;
}
.related-h em {
  font-style: italic;
  color: var(--gold-lt);
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  max-width: 56rem;
  margin: 0 auto;
}
.related-card {
  display: flex;
  flex-direction: column;
  padding: clamp(22px, 4vw, 36px);
  background: var(--dark3);
  border: 1px solid rgba(201, 168, 76, 0.1);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.3s, background 0.3s;
  min-height: 120px;
}
.related-card:hover {
  border-color: rgba(201, 168, 76, 0.28);
  background: rgba(22, 22, 22, 0.95);
}
.related-card span:first-child {
  font-size: 0.48rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.related-card span:last-child {
  font-family: var(--serif);
  font-size: clamp(0.88rem, 1.8vw, 1rem);
  line-height: 1.45;
  color: var(--white);
}

.service-strip {
  padding: clamp(40px, 8vw, 72px) clamp(20px, 5vw, 80px);
  text-align: center;
  border-top: 1px solid rgba(201, 168, 76, 0.08);
}
.service-strip p {
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(184, 164, 122, 0.55);
  margin-bottom: 18px;
}
.service-strip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 48rem;
  margin: 0 auto;
}
.service-strip-row a {
  font-size: 0.52rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(212, 191, 150, 0.92);
  text-decoration: none;
  padding: 9px 16px;
  border: 1px solid rgba(184, 164, 122, 0.22);
  background: rgba(184, 164, 122, 0.06);
  transition: background 0.22s, border-color 0.22s;
}
.service-strip-row a:hover {
  background: rgba(184, 164, 122, 0.12);
  border-color: rgba(184, 164, 122, 0.38);
}

.newsletter {
  padding: clamp(56px, 10vw, 100px) clamp(20px, 5vw, 80px);
  background: var(--dark2);
  text-align: center;
  border-top: 1px solid rgba(201, 168, 76, 0.08);
}
.newsletter .eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  margin-bottom: 15px;
}
.newsletter .ey-line {
  width: 26px;
  height: 1px;
  background: var(--gold);
}
.newsletter .eyebrow span {
  font-size: 0.54rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}
.newsletter h2 {
  font-family: var(--serif);
  font-size: clamp(1.55rem, 3.5vw, 2.8rem);
  font-weight: 400;
  margin-bottom: 14px;
}
.newsletter h2 em {
  font-style: italic;
  color: var(--gold);
}
.newsletter > p {
  font-family: var(--serif);
  font-size: clamp(0.9rem, 2.2vw, 0.95rem);
  color: var(--w70);
  margin-bottom: 38px;
  line-height: 1.7;
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
}
.nl-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

footer {
  background: #0a0a0a;
  border-top: 1px solid rgba(184, 164, 122, 0.12);
  padding: 0;
}
.footer-top {
  padding: clamp(48px, 8vw, 72px) clamp(20px, 5vw, 80px) clamp(44px, 6vw, 60px);
  display: flex;
  flex-direction: column;
  align-items: center;
  border-bottom: 1px solid rgba(184, 164, 122, 0.08);
}
.footer-logo-wrap img {
  height: clamp(100px, 18vw, 200px);
  width: auto;
  display: block;
  object-fit: contain;
}
.footer-divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 20px auto 18px;
  opacity: 0.5;
}
.footer-cities {
  font-size: 0.55rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(184, 164, 122, 0.45);
  text-align: center;
  line-height: 2.4;
}
.footer-cities a {
  color: inherit;
  text-decoration: none;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 5vw, 52px);
  width: 100%;
  max-width: 800px;
  margin-top: 40px;
}
.fcol-t {
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  text-align: center;
}
.fcol-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  align-items: center;
}
.fcol-links a {
  font-size: 0.76rem;
  color: rgba(249, 247, 243, 0.28);
  text-decoration: none;
  transition: color 0.25s;
}
.fcol-links a:hover {
  color: var(--gold-lt);
}
.fcol-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.fcol-contact a {
  font-family: var(--serif);
  font-size: 0.9rem;
  color: rgba(249, 247, 243, 0.28);
  text-decoration: none;
}
.fcol-contact a:hover {
  color: var(--gold-lt);
}
.footer-btm {
  padding: 18px clamp(20px, 5vw, 80px);
  display: flex;
  justify-content: center;
}
.footer-copy {
  font-size: 0.58rem;
  color: rgba(249, 247, 243, 0.16);
  letter-spacing: 0.06em;
  text-align: center;
}

@media (max-width: 1024px) {
  :root {
    --nav-h: 96px;
  }
  .nav-logo img {
    height: 76px;
  }
  .related-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .nl-btns {
    flex-direction: column;
    align-items: stretch;
  }
  .footer-cols {
    grid-template-columns: 1fr;
  }
}
