/* =====================================================================
   PVR Estate — editorial magazine theme
   Inspired by Architectural Digest / Christie's International Real Estate
   Mobile-first.
   ===================================================================== */

:root {
  --ink: #15110d;
  --ink-soft: #3a342c;
  --paper: #f7f3ec;
  --surface: #ffffff;
  --cream: #fbf9f4;
  --gold: #b0894e;
  --gold-dark: #957237;
  --line: #e4ddd0;
  --muted: #8a8170;
  --muted-2: #b6ad9c;
  --danger: #b4453c;
  --success: #2f6b4f;

  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --container: 1200px;
  --radius: 4px;
  --shadow: 0 18px 50px -20px rgba(21,17,13,.28);
  --shadow-sm: 0 8px 26px -16px rgba(21,17,13,.35);
  --t: .3s cubic-bezier(.22,.61,.36,1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  font-size: 1.02rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
}

.container { max-width: var(--container); padding-inline: 1.25rem; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; color: var(--ink); line-height: 1.16; letter-spacing: -.01em; }
a { color: var(--ink); text-decoration: none; transition: color var(--t); }
a:hover { color: var(--gold-dark); }
img { max-width: 100%; height: auto; display: block; }

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .72rem;
  font-weight: 600;
  color: var(--gold-dark);
  display: inline-block;
}

.section { padding: clamp(3rem, 7vw, 6rem) 0; }
.section-cream { background: var(--cream); }
.section-ink { background: var(--ink); color: var(--paper); }
.section-ink h1, .section-ink h2, .section-ink h3 { color: #fff; }
.section-ink .eyebrow { color: var(--gold); }

.section-head { max-width: 720px; margin-bottom: 2.5rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.8rem, 4vw, 2.75rem); margin: .5rem 0 .75rem; }
.section-head p { color: var(--muted); font-size: 1.05rem; margin: 0; }

