/* Threshold — dark & moody. Warm charcoal, copper light, blueprint lines. */
:root {
  --bg: #0d0c0b;
  --bg-2: #12100e;
  --surface: #181613;
  --surface-2: #201d19;
  --line: rgba(236, 222, 200, .09);
  --line-2: rgba(236, 222, 200, .16);
  --text: #ece5d9;
  --muted: #a1978a;
  --faint: #6f675d;
  --accent: #c9894a;
  --accent-hi: #e8b273;
  --accent-glow: rgba(232, 178, 115, .35);
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, Consolas, monospace;
  --r: 14px;
  --wrap: 1180px;
  --ease: cubic-bezier(.2, .7, .2, 1);
  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--bg); color: var(--text);
  font: 400 17px/1.65 var(--sans); overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
/* film grain */
body::before {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 100; opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
img, svg { max-width: 100%; }
a { color: var(--accent-hi); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: #f3cf9f; }
::selection { background: var(--accent); color: #140f0a; }
:focus-visible { outline: 2px solid var(--accent-hi); outline-offset: 3px; border-radius: 4px; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.wrap.narrow { max-width: 820px; }
.skip { position: absolute; left: -999px; top: 8px; background: var(--accent); color: #140f0a; padding: 8px 14px; border-radius: 8px; z-index: 200; }
.skip:focus { left: 8px; }

h1, h2, h3 { font-family: var(--serif); font-weight: 500; letter-spacing: -.02em; line-height: 1.08; margin: 0; }
h1 { font-size: clamp(2.5rem, 6.4vw, 5.4rem); font-weight: 300; }
h1 em { font-style: italic; color: var(--accent-hi); font-weight: 300; text-shadow: 0 0 40px var(--accent-glow); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); font-weight: 400; }
h3 { font-size: 1.35rem; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; font: 500 .72rem/1 var(--mono);
  letter-spacing: .16em; text-transform: uppercase; color: var(--accent);
}
.ico, .ico-sm, .ico-xl { fill: none; stroke: currentColor; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.ico { width: 28px; height: 28px; }
.ico-sm { width: 15px; height: 15px; }
.ico-xl { width: 96px; height: 96px; stroke-width: 1; }
.ar { width: 1.05em; height: 1.05em; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; transition: transform .3s var(--ease); flex: none; }

/* top bar + header */
.topbar { font: 400 .74rem/1.4 var(--mono); color: var(--faint); text-align: center; padding: 8px 16px; border-bottom: 1px solid var(--line); background: var(--bg-2); }
.topbar a { color: var(--muted); }
.site-header { position: sticky; top: env(safe-area-inset-top, 0px); z-index: 50; transition: background .3s, border-color .3s; border-bottom: 1px solid transparent; }
.site-header.scrolled { background: rgba(13, 12, 11, .82); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-color: var(--line); }
.header-in { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--text); text-decoration: none; font: 500 1.35rem/1 var(--serif); letter-spacing: -.01em; }
.brand:hover { color: var(--text); }
.logo-mark { width: 30px; height: 30px; fill: none; stroke: var(--accent); stroke-width: 1.8; }
.logo-mark .glow { fill: var(--accent-hi); stroke: none; opacity: .85; filter: drop-shadow(0 0 5px var(--accent-glow)); }
.nav { display: flex; gap: 30px; }
.nav a { color: var(--muted); text-decoration: none; font-size: .93rem; font-weight: 500; position: relative; }
.nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 1px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
.nav a:hover, .nav a[aria-current] { color: var(--text); }
.nav a:hover::after, .nav a[aria-current]::after { transform: scaleX(1); }
.nav-toggle { display: none; background: none; border: 0; width: 44px; height: 44px; position: relative; cursor: pointer; }
.nav-toggle span { position: absolute; left: 11px; right: 11px; height: 1.5px; background: var(--text); transition: transform .3s var(--ease), top .3s; }
.nav-toggle span:first-child { top: 17px; } .nav-toggle span:last-child { top: 26px; }
.nav-toggle[aria-expanded="true"] span:first-child { top: 21px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { top: 21px; transform: rotate(-45deg); }

/* buttons */
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 24px; border-radius: 999px; font: 600 .95rem/1 var(--sans); text-decoration: none; transition: all .3s var(--ease); border: 1px solid transparent; }
.btn-primary { background: var(--accent); color: #150f09; box-shadow: 0 8px 30px -10px var(--accent-glow); }
.btn-primary:hover { background: var(--accent-hi); color: #150f09; box-shadow: 0 10px 40px -8px var(--accent-glow); }
.btn-ghost { border-color: var(--line-2); color: var(--text); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-hi); }
.btn:hover .ar, .more:hover .ar, a:hover > .more .ar, .link-more:hover .ar { transform: translateX(4px); }

/* blueprint grid */
.hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 70% at 60% 40%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 60% 40%, #000 20%, transparent 75%);
}

/* hero */
.hero { position: relative; padding: 70px 0 0; overflow: hidden; }
.hero-in { position: relative; display: grid; grid-template-columns: 1.2fr .8fr; gap: 48px; align-items: center; min-height: 560px; padding-bottom: 56px; }
.hero-copy { position: relative; z-index: 2; }
.hero-copy .eyebrow { margin-bottom: 26px; }
.hero-sub { font-size: 1.15rem; color: var(--muted); max-width: 560px; margin: 28px 0 36px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-photo { position: relative; height: 540px; border: 1px solid var(--line-2); overflow: hidden; box-shadow: 0 40px 120px -40px rgba(232,178,115,.35); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 57% 60%; display: block; animation: slowzoom 18s ease-out both; }
.hero-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(13,12,11,.55)), radial-gradient(ellipse at 50% 60%, transparent 40%, rgba(13,12,11,.45)); pointer-events: none; }
@keyframes slowzoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero-foot { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); margin-top: 0; }
.hero-foot div { padding: 24px 0; display: flex; align-items: baseline; gap: 10px; }
.hero-foot strong { font: 400 1.9rem/1 var(--serif); color: var(--text); }
.hero-foot span { font: 400 .72rem/1 var(--mono); letter-spacing: .12em; text-transform: uppercase; color: var(--faint); }

/* sections */
.section { padding: 110px 0; position: relative; }
.section.band { background: linear-gradient(180deg, var(--bg-2), var(--bg)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.block-head { margin-bottom: 44px; max-width: 700px; }
.block-head .eyebrow { margin-bottom: 16px; }
.block-head p { color: var(--muted); margin: 16px 0 0; font-size: 1.05rem; }
.block-head.row { display: flex; justify-content: space-between; align-items: flex-end; max-width: none; gap: 20px; }
.link-more { display: inline-flex; align-items: center; gap: 8px; color: var(--accent-hi); text-decoration: none; font-weight: 600; font-size: .95rem; white-space: nowrap; }

/* room picker */
.rooms { display: grid; grid-template-columns: 1.35fr 1fr; gap: 28px; align-items: stretch; }
.plan-wrap { background: linear-gradient(rgba(18,16,14,.9), rgba(18,16,14,.94)), url(/images/rooms-floorplan-bg-1600.webp) center / cover, var(--bg-2); border: 1px solid var(--line); border-radius: var(--r); padding: 22px; display: flex; flex-direction: column; gap: 16px; }
.plan { width: 100%; height: auto; display: block; }
.plan .room { cursor: pointer; outline: none; }
.plan .room rect { fill: rgba(236,222,200,.015); stroke: var(--line-2); stroke-width: 1.5; transition: fill .35s, stroke .35s; }
.plan .room text { font: 500 11px var(--mono); letter-spacing: .16em; fill: var(--muted); transition: fill .3s; pointer-events: none; }
.plan .room text.n { font: 300 30px var(--serif); letter-spacing: 0; fill: var(--faint); }
.plan .room:hover rect, .plan .room:focus-visible rect { fill: rgba(201,137,74,.07); stroke: rgba(201,137,74,.6); }
.plan .room.active rect { fill: rgba(232,178,115,.14); stroke: var(--accent-hi); filter: drop-shadow(0 0 14px rgba(232,178,115,.25)); }
.plan .room.active text { fill: var(--accent-hi); }
.plan .swing { fill: none; stroke: var(--accent); stroke-dasharray: 3 4; opacity: .6; }
.plan .dim { stroke: var(--faint); stroke-width: 1; }
.plan .dimt { font: 500 9px var(--mono); letter-spacing: .3em; fill: var(--faint); }
.whole { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; padding: 14px; background: transparent; border: 1px dashed var(--line-2); border-radius: 10px; color: var(--muted); font: 500 .9rem var(--sans); cursor: pointer; transition: all .3s; }
.whole .ico { width: 20px; height: 20px; }
.whole:hover, .whole.active { border-color: var(--accent); color: var(--accent-hi); background: rgba(201,137,74,.06); }
.room-panel { background: linear-gradient(160deg, var(--surface-2), var(--surface)); border: 1px solid var(--line); border-radius: var(--r); padding: 34px; display: flex; flex-direction: column; position: relative; overflow: hidden; }
.room-panel::before { content: ""; position: absolute; top: -120px; right: -120px; width: 280px; height: 280px; border-radius: 50%; background: radial-gradient(circle, rgba(232,178,115,.16), transparent 70%); pointer-events: none; }
.rp-head { display: flex; gap: 12px; align-items: baseline; font: 500 .72rem var(--mono); letter-spacing: .14em; text-transform: uppercase; color: var(--faint); }
.rp-num { color: var(--accent); }
.rp-title { font-size: 2.3rem; margin: 14px 0 10px; font-weight: 400; }
.rp-desc { color: var(--muted); margin: 0 0 22px; }
.rp-picks { list-style: none; padding: 0; margin: 0 0 26px; counter-reset: p; }
.rp-picks li { counter-increment: p; border-top: 1px solid var(--line); }
.rp-picks a { display: grid; grid-template-columns: 28px 1fr auto; gap: 10px; align-items: center; padding: 14px 0; color: var(--text); text-decoration: none; }
.rp-picks a::before { content: "0" counter(p); font: 400 .75rem var(--mono); color: var(--faint); }
.rp-picks a small { display: block; font-size: .78rem; color: var(--muted); margin-top: 2px; }
.rp-picks a:hover { color: var(--accent-hi); }
.rp-picks a:hover .ar { transform: translateX(4px); }
.rp-all { align-self: flex-start; margin-top: auto; }
.rp-note { font: 400 .7rem var(--mono); color: var(--faint); margin: 16px 0 0; }
.room-panel.swap .rp-title, .room-panel.swap .rp-desc, .room-panel.swap .rp-picks { animation: fadeUp .45s var(--ease); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* photos in cards & panels */
.card-img { margin: -30px -30px 24px; aspect-ratio: 16 / 9; overflow: hidden; border-radius: var(--r) var(--r) 0 0; border-bottom: 1px solid var(--line); background: var(--bg-2); }
.card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .8s var(--ease), filter .8s; filter: saturate(.9) brightness(.92); }
a:hover > .card-img img { transform: scale(1.05); filter: none; }
.rp-img { position: relative; margin: -34px -34px 26px; aspect-ratio: 16 / 8; overflow: hidden; background: var(--bg-2); }
.rp-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.rp-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, var(--surface-2)); }
.room-panel.swap .rp-img img { animation: fadeIn .6s var(--ease); }
@keyframes fadeIn { from { opacity: .2; } to { opacity: 1; } }
.cat-thumb { display: block; width: 96px; height: 60px; overflow: hidden; border: 1px solid var(--line-2); position: relative; }
.cat-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; filter: grayscale(.4) brightness(.8); transition: filter .4s, transform .6s var(--ease); }
.cat-row:hover .cat-thumb img { filter: none; transform: scale(1.08); }

/* category list */
.cat-list { border-top: 1px solid var(--line); }
.cat-row { display: grid; grid-template-columns: 70px 96px 1fr auto 40px; gap: 20px; align-items: center; padding: 28px 8px; border-bottom: 1px solid var(--line); color: var(--text); text-decoration: none; position: relative; transition: padding .4s var(--ease), background .4s; }
.cat-row::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(201,137,74,.1), transparent 70%); opacity: 0; transition: opacity .4s; }
.cat-row:hover { padding-left: 22px; color: var(--text); }
.cat-row:hover::before { opacity: 1; }
.cat-num { font: 300 2rem/1 var(--serif); color: var(--faint); transition: color .3s; }
.cat-row:hover .cat-num { color: var(--accent-hi); }
.cat-ico { color: var(--accent); display: flex; }
.cat-main { display: flex; flex-direction: column; gap: 4px; position: relative; }
.cat-name { font: 400 clamp(1.3rem, 2.4vw, 1.9rem)/1.15 var(--serif); letter-spacing: -.01em; }
.cat-kick { color: var(--muted); font-size: .93rem; }
.cat-room { font: 500 .7rem var(--mono); letter-spacing: .14em; text-transform: uppercase; color: var(--faint); border: 1px solid var(--line-2); padding: 7px 12px; border-radius: 999px; }
.cat-go { color: var(--accent); display: flex; justify-content: flex-end; }
.cat-go .ar { width: 22px; height: 22px; }
.cat-row:hover .cat-go .ar { transform: translateX(6px); }

