*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
 
:root {
  --gold: #D4AF6A;
  --gold-deep: #A07830;
  --black: #0F0F0F;
  --graphite: #3A3A3A;
  --silver: #909090;
  --ivory: #F7F4EF;
  --linen: #EAE6DE;
  --white: #FFFFFF;
}
nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;

  width: 100%;
  min-height: 4.5rem;

  padding-inline: clamp(1.2rem, 5vw, 5rem);
  padding-block: 0.9rem;

  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border-bottom: 0.0625rem solid var(--linen);

  box-shadow:
    0 0.0625rem 0 rgba(0, 0, 0, 0.03),
    0 0.625rem 2.5rem rgba(0, 0, 0, 0.04);

  will-change: transform;
  transform: translateZ(0);
}

.nav-logo {
  position: relative;
  z-index: 210;

  display: flex;
  align-items: center;

  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo img {
  width: clamp(8rem, 10vw, 10.5rem);
  height: auto;
  display: block;
  object-fit: contain;
}
 
.logo-mark {
  width: 34px; height: 34px;
  border: 1.5px solid var(--black);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
 
.logo-mark span {
  font-family: 'Playfair Display', serif;
  font-size: 15px; font-weight: 500; color: var(--black);
}
 
.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 500;
  color: var(--black); letter-spacing: 0.12em;
}
 
.nav-links {
  display: flex; align-items: center; gap: 34px; list-style: none;
}
 
.nav-links a {
  font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--silver); text-decoration: none; font-weight: 400;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--black); }
 
.nav-ctas { display: flex; align-items: center; gap: 10px; }
 
.btn-outline {
  font-family: 'DM Sans', sans-serif; font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: transparent; color: var(--black); border: 1px solid var(--black);
  padding: 9px 20px; border-radius: 2px; cursor: pointer; font-weight: 500;
  transition: background 0.2s, color 0.2s; text-decoration: none; white-space: nowrap;
}
.btn-outline:hover { background: var(--black); color: var(--white); }
 
.btn-gold {
  font-family: 'DM Sans', sans-serif; font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--gold); color: var(--black); border: none;
  padding: 9px 22px; border-radius: 2px; cursor: pointer; font-weight: 600;
  transition: background 0.2s; text-decoration: none;
  white-space: nowrap; display: inline-block;
}
.btn-gold:hover { background: var(--gold-deep); color: var(--white); }
 
/* ── HAMBURGER ── */
.hamburger {
  display: none; flex-direction: column; justify-content: center;
  align-items: center; width: 40px; height: 40px;
  background: none; border: none; cursor: pointer; z-index: 210; gap: 5px; padding: 0;
}
 
.hamburger span {
  display: block; width: 22px; height: 1.5px; background: var(--black);
  transition: transform 0.3s ease, opacity 0.2s ease, width 0.2s ease;
  transform-origin: center;
}
 
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
 
/* ── MOBILE MENU ──
   FIX: Use opacity+visibility toggle instead of display toggle.
   Avoids layout recalculation when menu opens/closes. */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 190; background: var(--white);
  flex-direction: column;
  padding: 96px 8vw 60px;
  opacity: 0;
  visibility: hidden;
  /* GPU-composited transition — no layout/paint cost */
  transition: opacity 0.3s ease, visibility 0.3s ease;
  display: flex;
}
 
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}
 
.mobile-menu-links {
  list-style: none; flex: 1; display: flex; flex-direction: column;
}
 
.mobile-menu-links li { border-bottom: 0.5px solid var(--linen); }
 
.mobile-menu-links a {
  display: flex; align-items: center; justify-content: space-between;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 5vw, 2.4rem);
  font-weight: 400; color: var(--black);
  text-decoration: none; padding: 1.1rem 0;
  transition: color 0.2s;
}
.mobile-menu-links a:hover { color: var(--gold); }
 
.mobile-menu-links a .arrow {
  font-size: 1rem; color: var(--linen);
  transition: color 0.2s, transform 0.2s;
  font-family: 'DM Sans', sans-serif;
}
.mobile-menu-links a:hover .arrow { color: var(--gold); transform: translateX(4px); }
 
.mobile-menu-btns {
  display: flex; gap: 10px; margin-top: 2.5rem; flex-wrap: wrap;
}
 
.mobile-menu-btns .btn-outline,
.mobile-menu-btns .btn-gold {
  flex: 1; text-align: center; padding: 14px 20px; font-size: 12px;
}
 