/* ---- buttons ---- */
.btn { font-family: var(--sans); font-weight: 600; border-radius: var(--radius); letter-spacing: .02em; padding: .8rem 1.6rem; transition: all var(--t); border: 1px solid transparent; }
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: var(--gold-dark); color: #fff; transform: translateY(-2px); }
.btn-ink { background: var(--ink); color: #fff; }
.btn-ink:hover { background: #000; color: #fff; }
.btn-outline { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-outline-light { background: transparent; border-color: rgba(255,255,255,.5); color: #fff; }
.btn-outline-light:hover { background: #fff; color: var(--ink); }

.link-arrow { font-weight: 600; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink); display: inline-flex; align-items: center; gap: .5rem; }
.link-arrow i { transition: transform var(--t); }
.link-arrow:hover i { transform: translateX(5px); }

/* =====================================================================
   Header / nav
   ===================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(247,243,236,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .navbar { min-height: 74px; }
.navbar-brand { display: flex; align-items: baseline; gap: .35rem; font-family: var(--serif); }
.brand-mark { font-size: 1.5rem; font-weight: 700; color: var(--ink); letter-spacing: .02em; }
.brand-word { font-family: var(--sans); font-weight: 600; letter-spacing: .32em; font-size: .8rem; color: var(--gold-dark); }
.navbar-toggler { color: var(--ink); font-size: 1.2rem; }
.navbar-toggler:focus { box-shadow: none; }
.nav-link { font-family: var(--sans); font-weight: 500; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft) !important; padding: .5rem .85rem !important; position: relative; }
.nav-link.active, .nav-link:hover { color: var(--ink) !important; }
.nav-link.active::after { content: ''; position: absolute; left: .85rem; right: .85rem; bottom: .15rem; height: 2px; background: var(--gold); }
.nav-search-btn { background: none; border: none; color: var(--ink); font-size: .95rem; width: 38px; height: 38px; border-radius: 50%; transition: background var(--t); }
.nav-search-btn:hover { background: var(--line); }

.search-overlay { position: absolute; inset: 100% 0 auto 0; background: var(--ink); padding: 1.5rem 0; box-shadow: var(--shadow); }
.search-form { display: flex; align-items: center; gap: .75rem; }
.search-form input { flex: 1; background: transparent; border: none; border-bottom: 2px solid rgba(255,255,255,.3); color: #fff; font-family: var(--serif); font-size: clamp(1.2rem, 3vw, 2rem); padding: .5rem 0; outline: none; }
.search-form input::placeholder { color: rgba(255,255,255,.4); }
.btn-search-submit, .btn-search-close { background: none; border: none; color: #fff; font-size: 1.3rem; opacity: .8; }
.btn-search-submit:hover, .btn-search-close:hover { opacity: 1; color: var(--gold); }

/* ---- breadcrumbs ---- */
.breadcrumbs { background: var(--cream); border-bottom: 1px solid var(--line); }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .5rem; margin: 0; padding: .85rem 0; font-size: .8rem; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); }
.breadcrumbs li { display: flex; align-items: center; gap: .5rem; }
.breadcrumbs a { color: var(--muted); }
.breadcrumbs a:hover { color: var(--gold-dark); }
.breadcrumbs i { font-size: .65rem; color: var(--muted-2); }
.breadcrumbs li[aria-current] { color: var(--ink); font-weight: 600; }

/* =====================================================================
   Hero
   ===================================================================== */
.hero {
  position: relative; min-height: 84vh; display: flex; align-items: flex-end;
  color: #fff; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(21,17,13,.25) 0%, rgba(21,17,13,.35) 45%, rgba(21,17,13,.88) 100%); }
.hero-inner { position: relative; z-index: 2; padding-bottom: clamp(3rem, 8vw, 6rem); padding-top: 6rem; max-width: 860px; }
.hero h1 { color: #fff; font-size: clamp(2.4rem, 6.5vw, 4.6rem); font-weight: 600; line-height: 1.05; margin: 1rem 0 1.25rem; }
.hero p { font-size: clamp(1.05rem, 2.2vw, 1.4rem); color: rgba(255,255,255,.85); max-width: 640px; font-weight: 300; margin-bottom: 2rem; }
.hero .eyebrow { color: var(--gold); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; }

/* =====================================================================
   Article cards
   ===================================================================== */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 2.25rem 1.75rem; }

.post-card { background: transparent; }
.post-card .thumb { display: block; position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 3/2; background: var(--line); }
.post-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.22,.61,.36,1); }
.post-card:hover .thumb img { transform: scale(1.06); }
.post-card .cat-tag { position: absolute; top: 1rem; left: 1rem; background: rgba(247,243,236,.95); color: var(--ink); font-size: .68rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; padding: .35rem .7rem; border-radius: 2px; }
.post-card h3 { font-size: 1.3rem; margin: 1rem 0 .5rem; line-height: 1.25; }
.post-card h3 a:hover { color: var(--gold-dark); }
.post-card .excerpt { color: var(--muted); font-size: .95rem; margin-bottom: .85rem; }
.post-meta { font-size: .78rem; color: var(--muted); letter-spacing: .04em; display: flex; gap: .75rem; flex-wrap: wrap; align-items: center; }
.post-meta .dot { color: var(--muted-2); }

/* feature (large) card */
.feature-card { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.feature-card .thumb { display: block; aspect-ratio: 16/10; border-radius: var(--radius); overflow: hidden; }
.feature-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.feature-card:hover .thumb img { transform: scale(1.04); }
.feature-card h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin: .75rem 0; }
.feature-card .excerpt { color: var(--muted); font-size: 1.05rem; }

@media (min-width: 992px) {
  .feature-card { grid-template-columns: 1.3fr 1fr; align-items: center; gap: 3rem; }
}

/* =====================================================================
   Home — topic tiles
   ===================================================================== */
.topic-tiles { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 768px) { .topic-tiles { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .topic-tiles { grid-template-columns: repeat(3, 1fr); } }
.topic-tile { position: relative; border-radius: var(--radius); overflow: hidden; min-height: 260px; display: flex; align-items: flex-end; color: #fff; padding: 1.5rem; }
.topic-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transition: transform .6s; }
.topic-tile::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(21,17,13,0) 30%, rgba(21,17,13,.85) 100%); z-index: 1; }
.topic-tile:hover img { transform: scale(1.06); }
.topic-tile .tile-content { position: relative; z-index: 2; }
.topic-tile h3 { color: #fff; font-size: 1.45rem; margin: 0 0 .35rem; }
.topic-tile p { color: rgba(255,255,255,.8); font-size: .88rem; margin: 0; }

/* pillar feature strip */
.pillar-row { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .pillar-row { grid-template-columns: repeat(3, 1fr); } }
.pillar-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem; transition: all var(--t); }
.pillar-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.pillar-card .ic { width: 52px; height: 52px; border-radius: 50%; background: var(--cream); color: var(--gold-dark); display: grid; place-items: center; font-size: 1.3rem; margin-bottom: 1.25rem; }
.pillar-card h3 { font-size: 1.35rem; margin-bottom: .6rem; }
.pillar-card p { color: var(--muted); font-size: .95rem; margin-bottom: 1.25rem; }

