/*
Theme Name:  Luxus Salon
Theme URI:   https://blog.luxussalon.in/
Author:      Luxus Salon
Author URI:  https://luxussalon.in/
Description: Royal luxury blog theme for Luxus Salon & Wellness — matches the main website's dark gold design so visitors move seamlessly between the site and the blog.
Version:     1.0.2
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 8.0
License:     GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: luxus-salon
Tags:        blog, dark, one-column, custom-menu, featured-images, translation-ready
*/

/* ═══════════════════════════════════════════════════════════
   Luxus Salon · blog — royal luxury theme
   (shared design language with the main website)
   ═══════════════════════════════════════════════════════════ */

:root {
  --bg:        #0e0e13;
  --bg-soft:   #14141b;
  --card:      #1a1a22;
  --card-hi:   #21212b;
  --line:      rgba(203, 169, 106, .24);
  --line-soft: rgba(255, 255, 255, .07);
  --gold:      #cba96a;
  --gold-hi:   #e8cf9a;
  --gold-dim:  #9a7f4e;
  --ink:       #ece7dc;
  --ink-dim:   #a49e91;
  --ink-faint: #6f6a60;
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans:  "Jost", "Segoe UI", system-ui, sans-serif;
  --radius: 14px;
  --pad: clamp(18px, 4vw, 40px);
  --header-h: 76px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  font-weight: 300;
  background: var(--bg);
  color: var(--ink);
  letter-spacing: .015em;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
img { max-width: 100%; height: auto; display: block; }

.icon {
  width: 22px; height: 22px;
  fill: none; stroke: currentColor;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
  flex: none;
}

.wrap { width: min(1160px, 100%); margin: 0 auto; padding: 0 var(--pad); }
.wrap-narrow { width: min(820px, 100%); margin: 0 auto; padding: 0 var(--pad); }

::selection { background: rgba(203, 169, 106, .3); }

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  width: 1px; height: 1px; overflow: hidden;
  word-wrap: normal !important;
}

/* ── shared ornaments ─────────────────────────────────── */
.eyebrow {
  font-size: 12px; letter-spacing: .34em; text-transform: uppercase;
  color: var(--gold);
}
.rule {
  width: min(280px, 60%); height: 1px; margin: 18px auto;
  background: linear-gradient(90deg, transparent, var(--line) 20%, var(--line) 80%, transparent);
  position: relative;
}
.rule-gem {
  position: absolute; left: 50%; top: 50%;
  width: 7px; height: 7px; transform: translate(-50%, -50%) rotate(45deg);
  background: var(--gold); border-radius: 1px;
  box-shadow: 0 0 12px rgba(203, 169, 106, .6);
}

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.15; }
h2 { font-size: clamp(30px, 5.5vw, 46px); }
h3 { font-size: clamp(21px, 3.4vw, 26px); }
h1 em, h2 em { font-style: italic; color: var(--gold-hi); font-weight: 500; }

/* ── buttons ──────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 15px 32px;
  border-radius: 999px;
  font-size: 14px; font-weight: 400; letter-spacing: .16em; text-transform: uppercase;
  transition: transform .22s, box-shadow .22s, background-color .22s, color .22s, border-color .22s;
  -webkit-tap-highlight-color: transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold {
  background: linear-gradient(140deg, var(--gold-hi), var(--gold) 55%, var(--gold-dim));
  color: #17130a;
  box-shadow: 0 10px 30px rgba(203, 169, 106, .25);
}
.btn-gold:hover { box-shadow: 0 14px 38px rgba(203, 169, 106, .38); }
.btn-ghost { border: 1px solid var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-hi); }

.textlink {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold);
  transition: color .2s, gap .2s;
}
.textlink .icon { width: 16px; height: 16px; }
.textlink:hover { color: var(--gold-hi); gap: 12px; }

/* ── header ───────────────────────────────────────────── */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 40;
  display: flex; align-items: center; gap: 18px;
  height: var(--header-h);
  padding: 0 var(--pad);
  transition: background-color .3s, border-color .3s, backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(14, 14, 19, .86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line-soft);
}
.brand { display: flex; align-items: center; }
.brand img { height: 44px; width: auto; }
.main-nav {
  margin-left: auto;
  display: flex; align-items: center; gap: clamp(14px, 2.2vw, 30px);
}
.main-nav > a:not(.btn):not(.nav-phone) {
  font-size: 13px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink-dim);
  transition: color .2s;
}
.main-nav > a:not(.btn):hover { color: var(--gold-hi); }
.main-nav > a.is-active { color: var(--gold-hi); }
.nav-phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--serif); font-size: 17px; font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
}
.nav-phone .icon { width: 16px; height: 16px; }
.nav-phone:hover { color: var(--gold-hi); }
.btn-nav { padding: 11px 24px; font-size: 12px; }
.nav-toggle { display: none; }