/* projects */
.projects { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.project { display: flex; flex-direction: column; padding: 30px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); color: var(--text); text-decoration: none; transition: transform .4s var(--ease), border-color .4s; }
.project:hover { transform: translateY(-4px); border-color: rgba(201,137,74,.5); color: var(--text); }
.project-meta, .guide-meta { display: flex; gap: 14px; font: 500 .7rem var(--mono); letter-spacing: .14em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.guide-meta span + span, .project-meta span + span, .guide-meta a + span { color: var(--faint); }
.guide-meta a { color: var(--accent); text-decoration: none; }
.project h3 { font-size: 1.6rem; font-weight: 400; margin-bottom: 18px; }
.parts { list-style: none; padding: 0; margin: 0 0 24px; }
.parts li { padding: 9px 0 9px 22px; border-top: 1px dashed var(--line-2); color: var(--muted); font-size: .93rem; position: relative; }
.parts li::before { content: ""; position: absolute; left: 2px; top: 17px; width: 8px; height: 8px; border: 1px solid var(--accent); border-radius: 2px; }
.more { display: inline-flex; align-items: center; gap: 8px; color: var(--accent-hi); font-weight: 600; font-size: .92rem; margin-top: auto; }

/* guides */
.guides { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.guides.two { grid-template-columns: repeat(2, 1fr); }
.guide { display: flex; flex-direction: column; padding: 30px; border: 1px solid var(--line); border-radius: var(--r); background: linear-gradient(180deg, var(--surface), var(--bg-2)); color: var(--text); text-decoration: none; transition: border-color .4s, transform .4s var(--ease); }
.guide:hover { border-color: rgba(201,137,74,.5); transform: translateY(-4px); color: var(--text); }
.guide h3 { font-size: 1.4rem; font-weight: 400; line-height: 1.2; margin-bottom: 12px; }
.guide p { color: var(--muted); font-size: .95rem; margin: 0 0 22px; }
.feature { display: grid; grid-template-columns: minmax(0, 420px) 1fr; gap: 40px; align-items: center; padding: 40px; margin-bottom: 22px; border: 1px solid var(--line); border-radius: var(--r); background: radial-gradient(ellipse at 0% 50%, rgba(232,178,115,.1), transparent 60%), var(--surface); color: var(--text); text-decoration: none; transition: border-color .4s; }
.feature:hover { border-color: rgba(201,137,74,.5); color: var(--text); }
.feature-art { aspect-ratio: 4 / 3; overflow: hidden; border: 1px solid var(--line-2); border-radius: 12px; }
.feature-art img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .8s var(--ease); }
.feature:hover .feature-art img { transform: scale(1.04); }
.feature h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); margin-bottom: 14px; }
.feature p { color: var(--muted); margin: 0 0 22px; }