/* developments / neighborhood preview */
.dev-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: all var(--t); height: 100%; }
.dev-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.dev-card .thumb { display: block; aspect-ratio: 4/3; overflow: hidden; }
.dev-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.dev-card:hover .thumb img { transform: scale(1.05); }
.dev-card .body { padding: 1.4rem; }
.dev-card .loc { font-size: .78rem; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; }
.dev-card h3 { font-size: 1.3rem; margin: .35rem 0 .5rem; }
.dev-card .price { color: var(--gold-dark); font-weight: 600; font-family: var(--sans); }

/* =====================================================================
   Single article
   ===================================================================== */
.article-hero { padding: clamp(2.5rem,6vw,4.5rem) 0 2rem; }
.article-hero .container { max-width: 820px; }
.article-hero .cat { color: var(--gold-dark); }
.article-hero h1 { font-size: clamp(2rem, 5vw, 3.4rem); margin: .75rem 0 1.25rem; }
.article-byline { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; color: var(--muted); font-size: .9rem; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 1rem 0; }
.article-byline .author { font-weight: 600; color: var(--ink); }
.article-feature-img { margin: 2rem 0; }
.article-feature-img img { width: 100%; border-radius: var(--radius); aspect-ratio: 16/9; object-fit: cover; }

.article-body { max-width: 720px; margin-inline: auto; font-size: 1.13rem; line-height: 1.85; }
.article-body p { margin: 0 0 1.4rem; }
.article-body h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin: 2.5rem 0 1rem; }
.article-body h3 { font-size: 1.3rem; margin: 2rem 0 .85rem; }
.article-body ul, .article-body ol { margin: 0 0 1.5rem; padding-left: 1.3rem; }
.article-body li { margin-bottom: .6rem; }
.article-body a { color: var(--gold-dark); text-decoration: underline; text-decoration-color: var(--line); text-underline-offset: 3px; }
.article-body a:hover { text-decoration-color: var(--gold-dark); }
.article-body blockquote { border-left: 3px solid var(--gold); margin: 2rem 0; padding: .25rem 0 .25rem 1.5rem; font-family: var(--serif); font-style: italic; font-size: 1.4rem; color: var(--ink-soft); }
.article-body strong { font-weight: 600; }

.tag-list { display: flex; flex-wrap: wrap; gap: .5rem; margin: 2.5rem 0; }
.tag-pill { font-size: .78rem; letter-spacing: .06em; padding: .4rem .9rem; border: 1px solid var(--line); border-radius: 100px; color: var(--ink-soft); transition: all var(--t); }
.tag-pill:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