/* ── search toggle + overlay ──────────────────────────── */
.search-toggle {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--ink-dim);
  transition: color .2s;
  -webkit-tap-highlight-color: transparent;
}
.search-toggle:hover { color: var(--gold-hi); }
.search-toggle .icon { width: 19px; height: 19px; }
.search-toggle span { display: none; }

.search-overlay {
  position: fixed; inset: 0; z-index: 60;
  display: grid; place-items: start center;
  padding: clamp(90px, 20vh, 200px) var(--pad) 40px;
}
.search-back {
  position: absolute; inset: 0;
  background: rgba(8, 8, 12, .9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.search-panel {
  position: relative; z-index: 1;
  width: min(640px, 100%);
  text-align: center;
  animation: pop-in .3s cubic-bezier(.22,.7,.3,1) both;
}
@keyframes pop-in {
  from { opacity: 0; transform: translateY(20px) scale(.97); }
  to   { opacity: 1; transform: none; }
}
.search-panel .search-form { margin-top: 24px; max-width: none; }
.search-panel input[type="search"] {
  font-family: var(--serif); font-size: clamp(18px, 4vw, 22px);
  padding: 18px 24px;
  background: var(--card);
}
.search-close {
  position: absolute; top: -64px; right: 0;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 50%; border: 1px solid var(--line-soft);
  color: var(--ink-dim);
  transition: color .2s, border-color .2s;
}
.search-close:hover { color: var(--gold-hi); border-color: var(--gold); }

body.search-open { overflow: hidden; }

/* ── sections ─────────────────────────────────────────── */
.section { padding: clamp(70px, 11vh, 120px) 0; }
.section-blog { padding: clamp(46px, 7vh, 80px) 0; }
.section-alt {
  background:
    radial-gradient(900px 400px at 50% 0%, rgba(203, 169, 106, .05), transparent 60%),
    var(--bg-soft);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.section-head { text-align: center; margin-bottom: clamp(38px, 6vh, 60px); }
.section-sub {
  color: var(--ink-dim); font-family: var(--serif);
  font-size: clamp(16px, 3.6vw, 19px);
}

section[id] { scroll-margin-top: calc(var(--header-h) + 4px); }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.22,.7,.3,1); }
.reveal.is-in { opacity: 1; transform: none; }

/* ── page hero (blog home & archives) ─────────────────── */
.page-hero {
  padding: calc(var(--header-h) + clamp(44px, 8vh, 80px)) 0 clamp(40px, 7vh, 70px);
  text-align: center;
  background:
    radial-gradient(900px 420px at 50% -10%, rgba(203, 169, 106, .12), transparent 60%),
    linear-gradient(180deg, rgba(11, 11, 16, .96) 0%, rgba(14, 14, 19, .99) 100%),
    var(--bg);
  border-bottom: 1px solid var(--line-soft);
}
.page-hero h1 { font-size: clamp(34px, 6.5vw, 56px); font-weight: 500; margin-top: 8px; }
.page-sub {
  font-family: var(--serif);
  font-size: clamp(16px, 3.8vw, 20px);
  color: var(--ink-dim); line-height: 1.6;
  max-width: 60ch; margin: 12px auto 0;
}
.crumbs {
  margin-bottom: 18px;
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--ink-faint);
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
}
.crumbs a:hover { color: var(--gold); }
.crumbs span[aria-current] { color: var(--gold-dim); }

/* category chips under hero */
.cat-jump {
  margin-top: 26px;
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
}
.cat-jump a {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 11px 22px;
  border: 1px solid var(--line-soft); border-radius: 999px;
  font-size: 13px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-dim);
  transition: color .2s, border-color .2s, transform .2s, background-color .2s;
}
.cat-jump a:hover { color: var(--gold-hi); border-color: var(--gold); transform: translateY(-2px); }
.cat-jump a.is-active {
  color: #17130a;
  background: linear-gradient(140deg, var(--gold-hi), var(--gold));
  border-color: transparent;
}
.cat-jump a .count { color: inherit; opacity: .6; font-size: 11px; }