.mobile-meta {
  margin-top: 2rem; font-size: 10.5px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--linen);
}

.blog-hub{
  padding:8rem 0;
}

.blog-hub-header{
  max-width:850px;
  margin:0 auto 4rem;
  text-align:center;
}

.blog-hub-header h1{
  font-family:'Playfair Display',serif;
  font-size:clamp(3rem,5vw,5rem);
  line-height:1.05;
  color:var(--black);
}

.blog-hub-header h1 em{
  display:block;
  color:var(--gold);
  font-style:italic;
}

.blog-hub-header p{
  max-width:650px;
  margin:1.5rem auto 0;
  color:var(--silver);
  line-height:1.9;
}

.section-eyebrow{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:.8rem;
  margin-bottom:1rem;
  text-transform:uppercase;
  letter-spacing:.15em;
  color:var(--gold-deep);
  font-size:.75rem;
}

.section-eyebrow span{
  width:30px;
  height:1px;
  background:var(--gold);
}
.blog-categories{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:.8rem;
  margin-bottom:4rem;
}

.blog-categories a{
  text-decoration:none;
  color:var(--graphite);

  padding:.8rem 1.4rem;

  border:1px solid var(--linen);
  border-radius:999px;

  transition:.3s;
}

.blog-categories a:hover,
.blog-categories a.active{
  background:var(--gold);
  border-color:var(--gold);
  color:var(--black);
}
.blog-layout{
  width:min(1400px,92%);
  margin:auto;

  display:grid;
  grid-template-columns:minmax(0,1fr) 360px;
  gap:3rem;
}
.blog-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:2rem;
}
.blog-card{
  background:var(--white);

  border:1px solid var(--linen);

  border-radius:24px;

  overflow:hidden;

  transition:.35s;
}

.blog-card:hover{
  transform:translateY(-6px);
  border-color:rgba(212,175,106,.45);
}

.blog-card img{
  width:100%;
  aspect-ratio:16/10;
  object-fit:cover;
}

.blog-card-content{
  padding:1.5rem;
}

.blog-card-category{
  color:var(--gold-deep);
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:.75rem;
}

.blog-card-title{
  font-family:'Playfair Display',serif;
  font-size:1.6rem;
  line-height:1.2;
  margin:1rem 0;
}

.blog-card-excerpt{
  color:var(--silver);
  line-height:1.8;
}
.blog-form-wrap{
  position:relative;
}

.blog-form-card{
  position:sticky;
  top:110px;

  background:var(--ivory);

  border:1px solid var(--linen);

  border-radius:24px;

  padding:2rem;
}

.blog-form-card h3{
  font-family:'Playfair Display',serif;
  font-size:2rem;
  line-height:1.2;
  margin-bottom:1rem;
}

.blog-form-card p{
  color:var(--silver);
  margin-bottom:1.5rem;
}

.blog-form-card form{
  display:flex;
  flex-direction:column;
  gap:.9rem;
}

.blog-form-card input,
.blog-form-card textarea{
  width:100%;
  padding:1rem;

  border:1px solid var(--linen);
  background:#fff;
}

.blog-form-card textarea{
  min-height:140px;
  resize:none;
}

.blog-form-card button{
  background:var(--black);
  color:#fff;

  padding:1rem;
  border:none;
  cursor:pointer;
}
#pagination{
  display:flex;
  justify-content:center;
  gap:.5rem;
  margin-top:4rem;
}

.page-btn{
  width:42px;
  height:42px;

  border:1px solid var(--linen);
  background:#fff;

  cursor:pointer;
}

.page-btn.active{
  background:var(--gold);
  border-color:var(--gold);
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-ctas  { display: none; }
  .hamburger { display: flex; }
}
 
@media (max-width: 600px) {
  nav { padding: 0 6vw; height: 64px; }
 
  .hero { padding: 110px 6vw 100px; }
 
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat-cell:nth-child(2) { border-right: none; }
  .stat-cell:nth-child(3) { border-top: 0.5px solid var(--linen); }
  .stat-cell:nth-child(4) { border-top: 0.5px solid var(--linen); border-right: none; }
 
  .hero-bg-text { display: none; }
  .btn-black, .btn-naked { padding: 14px 26px; width: 100%; text-align: center; }
  .hero-ctas {
    flex-direction: column; align-items: stretch;
    max-width: 320px; margin-left: auto; margin-right: auto;
  }
}