:root {
  --bg: #060607;
  --panel: #101014;
  --text: #f7f1e7;
  --muted: #aaa49b;
  --gold: #e0b968;
  --gold2: #f3d99b;
  --line: #2c2926;
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 16px/1.7 var(--sans);
}
a { color: inherit; text-decoration: none; }
.shell { max-width: 760px; margin: auto; padding: 0 26px; }

/* Navigation — identical to the main site so moving between pages feels seamless */
nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #060607ed;
  backdrop-filter: blur(18px);
  border-bottom: 1px solid #ffffff12;
}
.nav {
  max-width: 1180px;
  margin: auto;
  padding: 0 26px;
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand { display: flex; align-items: center; gap: 20px; min-width: 0; }
.brand-copy { display: grid; gap: 6px; line-height: 1.08; }
.brand-title { font: 17px var(--serif); letter-spacing: 0.22em; white-space: nowrap; }
.brand-byline { font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: #cbb78d; white-space: nowrap; }
.brand-cities { font-size: 8.5px; letter-spacing: 0.28em; text-transform: uppercase; color: #7f786f; white-space: nowrap; }
.mark {
  width: 84px;
  height: 56px;
  display: block;
  flex: 0 0 84px;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(224, 185, 104, 0.3));
}
.links { display: flex; gap: 20px; align-items: center; font-size: 14px; letter-spacing: 0.01em; color: #d2cabf; }
.links a { padding: 13px 0; white-space: nowrap; }
.links a.active, .links a:hover { color: var(--gold2); }
.links a.book {
  background: linear-gradient(135deg, rgba(218, 181, 119, 0.2), rgba(184, 120, 45, 0.12));
  border: 1px solid rgba(246, 210, 143, 0.62);
  border-radius: 999px;
  box-shadow: 0 12px 34px rgba(218, 181, 119, 0.14);
  color: #fff3d8;
  margin-left: 8px;
  padding: 15px 34px;
  letter-spacing: 0.04em;
}
.menu { display: none; }
.mobile { display: none; }
@media (max-width: 1200px) {
  .links { display: none; }
  .menu {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #4b4032;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    background: #0b0b0d;
    color: #fff;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
  }
  .mobile.open {
    display: grid;
    position: fixed;
    z-index: 80;
    top: 88px;
    left: 14px;
    right: 14px;
    background: #09090bf5;
    border: 1px solid #3b342a;
    border-radius: 20px;
    padding: 12px;
  }
  .mobile a { padding: 12px; }
  .brand-title { font-size: 12px; letter-spacing: 0.12em; }
  .brand-byline { font-size: 8px; letter-spacing: 0.16em; }
  .brand-cities { font-size: 7px; letter-spacing: 0.14em; }
}
@media (max-width: 600px) {
  .mark { width: 64px; height: 43px; flex: 0 0 64px; }
}
@media (max-width: 359px) {
  .mark { width: 56px; height: 38px; flex: 0 0 56px; }
  .brand { gap: 10px; }
}

/* Page */
.hero { padding-block: 56px 20px; }
.article-hero-img {
  display: block;
  width: 100%;
  height: clamp(220px, 42vw, 420px);
  object-fit: cover;
  object-position: center 30%;
  border-radius: 22px;
  margin: 4px 0 8px;
  border: 1px solid var(--line);
}
.kicker {
  color: var(--gold2);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.18em;
  margin-bottom: 14px;
}
h1 { font: 500 clamp(34px, 5.4vw, 50px)/1.12 var(--serif); margin: 0 0 16px; }
.lead { color: #cfc7b9; font-size: 18px; line-height: 1.6; max-width: 620px; }
.meta { color: var(--muted); font-size: 13px; letter-spacing: 0.04em; margin-top: 18px; }
.blog-body {
  padding-block: 20px 10px;
  font-size: 17px;
  line-height: 1.8;
  color: #e7e1d6;
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
}
.blog-body h2 { font: 500 29px/1.25 var(--serif); color: var(--gold2); margin: 42px 0 14px; text-align: left; }
.blog-body h3 { font: 500 23px/1.3 var(--serif); color: var(--text); margin: 26px 0 8px; text-align: left; }
.blog-body p { margin: 0 0 18px; }
.blog-body ul { margin: 0 0 18px; padding-left: 20px; }
.blog-body li { margin-bottom: 9px; }
.blog-body strong { color: #fff3d4; }
.blog-body a { color: var(--gold2); text-decoration: underline; text-decoration-color: rgba(243, 217, 155, 0.4); text-underline-offset: 3px; }
.blog-cta {
  margin: 40px 0 70px;
  padding: 30px;
  border: 1px solid rgba(224, 185, 104, 0.34);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(224, 185, 104, 0.1), rgba(255, 255, 255, 0.02));
  text-align: center;
}
.blog-cta h3 { margin: 0 0 10px; font: 500 27px var(--serif); }
.blog-cta p { color: var(--muted); margin: 0; }
.btn {
  display: inline-block;
  margin-top: 16px;
  padding: 13px 28px;
  border-radius: 999px;
  background: var(--gold);
  color: #1a1204;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
}
.back-link { display: inline-block; margin: 30px 0 0; color: var(--muted); font-size: 13px; }
.post-grid { display: grid; gap: 18px; margin-block: 10px 60px; }
.post-card {
  display: block;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
}
.post-thumb {
  display: block;
  width: calc(100% + 52px);
  margin: -26px -26px 20px;
  height: 200px;
  object-fit: cover;
  object-position: center 30%;
}
.post-card .kicker { margin-bottom: 10px; }
.post-card h2 { margin: 0 0 10px; font: 500 27px/1.2 var(--serif); color: var(--text); }
.post-card p { color: var(--muted); margin: 0 0 14px; line-height: 1.6; text-align: justify; hyphens: auto; }
.post-card span { color: var(--gold2); font-size: 13px; letter-spacing: 0.04em; }
footer {
  padding: 32px 0;
  border-top: 1px solid #ffffff10;
  color: #77736d;
  font-size: 12px;
  text-align: center;
}
footer a { color: #a8a196; }
@media (max-width: 600px) {
  .hero { padding-block: 34px 14px; }
}