/* ── post cards ───────────────────────────────────────── */
.post-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.2vw, 26px);
}
.post-card {
  display: flex; flex-direction: column;
  background: linear-gradient(165deg, var(--card-hi), var(--card) 70%);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.post-card:hover {
  transform: translateY(-5px);
  border-color: rgba(203, 169, 106, .5);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .45);
}
.post-card-media {
  position: relative; overflow: hidden;
  aspect-ratio: 16 / 10;
  background:
    radial-gradient(circle at 50% 40%, rgba(203, 169, 106, .16), transparent 70%),
    var(--bg-soft);
  display: block;
}
.post-card-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s cubic-bezier(.22,.7,.3,1);
}
.post-card:hover .post-card-media img { transform: scale(1.05); }
.post-card-media .media-mono {
  position: absolute; inset: 0; display: grid; place-items: center;
}
.post-card-media .media-mono img { width: 42%; height: auto; object-fit: contain; opacity: .5; }
.post-card-cat {
  position: absolute; top: 12px; left: 12px;
  padding: 5px 13px;
  border-radius: 999px;
  background: rgba(14, 14, 19, .78);
  border: 1px solid var(--line);
  backdrop-filter: blur(6px);
  font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold-hi);
}
.post-card-body {
  display: flex; flex-direction: column; gap: 10px; flex: 1;
  padding: clamp(18px, 2.4vw, 26px);
}
.post-card h3 {
  font-size: clamp(19px, 2.6vw, 23px); font-weight: 500; line-height: 1.3;
}
.post-card h3 a { transition: color .2s; }
.post-card h3 a:hover { color: var(--gold-hi); }
.post-card-excerpt {
  color: var(--ink-dim); line-height: 1.7; font-size: 14.5px;
}
.post-card-meta {
  margin-top: auto; padding-top: 12px;
  display: flex; align-items: center; gap: 14px;
  font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-faint);
  border-top: 1px solid var(--line-soft);
}
.post-card-meta .icon { width: 14px; height: 14px; color: var(--gold-dim); }
.post-card-meta span { display: inline-flex; align-items: center; gap: 6px; }

/* featured (first) card spans full width on home page 1 */
.post-card-feature { grid-column: 1 / -1; flex-direction: row; align-items: stretch; }
.post-card-feature .post-card-media { flex: 1 1 56%; aspect-ratio: auto; min-height: 340px; }
.post-card-feature .post-card-body { flex: 1 1 44%; justify-content: center; gap: 14px; padding: clamp(24px, 3.4vw, 48px); }
.post-card-feature h3 { font-size: clamp(24px, 3.6vw, 36px); }
.post-card-feature .post-card-excerpt { font-size: 16px; -webkit-line-clamp: 4; }
.feature-eyebrow {
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold);
}

/* ── pagination ───────────────────────────────────────── */
.pagination {
  margin-top: clamp(40px, 6vh, 60px);
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
}
.pagination .page-numbers {
  min-width: 46px; height: 46px;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0 16px;
  border: 1px solid var(--line-soft); border-radius: 999px;
  font-size: 13px; letter-spacing: .1em;
  color: var(--ink-dim);
  transition: color .2s, border-color .2s, transform .2s;
}
.pagination .page-numbers:hover { color: var(--gold-hi); border-color: var(--gold); transform: translateY(-2px); }
.pagination .page-numbers.current {
  color: #17130a;
  background: linear-gradient(140deg, var(--gold-hi), var(--gold));
  border-color: transparent;
}
.pagination .page-numbers.dots { border: 0; }

/* ── single post ──────────────────────────────────────── */
.single-hero {
  padding: calc(var(--header-h) + clamp(40px, 7vh, 70px)) 0 clamp(34px, 5vh, 54px);
  text-align: center;
  background:
    radial-gradient(900px 420px at 50% -10%, rgba(203, 169, 106, .12), transparent 60%),
    linear-gradient(180deg, rgba(11, 11, 16, .96) 0%, rgba(14, 14, 19, .99) 100%),
    var(--bg);
  border-bottom: 1px solid var(--line-soft);
}
.single-hero h1 {
  font-size: clamp(30px, 5.6vw, 50px); font-weight: 500;
  max-width: 22ch; margin: 10px auto 0;
}
.single-meta {
  margin-top: 20px;
  display: flex; flex-wrap: wrap; gap: 10px 22px; justify-content: center;
  font-size: 12px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink-faint);
}
.single-meta span { display: inline-flex; align-items: center; gap: 7px; }
.single-meta .icon { width: 15px; height: 15px; color: var(--gold-dim); }
.single-meta a:hover { color: var(--gold); }