.author-box { display: flex; gap: 1.25rem; align-items: flex-start; background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.75rem; margin: 2.5rem 0; }
.author-box .avatar { width: 64px; height: 64px; border-radius: 50%; background: var(--ink); color: #fff; display: grid; place-items: center; font-family: var(--serif); font-size: 1.5rem; flex-shrink: 0; }
.author-box .role { color: var(--gold-dark); font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; }
.author-box h4 { font-size: 1.15rem; margin: .15rem 0 .4rem; }
.author-box p { color: var(--muted); font-size: .92rem; margin: 0; }

/* FAQ */
.faq-section { max-width: 720px; margin: 3rem auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; background: none; border: none; padding: 1.25rem 0; font-family: var(--serif); font-size: 1.2rem; color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 1rem; cursor: pointer; }
.faq-q i { color: var(--gold-dark); transition: transform var(--t); flex-shrink: 0; }
.faq-q[aria-expanded="true"] i { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-a p { color: var(--muted); padding: 0 0 1.25rem; margin: 0; }

/* =====================================================================
   Pillar pages
   ===================================================================== */
.pillar-hero { background: var(--ink); color: #fff; padding: clamp(3rem,7vw,5.5rem) 0; }
.pillar-hero .container { max-width: 820px; }
.pillar-hero h1 { color: #fff; font-size: clamp(2.2rem,5vw,3.6rem); margin-bottom: 1rem; }
.pillar-hero p { color: rgba(255,255,255,.82); font-size: 1.15rem; font-weight: 300; }
.subtopic-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .subtopic-grid { grid-template-columns: repeat(2, 1fr); } }
.subtopic { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.75rem; transition: all var(--t); }
.subtopic:hover { box-shadow: var(--shadow-sm); }
.subtopic .ic { color: var(--gold-dark); font-size: 1.4rem; margin-bottom: .85rem; }
.subtopic h3 { font-size: 1.25rem; margin-bottom: .5rem; }
.subtopic p { color: var(--muted); font-size: .94rem; margin: 0; }

/* =====================================================================
   Neighborhood single
   ===================================================================== */
.nb-hero { position: relative; min-height: 60vh; display: flex; align-items: flex-end; color: #fff; }
.nb-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.nb-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(21,17,13,.2), rgba(21,17,13,.8)); z-index: 1; }
.nb-hero .container { position: relative; z-index: 2; padding-bottom: 3rem; padding-top: 5rem; }
.nb-hero h1 { color: #fff; font-size: clamp(2.2rem,6vw,4rem); }
.nb-hero .tagline { color: rgba(255,255,255,.88); font-size: 1.2rem; font-weight: 300; }
.nb-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 992px) { .nb-grid { grid-template-columns: 2fr 1fr; gap: 3.5rem; } }
.nb-block { margin-bottom: 2.25rem; }
.nb-block h2 { font-size: 1.6rem; margin-bottom: .75rem; }
.nb-block p { color: var(--ink-soft); }
.nb-list { columns: 2; gap: 1.5rem; list-style: none; padding: 0; }
.nb-list li { margin-bottom: .5rem; padding-left: 1.25rem; position: relative; }
.nb-list li::before { content: '\f3c5'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: var(--gold); position: absolute; left: 0; font-size: .8rem; top: .35rem; }
.nb-aside { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.75rem; position: sticky; top: 100px; }
.nb-stat { padding: 1rem 0; border-bottom: 1px solid var(--line); }
.nb-stat:last-child { border-bottom: none; }
.nb-stat .label { font-size: .75rem; text-transform: uppercase; letter-spacing: .12em; color: var(--gold-dark); }
.nb-stat .val { font-size: .98rem; }

/* =====================================================================
   Listing / archive header
   ===================================================================== */
.page-header { background: var(--cream); border-bottom: 1px solid var(--line); padding: clamp(2.5rem,6vw,4rem) 0; }
.page-header .container { max-width: 820px; }
.page-header h1 { font-size: clamp(2rem,5vw,3.2rem); margin-bottom: .5rem; }
.page-header p { color: var(--muted); font-size: 1.1rem; margin: 0; }

.filter-bar { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.5rem; }
.filter-chip { font-size: .8rem; letter-spacing: .04em; padding: .45rem 1rem; border: 1px solid var(--line); border-radius: 100px; color: var(--ink-soft); background: var(--surface); transition: all var(--t); }
.filter-chip:hover, .filter-chip.active { background: var(--ink); color: #fff; border-color: var(--ink); }

/* pagination */
.pagination-nav { display: flex; justify-content: center; gap: .4rem; margin-top: 3.5rem; flex-wrap: wrap; }
.pagination-nav a, .pagination-nav span { min-width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: var(--radius); font-weight: 500; font-size: .9rem; color: var(--ink); padding: 0 .5rem; }
.pagination-nav a:hover { border-color: var(--ink); }
.pagination-nav .current { background: var(--ink); color: #fff; border-color: var(--ink); }
.pagination-nav .disabled { opacity: .4; pointer-events: none; }

/* =====================================================================
   Newsletter & footer
   ===================================================================== */
.newsletter { background: var(--ink); color: #fff; padding: clamp(3rem,6vw,4.5rem) 0; }
.newsletter-inner { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center; }
@media (min-width: 900px) { .newsletter-inner { grid-template-columns: 1.2fr 1fr; gap: 3rem; } }
.newsletter h2 { color: #fff; font-size: clamp(1.6rem,3.5vw,2.4rem); margin: .5rem 0 .75rem; }
.newsletter p { color: rgba(255,255,255,.7); margin: 0; font-size: .98rem; }
.newsletter .eyebrow { color: var(--gold); }
.nl-fields { display: flex; gap: .5rem; flex-wrap: wrap; }
.nl-fields input { flex: 1; min-width: 200px; padding: .85rem 1.1rem; border: 1px solid rgba(255,255,255,.25); background: rgba(255,255,255,.06); color: #fff; border-radius: var(--radius); }
.nl-fields input::placeholder { color: rgba(255,255,255,.5); }
.form-status { font-size: .85rem; margin: .75rem 0 0; min-height: 1.2em; }
.form-status.ok { color: #7fd1a8; }
.form-status.err { color: #f0a39c; }

.site-footer { background: #100d09; color: rgba(255,255,255,.7); padding: 4rem 0 2rem; }
.site-footer .brand-mark { color: #fff; }
.footer-brand { display: inline-flex; align-items: baseline; gap: .35rem; margin-bottom: 1rem; }
.footer-about { font-size: .92rem; max-width: 340px; }
.footer-disclaimer { font-size: .8rem; color: var(--muted); max-width: 340px; }
.footer-social { display: flex; gap: .6rem; margin-top: 1.25rem; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); display: grid; place-items: center; color: rgba(255,255,255,.7); }
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.footer-h { font-family: var(--sans); font-size: .78rem; text-transform: uppercase; letter-spacing: .14em; color: #fff; margin-bottom: 1rem; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .55rem; }
.footer-links a { color: rgba(255,255,255,.7); font-size: .92rem; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .75rem; margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.1); font-size: .82rem; color: var(--muted); }
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--gold); }

/* floats */
.whatsapp-float { position: fixed; bottom: 24px; right: 24px; width: 56px; height: 56px; border-radius: 50%; background: #25d366; color: #fff; display: grid; place-items: center; font-size: 1.6rem; box-shadow: var(--shadow-sm); z-index: 900; transition: transform var(--t); }
.whatsapp-float:hover { transform: scale(1.08); color: #fff; }
.to-top { position: fixed; bottom: 24px; left: 24px; width: 46px; height: 46px; border-radius: 50%; background: var(--ink); color: #fff; border: none; display: grid; place-items: center; opacity: 0; pointer-events: none; transition: opacity var(--t); z-index: 900; }
.to-top.show { opacity: 1; pointer-events: auto; }

/* contact */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.contact-info .item { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.contact-info .ic { width: 46px; height: 46px; border-radius: 50%; background: var(--cream); color: var(--gold-dark); display: grid; place-items: center; flex-shrink: 0; }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: .82rem; font-weight: 600; letter-spacing: .04em; margin-bottom: .4rem; }
.field input, .field textarea, .field select { width: 100%; padding: .8rem 1rem; border: 1px solid var(--line); border-radius: var(--radius); font-family: var(--sans); font-size: .98rem; background: var(--surface); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(176,137,78,.12); }

/* misc */
.text-muted-2 { color: var(--muted); }
.divider { height: 1px; background: var(--line); border: none; margin: 0; }
.empty-state { text-align: center; padding: 4rem 1rem; color: var(--muted); }
.empty-state i { font-size: 2.5rem; color: var(--muted-2); margin-bottom: 1rem; }

/* reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (max-width: 991px) {
  .navbar-collapse { background: var(--paper); margin-top: .5rem; padding: 1rem; border-radius: var(--radius); border: 1px solid var(--line); }
  .nav-link.active::after { display: none; }
  .nb-list { columns: 1; }
}