/* principles */
.principles { display: grid; grid-template-columns: 1fr 1.3fr; gap: 50px; padding: 56px; border: 1px solid var(--line); border-radius: var(--r); background: var(--bg-2); position: relative; }
.principles h2 { margin-top: 16px; }
.principles ul { list-style: none; margin: 0; padding: 0; }
.principles li { padding: 16px 0; border-top: 1px solid var(--line); color: var(--muted); }
.principles li strong { color: var(--text); font-weight: 600; }
.principles .link-more { grid-column: 2; }

/* page hero */
.page-hero, .post-hero { position: relative; padding: 60px 0 70px; border-bottom: 1px solid var(--line); overflow: hidden; }
.page-hero h1, .post-hero h1 { font-size: clamp(2.3rem, 5.4vw, 4.4rem); margin-top: 18px; }
.post-hero h1 { font-size: clamp(2rem, 4.4vw, 3.4rem); line-height: 1.12; }
.page-hero .wrap, .post-hero .wrap { position: relative; }
.ph-photo { position: absolute; inset: 0 0 0 44%; pointer-events: none; -webkit-mask-image: linear-gradient(90deg, transparent, #000 38%); mask-image: linear-gradient(90deg, transparent, #000 38%); }
.ph-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 60% 50%; display: block; opacity: .8; }
.ph-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(13,12,11,.05), rgba(13,12,11,.6)); }
.page-hero.has-photo .ph-intro, .post-hero.has-photo .ph-intro { max-width: 600px; }
.has-photo { padding-bottom: 90px; }
.ph-intro { color: var(--muted); font-size: 1.15rem; max-width: 720px; margin: 22px 0 0; }
.ph-in { display: grid; grid-template-columns: auto 1fr; gap: 36px; align-items: start; margin-top: 30px; }
.ph-in h1 { margin-top: 14px; }
.ph-num { font: 300 clamp(5rem, 13vw, 10rem)/.8 var(--serif); color: transparent; -webkit-text-stroke: 1px rgba(232,178,115,.55); text-shadow: 0 0 60px rgba(232,178,115,.18); }
.crumbs { font: 400 .75rem var(--mono); color: var(--faint); display: flex; gap: 10px; flex-wrap: wrap; }
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--accent-hi); }
.crumbs + .eyebrow, .crumbs + .guide-meta { margin-top: 30px; }
.subnav { position: sticky; top: 70px; z-index: 40; background: rgba(13,12,11,.88); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.subnav .wrap { display: flex; gap: 28px; overflow-x: auto; scrollbar-width: none; }
.subnav a { padding: 16px 0; font: 500 .74rem var(--mono); letter-spacing: .12em; text-transform: uppercase; color: var(--muted); text-decoration: none; white-space: nowrap; border-bottom: 1px solid transparent; }
.subnav a:hover, .subnav a.on { color: var(--accent-hi); border-color: var(--accent); }

/* blocks & picks */
.block { padding: 80px 0 0; scroll-margin-top: 130px; }
.aff-note { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; font-size: .85rem; color: var(--muted); padding: 12px 16px; border: 1px solid var(--line); border-radius: 10px; background: var(--bg-2); margin: 0 0 26px; }
.aff-note .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px var(--accent-glow); flex: none; }
.picks { border-top: 1px solid var(--line); }
.pick { display: grid; grid-template-columns: 70px 1fr auto; gap: 26px; align-items: center; padding: 30px 0; border-bottom: 1px solid var(--line); }
.pick-num { font: 300 2.6rem/1 var(--serif); color: var(--faint); }
.pick:hover .pick-num { color: var(--accent-hi); }
.tag { display: inline-block; font: 500 .66rem/1 var(--mono); letter-spacing: .14em; text-transform: uppercase; color: var(--accent); border: 1px solid rgba(201,137,74,.4); padding: 6px 10px; border-radius: 999px; margin-bottom: 12px; }
.pick h3 { font-size: 1.5rem; font-weight: 400; margin-bottom: 8px; }
.pick p { color: var(--muted); margin: 0; max-width: 640px; }
.pick-cta { display: inline-flex; align-items: center; gap: 10px; padding: 13px 20px; border: 1px solid var(--line-2); border-radius: 999px; color: var(--text); text-decoration: none; font-weight: 600; font-size: .9rem; white-space: nowrap; transition: all .3s var(--ease); }
.pick-cta:hover { background: var(--accent); border-color: var(--accent); color: #150f09; }
.pick-cta:hover .ar { transform: translateX(4px); }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r); background: var(--bg-2); }
.compare { width: 100%; border-collapse: collapse; min-width: 640px; font-size: .95rem; }
.compare th, .compare td { text-align: left; padding: 18px 22px; border-bottom: 1px solid var(--line); vertical-align: top; }
.compare thead th { font: 500 .7rem var(--mono); letter-spacing: .14em; text-transform: uppercase; color: var(--accent); background: var(--surface); }
.compare tbody th { font: 500 1.1rem var(--serif); color: var(--text); }
.compare td { color: var(--muted); }
.compare tbody tr:last-child > * { border-bottom: 0; }
.compare tbody tr:hover { background: rgba(201,137,74,.04); }
.tips { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.tip { padding: 28px; border-left: 1px solid var(--accent); background: linear-gradient(90deg, rgba(201,137,74,.07), transparent); }
.tip h3 { font-size: 1.2rem; margin-bottom: 10px; }
.tip p { color: var(--muted); margin: 0; font-size: .95rem; }
.faq { border-top: 1px solid var(--line); max-width: 860px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { cursor: pointer; list-style: none; padding: 22px 40px 22px 0; font: 400 1.2rem var(--serif); position: relative; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 4px; top: 18px; font: 300 1.6rem var(--sans); color: var(--accent); transition: transform .3s var(--ease); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { color: var(--muted); margin: 0 0 22px; max-width: 720px; }
.next-cat { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin: 90px 0 110px; padding: 40px; border: 1px solid var(--line); border-radius: var(--r); color: var(--text); text-decoration: none; background: radial-gradient(ellipse at 100% 50%, rgba(232,178,115,.12), transparent 60%), var(--bg-2); }
.next-cat:hover { border-color: rgba(201,137,74,.5); color: var(--text); }
.nc-name { font: 400 clamp(1.5rem, 3vw, 2.4rem) var(--serif); flex: 1; }
.next-cat .ar { width: 34px; height: 34px; color: var(--accent); }
.next-cat:hover .ar { transform: translateX(8px); }

/* posts & prose */
.post-grid { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 60px; padding-top: 50px; }
.prose { font-size: 1.08rem; padding-bottom: 20px; }
.prose > .wrap { padding: 0; }
.prose p, .prose li { color: #d4ccbf; }
.prose .lede { font: 300 1.4rem/1.55 var(--serif); color: var(--text); margin-top: 0; }
.prose h2 { font-size: 1.85rem; margin: 52px 0 16px; }
.prose ul, .prose ol { padding-left: 1.2em; }
.prose li { margin: 8px 0; }
.prose li::marker { color: var(--accent); }
.prose strong { color: var(--text); }
.prose a { color: var(--accent-hi); }
.wrap.narrow .prose { padding: 50px 0 110px; }
.post-side { position: relative; }
.side-card { position: sticky; top: 100px; padding: 26px; border: 1px solid var(--line); border-radius: var(--r); background: var(--surface); }
.side-picks { list-style: none; padding: 0; margin: 18px 0 20px; }
.side-picks li { padding: 12px 0; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 2px; }
.side-picks a { color: var(--text); text-decoration: none; font-weight: 600; font-size: .95rem; }
.side-picks a:hover { color: var(--accent-hi); }
.side-picks span { font-size: .8rem; color: var(--muted); }
.post .block { padding-bottom: 110px; }

/* footer */
.site-footer { border-top: 1px solid var(--line); background: var(--bg-2); padding: 70px 0 40px; margin-top: 0; }
.foot-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr .8fr; gap: 40px; }
.foot-brand p { color: var(--muted); font-size: .92rem; max-width: 300px; margin: 16px 0 0; }
.site-footer h4 { font: 500 .7rem var(--mono); letter-spacing: .14em; text-transform: uppercase; color: var(--accent); margin: 6px 0 16px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin: 9px 0; }
.site-footer li a { color: var(--muted); text-decoration: none; font-size: .9rem; }
.site-footer li a:hover { color: var(--text); }
.foot-legal { border-top: 1px solid var(--line); margin-top: 50px; padding-top: 24px; font-size: .78rem; color: var(--faint); }
.foot-legal p { margin: 6px 0; }
.nf { min-height: 60vh; display: flex; align-items: center; border: 0; }
.nf .hero-cta { margin-top: 34px; }

/* reveal */
/* visible at rest; only elements that start below the fold get .pre (set by JS) and animate in */
.reveal { transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.pre { opacity: 0; transform: translateY(18px); }

/* responsive */
@media (max-width: 1000px) {
  .hero-in { grid-template-columns: 1fr; min-height: 0; }
  .hero-photo { height: 340px; order: -1; }
  .hero-copy { padding: 30px 0 70px; }
  .rooms { grid-template-columns: 1fr; }
  .projects, .guides, .tips { grid-template-columns: 1fr 1fr; }
  .post-grid { grid-template-columns: 1fr; gap: 20px; }
  .side-card { position: static; }
  .principles { grid-template-columns: 1fr; padding: 36px; gap: 20px; }
  .principles .link-more { grid-column: 1; }
  .foot-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .wrap { padding: 0 16px; }
  .nav-toggle { display: block; }
  .nav { position: fixed; inset: 70px 0 auto 0; flex-direction: column; gap: 0; background: rgba(13,12,11,.97); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); padding: 8px 16px 20px; transform: translateY(-8px); opacity: 0; visibility: hidden; transition: all .3s var(--ease); }
  .nav.open { transform: none; opacity: 1; visibility: visible; }
  .nav a { padding: 16px 0; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .nav a::after { display: none; }
  .hero { padding-top: 30px; }
  .hero-photo { height: 240px; margin: 0 -16px; border-left: 0; border-right: 0; }
  .ph-photo { inset: 0; -webkit-mask-image: none; mask-image: none; }
  .ph-photo img { opacity: .3; }
  .rp-img { margin: -26px -22px 22px; }
  .hero-foot { grid-template-columns: 1fr 1fr; }
  .hero-foot div { padding: 18px 0; flex-direction: column; gap: 6px; }
  .section { padding: 76px 0; }
  .block-head.row { flex-direction: column; align-items: flex-start; }
  .plan-wrap { padding: 12px; }
  .room-panel { padding: 26px 22px; }
  .rp-title { font-size: 1.9rem; }
  .cat-row { grid-template-columns: 34px 72px 1fr; gap: 14px; padding: 20px 4px; }
  .cat-room, .cat-go { display: none; }
  .cat-thumb { width: 72px; height: 48px; }
  .cat-num { font-size: 1.5rem; }
  .projects, .guides, .guides.two, .tips { grid-template-columns: 1fr; }
  .feature { grid-template-columns: 1fr; padding: 26px; gap: 22px; }
  .feature-art { aspect-ratio: 16 / 9; }
  .ph-in { grid-template-columns: 1fr; gap: 0; }
  .ph-num { font-size: 4.5rem; }
  .pick { grid-template-columns: 1fr; gap: 12px; padding: 26px 0; }
  .pick-num { font-size: 1.6rem; }
  .pick-cta { justify-self: start; }
  .subnav { top: 70px; }
  .next-cat { padding: 26px; margin: 60px 0 80px; }
  .foot-top { grid-template-columns: 1fr; gap: 30px; }
  .principles { padding: 26px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