.single-figure {
  margin: clamp(-26px, -4vh, -40px) auto 0;
  width: min(980px, calc(100% - 2 * var(--pad)));
}
.single-figure img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: 0 30px 60px rgba(0, 0, 0, .45);
}

.entry-content {
  padding: clamp(40px, 6vh, 64px) 0 clamp(30px, 5vh, 44px);
  font-size: clamp(16px, 2vw, 17.5px);
  line-height: 1.9;
  color: var(--ink-dim);
}
.entry-content > * + * { margin-top: 1.35em; }
.entry-content h2, .entry-content h3, .entry-content h4 { color: var(--ink); margin-top: 1.8em; }
.entry-content h2 { font-size: clamp(26px, 4.4vw, 34px); font-weight: 500; }
.entry-content h3 { font-size: clamp(21px, 3.4vw, 26px); font-weight: 500; }
.entry-content h4 { font-size: clamp(18px, 3vw, 21px); font-weight: 500; color: var(--gold-hi); }
.entry-content strong { color: var(--ink); font-weight: 500; }
.entry-content em { color: var(--ink); }
.entry-content a { color: var(--gold); border-bottom: 1px solid var(--line); transition: color .2s, border-color .2s; }
.entry-content a:hover { color: var(--gold-hi); border-bottom-color: var(--gold); }
.entry-content ul, .entry-content ol { padding-left: 1.4em; }
.entry-content li { margin-top: .5em; }
.entry-content li::marker { color: var(--gold); }
.entry-content blockquote {
  padding: 22px 26px;
  background: linear-gradient(160deg, var(--card-hi), var(--card) 70%);
  border: 1px solid var(--line-soft);
  border-left: 2px solid var(--gold);
  border-radius: var(--radius);
  font-family: var(--serif); font-style: italic;
  font-size: clamp(17px, 3.6vw, 20px); line-height: 1.65;
  color: var(--ink);
}
.entry-content blockquote cite {
  display: block; margin-top: 10px;
  font-family: var(--sans); font-style: normal;
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold-dim);
}
.entry-content img { border-radius: var(--radius); border: 1px solid var(--line-soft); }
.entry-content figure { margin: 1.8em 0; }
.entry-content figcaption {
  margin-top: 10px; text-align: center;
  font-family: var(--serif); font-size: 15px; color: var(--ink-faint);
}
.entry-content hr {
  border: 0; height: 1px; margin: 2.2em auto;
  width: min(280px, 60%);
  background: linear-gradient(90deg, transparent, var(--line) 20%, var(--line) 80%, transparent);
}
.entry-content table { width: 100%; border-collapse: collapse; font-size: 15px; }
.entry-content th, .entry-content td { padding: 12px 14px; border: 1px solid var(--line-soft); text-align: left; }
.entry-content th {
  font-family: var(--serif); font-weight: 600; color: var(--gold-hi);
  background: var(--card);
}
.entry-content pre {
  padding: 18px 20px; overflow-x: auto;
  background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--radius);
  font-size: 14px;
}
.entry-content code { font-size: .92em; color: var(--gold-hi); }
.entry-content iframe { max-width: 100%; border-radius: var(--radius); }
.entry-content .wp-block-embed__wrapper { position: relative; }
.entry-content .aligncenter { margin-left: auto; margin-right: auto; }
.entry-content .alignleft { float: left; margin: 0 1.5em 1em 0; }
.entry-content .alignright { float: right; margin: 0 0 1em 1.5em; }
.entry-content .wp-caption { max-width: 100%; }

/* tags + share row */
.entry-foot {
  padding-bottom: clamp(40px, 6vh, 60px);
}
.entry-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.entry-tags a {
  font-size: 11.5px; letter-spacing: .08em;
  color: var(--ink-dim);
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  padding: 6px 14px;
  transition: color .2s, border-color .2s;
}
.entry-tags a:hover { color: var(--gold-hi); border-color: var(--gold); }

/* share row */
.share-block {
  margin-top: clamp(26px, 4vh, 40px);
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
}
.share-label {
  font-size: 11px; letter-spacing: .24em; text-transform: uppercase;
  color: var(--gold-dim);
}
.share-links { display: flex; gap: 12px; }
.share-links a, .share-links button {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 50%; border: 1px solid var(--line-soft);
  color: var(--ink-dim);
  transition: color .2s, border-color .2s, transform .2s;
}
.share-links a:hover, .share-links button:hover { color: var(--gold-hi); border-color: var(--gold); transform: translateY(-3px); }
.copy-link .icon-check { display: none; }
.copy-link.is-copied { color: var(--gold-hi); border-color: var(--gold); }
.copy-link.is-copied .icon-link { display: none; }
.copy-link.is-copied .icon-check { display: block; }

/* author box */
.author-box {
  margin-top: clamp(30px, 5vh, 44px);
  display: flex; gap: 18px; align-items: flex-start;
  padding: 22px 24px;
  background: linear-gradient(160deg, var(--card-hi), var(--card) 70%);
  border: 1px solid var(--line-soft);
  border-left: 2px solid var(--gold);
  border-radius: var(--radius);
}
.author-box img {
  width: 64px; height: 64px; object-fit: cover;
  border-radius: 50%; border: 1px solid var(--line);
  flex: none;
}
.author-box strong {
  font-family: var(--serif); font-size: 19px; color: var(--gold-hi); font-weight: 600;
  display: block; margin-bottom: 4px;
}
.author-box p { color: var(--ink-dim); line-height: 1.7; font-size: 14.5px; }

/* prev / next */
.post-nav {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(12px, 2vw, 20px);
  padding-bottom: clamp(40px, 6vh, 60px);
}
.post-nav a {
  display: flex; flex-direction: column; gap: 8px;
  padding: clamp(18px, 2.6vw, 26px);
  background: linear-gradient(165deg, var(--card-hi), var(--card) 70%);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  transition: transform .25s, border-color .25s;
}
.post-nav a:hover { transform: translateY(-4px); border-color: rgba(203, 169, 106, .5); }
.post-nav .dir {
  font-size: 11px; letter-spacing: .24em; text-transform: uppercase;
  color: var(--gold-dim);
  display: inline-flex; align-items: center; gap: 8px;
}
.post-nav .dir .icon { width: 15px; height: 15px; }
.post-nav .t { font-family: var(--serif); font-size: clamp(17px, 2.6vw, 20px); font-weight: 500; line-height: 1.35; }
.post-nav .next { text-align: right; align-items: flex-end; }

/* related */
.related h2 { font-size: clamp(24px, 4.4vw, 34px); font-weight: 500; }

/* ── comments ─────────────────────────────────────────── */
.comments-area { padding-bottom: clamp(50px, 8vh, 80px); }
.comments-title, .comment-reply-title {
  font-size: clamp(22px, 4vw, 30px); font-weight: 500; margin-bottom: 26px;
}
.comment-list { list-style: none; }
.comment-list .children { list-style: none; margin-left: clamp(16px, 4vw, 44px); }
.comment-body {
  padding: 20px 22px; margin-bottom: 14px;
  background: linear-gradient(165deg, var(--card-hi), var(--card) 70%);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
}
.comment-meta { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.comment-meta img { border-radius: 50%; border: 1px solid var(--line); }
.comment-author-name { font-family: var(--serif); font-size: 17px; font-weight: 600; color: var(--gold-hi); }
.comment-date {
  display: block; font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-faint); margin-top: 2px;
}
.comment-content { color: var(--ink-dim); line-height: 1.75; font-size: 15px; }
.comment-content p + p { margin-top: .8em; }
.comment-reply-link {
  display: inline-block; margin-top: 10px;
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold);
}
.comment-reply-link:hover { color: var(--gold-hi); }
.comment-awaiting-moderation { font-size: 12px; color: var(--gold-dim); font-style: italic; }

.comment-form { display: grid; gap: 14px; }
.comment-form label {
  display: block; margin-bottom: 6px;
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold-dim);
}
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea,
.search-form input[type="search"] {
  width: 100%;
  padding: 14px 18px;
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  color: var(--ink);
  font: inherit;
  transition: border-color .2s, box-shadow .2s;
}
.comment-form input:focus, .comment-form textarea:focus, .search-form input:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(203, 169, 106, .15);
}
.comment-form .comment-form-cookies-consent {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--ink-faint);
}
.comment-form .comment-form-cookies-consent label { margin: 0; text-transform: none; letter-spacing: .02em; font-size: 13px; color: var(--ink-faint); }
.comment-form .form-submit { margin-top: 6px; }
.comment-notes, .logged-in-as { font-size: 13px; color: var(--ink-faint); }
.logged-in-as a { color: var(--gold-dim); }
.comment-respond { margin-top: clamp(26px, 4vh, 40px); }

/* ── search ───────────────────────────────────────────── */
.search-form { display: flex; gap: 10px; max-width: 560px; margin: 0 auto; }
.search-form input[type="search"] { flex: 1; }
.search-form .btn { padding: 13px 26px; }
.hero-search { margin-top: 28px; }

/* ── 404 / empty states ───────────────────────────────── */
.empty-state {
  text-align: center;
  padding: clamp(50px, 9vh, 90px) 0;
}
.empty-state .big {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(70px, 16vw, 140px); line-height: 1;
  color: var(--gold);
  text-shadow: 0 0 60px rgba(203, 169, 106, .35);
}
.empty-state h1, .empty-state h2 { font-weight: 500; margin: 14px 0 10px; font-size: clamp(24px, 5vw, 38px); }
.empty-state p { color: var(--ink-dim); max-width: 50ch; margin: 0 auto 26px; line-height: 1.7; }

/* ── booking band (pre-footer) ────────────────────────── */
.book-band {
  padding: clamp(64px, 10vh, 110px) 0;
  text-align: center;
  background:
    radial-gradient(800px 380px at 50% 50%, rgba(203, 169, 106, .13), transparent 70%),
    linear-gradient(180deg, var(--bg), var(--bg-soft));
  border-top: 1px solid var(--line-soft);
}
.book-band h2 { margin: 14px 0 6px; font-weight: 500; font-size: clamp(32px, 6vw, 52px); }
.book-cta {
  margin-top: 28px;
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: center;
}

/* ── footer ───────────────────────────────────────────── */
.site-footer {
  padding: clamp(48px, 8vh, 80px) 0 40px;
  text-align: center;
  border-top: 1px solid var(--line-soft);
  background: var(--bg);
}
.foot-logo { height: 52px; width: auto; margin: 0 auto 10px; }
.foot-tag { font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--gold-dim); }
.socials {
  margin: 26px 0 20px;
  display: flex; gap: 14px; justify-content: center;
}
.socials a {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 50%; border: 1px solid var(--line-soft);
  color: var(--ink-dim);
  transition: color .2s, border-color .2s, transform .2s;
}
.socials a:hover { color: var(--gold-hi); border-color: var(--gold); transform: translateY(-3px); }
.foot-nav {
  display: flex; flex-wrap: wrap; gap: 8px 26px; justify-content: center;
  margin-bottom: 22px;
}
.foot-nav a {
  font-size: 12px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink-faint);
  transition: color .2s;
}
.foot-nav a:hover { color: var(--gold); }
.foot-fine { font-size: 13px; color: var(--ink-faint); }
.foot-fine a { color: var(--gold-dim); }
.foot-fine a:hover { color: var(--gold); }

/* ── responsive ───────────────────────────────────────── */
@media (max-width: 1060px) {
  .post-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: grid; place-items: center;
    width: 46px; height: 46px; margin-left: auto;
    border-radius: 50%; color: var(--ink);
  }
  .main-nav {
    position: fixed; inset: var(--header-h) 0 auto;
    flex-direction: column; align-items: center; gap: 6px;
    padding: 18px var(--pad) 28px;
    background: rgba(14, 14, 19, .97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    transform: translateY(-130%);
    transition: transform .35s cubic-bezier(.22,.7,.3,1);
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
  }
  .main-nav.is-open { transform: none; }
  .main-nav > a:not(.btn):not(.nav-phone) { padding: 12px; font-size: 14px; }
  .nav-phone { padding: 12px; font-size: 19px; }
  .btn-nav { margin-top: 8px; }
  .search-toggle { padding: 12px; font-size: 14px; letter-spacing: .2em; text-transform: uppercase; }
  .search-toggle span { display: inline; }
  .site-header { background: rgba(14, 14, 19, .86); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom-color: var(--line-soft); }

  .post-card-feature { flex-direction: column; }
  .post-card-feature .post-card-media { aspect-ratio: 16 / 10; min-height: 0; }
  .post-nav { grid-template-columns: 1fr; }
  .post-nav .next { text-align: left; align-items: flex-start; }
}

@media (max-width: 560px) {
  .post-grid { grid-template-columns: 1fr; }
  .author-box { flex-direction: column; }
  .book-cta .btn { width: 100%; }
  .search-form { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
