/* ============================================================
   Honey & Blanckenberg — Redesign 2026
   Palette (unchanged from current brand):
   Teal    #45B8AC   (brand accent — from logo disc)
   Slate   #3B4251   (deep neutral)
   Ink     #333333   (headings text)
   Body    #666666   (body text)
   Mist    #F8F8F8   (light section bg)
   Silver  #DCDADB   (rules / borders — from logo ring)
   White   #FFFFFF
   ============================================================ */

:root {
  --teal: #45B8AC;
  --teal-dark: #379a90;
  --teal-soft: rgba(69, 184, 172, 0.12);
  --slate: #3B4251;
  --slate-deep: #2E3440;
  --ink: #333333;
  --body: #666666;
  --mist: #F8F8F8;
  --silver: #DCDADB;
  --white: #FFFFFF;
  --serif: "Cormorant Garamond", "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Open Sans", Arial, Helvetica, sans-serif;
  --maxw: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--teal-dark); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--slate); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }

/* ---------- Typography ---------- */
h1, h2, h3, .display { font-family: var(--serif); color: var(--ink); font-weight: 500; line-height: 1.15; }
h1 { font-size: clamp(2.6rem, 5.5vw, 4.4rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(2rem, 3.6vw, 3rem); letter-spacing: -0.01em; }
h3 { font-size: 1.45rem; }
h4 { font-family: var(--sans); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--slate); font-weight: 700; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 0.78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.22em; color: var(--teal);
}
.eyebrow::before { content: ""; width: 40px; height: 1px; background: var(--teal); }

.lede { font-size: 1.2rem; line-height: 1.75; color: var(--body); font-weight: 300; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.site-header.scrolled { border-bottom-color: var(--silver); box-shadow: 0 2px 24px rgba(59, 66, 81, 0.07); }

.nav-bar { display: flex; align-items: center; justify-content: space-between; height: 88px; }
.brand { display: flex; align-items: center; gap: 14px; }
.brand img { width: 52px; height: 52px; }
.brand-name { display: flex; flex-direction: column; line-height: 1.2; }
.brand-name .n1 { font-family: var(--serif); font-size: 1.22rem; color: var(--ink); letter-spacing: 0.02em; }
.brand-name .n2 { font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.28em; color: var(--teal-dark); font-weight: 700; }

.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: block; padding: 10px 14px; font-size: 0.86rem; font-weight: 600;
  color: var(--slate); letter-spacing: 0.02em;
}
.nav-links > li > a:hover, .nav-links > li > a.active { color: var(--teal-dark); }
.nav-links > li > a.active { position: relative; }
.nav-links > li > a.active::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 2px; background: var(--teal);
}

.dropdown {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 250px; background: var(--white); border: 1px solid var(--silver);
  border-top: 3px solid var(--teal);
  box-shadow: 0 18px 50px rgba(59, 66, 81, 0.14);
  opacity: 0; visibility: hidden; transition: all .28s var(--ease);
  padding: 10px 0; z-index: 101;
}
.nav-links li:hover .dropdown, .nav-links li:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.dropdown a { display: block; padding: 9px 22px; font-size: 0.85rem; color: var(--body); }
.dropdown a:hover { background: var(--teal-soft); color: var(--slate); }
.dropdown .dd-label { padding: 10px 22px 4px; font-size: 0.66rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--teal-dark); }
.dropdown hr { border: 0; border-top: 1px solid var(--mist); margin: 6px 0; }

.nav-cta {
  margin-left: 14px; padding: 11px 24px !important; background: var(--slate); color: var(--white) !important;
  font-size: 0.8rem !important; letter-spacing: 0.08em; text-transform: uppercase;
  transition: background .3s !important;
}
.nav-cta:hover { background: var(--teal-dark); }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--slate); margin: 6px 0; transition: .3s; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; padding: 15px 34px; font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; border: 1px solid transparent;
  cursor: pointer; transition: all .3s var(--ease);
}
.btn-teal { background: var(--teal); color: var(--white); }
.btn-teal:hover { background: var(--teal-dark); color: var(--white); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-ghost:hover { border-color: var(--teal); color: var(--teal); }
.btn-dark { background: var(--slate); color: var(--white); }
.btn-dark:hover { background: var(--teal-dark); color: var(--white); }
.btn-outline { background: transparent; color: var(--slate); border-color: var(--silver); }
.btn-outline:hover { border-color: var(--teal); color: var(--teal-dark); }

.text-link {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--teal-dark); display: inline-flex; align-items: center; gap: 10px;
}
.text-link::after { content: "→"; transition: transform .3s var(--ease); }
.text-link:hover::after { transform: translateX(6px); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 92vh; display: flex; align-items: center;
  background:
    radial-gradient(1100px 500px at 85% -10%, rgba(69,184,172,0.16), transparent 60%),
    linear-gradient(160deg, var(--slate-deep) 0%, var(--slate) 55%, #465064 100%);
  color: var(--white); overflow: hidden; padding: 160px 0 110px;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 90px 90px; pointer-events: none;
}
.hero-monogram {
  position: absolute; right: -140px; top: 50%; transform: translateY(-50%);
  font-family: var(--serif); font-size: 44rem; line-height: 1; font-style: italic;
  color: rgba(69,184,172,0.07); user-select: none; pointer-events: none;
}
.hero .wrap { position: relative; z-index: 2; }
.hero h1 { color: var(--white); max-width: 15ch; margin: 26px 0; }
.hero h1 em { font-style: italic; color: var(--teal); }
.hero .lede { color: rgba(255,255,255,0.82); max-width: 54ch; margin-bottom: 44px; }
.hero-ctas { display: flex; gap: 18px; flex-wrap: wrap; }
.hero-est {
  position: absolute; bottom: 42px; left: 32px; right: 32px; z-index: 2;
  display: flex; justify-content: space-between; align-items: flex-end; gap: 20px;
  font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(255,255,255,0.45);
}
.scroll-hint { display: inline-flex; align-items: center; gap: 10px; }
.scroll-hint::after { content: ""; width: 1px; height: 44px; background: linear-gradient(var(--teal), transparent); }

/* Page hero (interior) */
.page-hero {
  background:
    radial-gradient(900px 380px at 90% -20%, rgba(69,184,172,0.15), transparent 60%),
    linear-gradient(160deg, var(--slate-deep), var(--slate) 70%);
  color: var(--white); padding: 190px 0 90px; position: relative; overflow: hidden;
}
.page-hero h1 { color: var(--white); margin: 20px 0 14px; }
.page-hero .lede { color: rgba(255,255,255,0.8); max-width: 62ch; }
.crumbs { font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.crumbs a { color: rgba(255,255,255,0.7); }
.crumbs a:hover { color: var(--teal); }

/* ---------- Sections ---------- */
section { padding: 110px 0; }
section.tight { padding: 80px 0; }
.bg-mist { background: var(--mist); }
.bg-slate { background: linear-gradient(160deg, var(--slate-deep), var(--slate)); color: rgba(255,255,255,0.8); }
.bg-slate h2, .bg-slate h3 { color: var(--white); }

.section-head { max-width: 640px; margin-bottom: 64px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center .eyebrow::before { display: none; }
.section-head h2 { margin: 20px 0 18px; }
.split-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; margin-bottom: 64px; flex-wrap: wrap; }
.split-head .section-head { margin-bottom: 0; }

/* ---------- Stats band ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--silver); }
.stat { padding: 44px 30px; border-right: 1px solid var(--silver); }
.stat:last-child { border-right: 0; }
.stat .num { font-family: var(--serif); font-size: 3.2rem; color: var(--slate); line-height: 1; }
.stat .num span { color: var(--teal); }
.stat .lbl { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.18em; margin-top: 12px; color: var(--body); }

/* ---------- Cards / grids ---------- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }

.practice-card {
  position: relative; background: var(--white); border: 1px solid var(--silver);
  padding: 44px 36px 38px; transition: all .35s var(--ease); overflow: hidden; display: block;
}
.practice-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--teal); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease);
}
.practice-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(59,66,81,0.12); border-color: transparent; }
.practice-card:hover::before { transform: scaleX(1); }
.practice-card .p-num { font-family: var(--serif); font-style: italic; font-size: 1.1rem; color: var(--teal); }
.practice-card h3 { margin: 14px 0 12px; transition: color .3s; }
.practice-card:hover h3 { color: var(--teal-dark); }
.practice-card p { font-size: 0.95rem; margin-bottom: 22px; color: var(--body); }
.practice-card ul { list-style: none; margin: 0 0 24px; }
.practice-card ul li { font-size: 0.88rem; padding: 7px 0 7px 22px; position: relative; border-bottom: 1px solid var(--mist); }
.practice-card ul li::before { content: ""; position: absolute; left: 0; top: 16px; width: 10px; height: 1px; background: var(--teal); }

/* value cards */
.value-card { border-left: 1px solid var(--silver); padding: 8px 30px 8px 30px; }
.value-card h3 { font-size: 1.35rem; margin-bottom: 10px; }
.value-card p { font-size: 0.93rem; }
.value-card .v-num { font-family: var(--serif); font-style: italic; color: var(--teal); font-size: 1rem; display: block; margin-bottom: 14px; }
.bg-slate .value-card { border-left-color: rgba(255,255,255,0.15); }
.bg-slate .value-card p { color: rgba(255,255,255,0.72); }

/* ---------- People ---------- */
.person-card { background: var(--white); border: 1px solid var(--silver); transition: all .35s var(--ease); }
.person-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(59,66,81,0.12); }
.person-photo {
  aspect-ratio: 4 / 4.6; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(160deg, var(--slate-deep), var(--slate));
  position: relative; overflow: hidden;
}
.person-photo::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(400px 200px at 80% 0%, rgba(69,184,172,0.25), transparent 60%);
}
.person-photo .initials {
  font-family: var(--serif); font-style: italic; font-size: 4.6rem; color: var(--teal);
  position: relative; z-index: 1;
}
.person-meta { padding: 26px 26px 30px; }
.person-meta .role { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--teal-dark); font-weight: 700; }
.person-meta h3 { font-size: 1.5rem; margin: 8px 0 10px; }
.person-meta p { font-size: 0.9rem; }
.person-meta .quals { font-size: 0.78rem; color: #999; margin-top: 12px; font-style: italic; }

/* ---------- Insights ---------- */
.insight-card { border: 1px solid var(--silver); background: var(--white); padding: 36px 32px; display: flex; flex-direction: column; gap: 16px; transition: all .35s var(--ease); }
.insight-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(59,66,81,0.12); }
.chip { display: inline-block; font-size: 0.66rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--teal-dark); background: var(--teal-soft); padding: 6px 12px; }
.insight-card h3 { font-size: 1.4rem; line-height: 1.3; }
.insight-card h3 a { color: var(--ink); }
.insight-card h3 a:hover { color: var(--teal-dark); }
.insight-card .date { font-size: 0.78rem; color: #999; letter-spacing: 0.06em; margin-top: auto; }

/* ---------- Timeline ---------- */
.timeline { position: relative; margin-top: 30px; }
.timeline::before { content: ""; position: absolute; left: 8px; top: 6px; bottom: 6px; width: 1px; background: var(--silver); }
.tl-item { position: relative; padding: 0 0 44px 48px; }
.tl-item::before { content: ""; position: absolute; left: 3px; top: 8px; width: 11px; height: 11px; border-radius: 50%; background: var(--white); border: 2px solid var(--teal); }
.tl-item .tl-year { font-family: var(--serif); font-size: 1.6rem; color: var(--slate); }
.tl-item p { font-size: 0.95rem; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; text-align: center; padding: 120px 0; }
.cta-band h2 { max-width: 22ch; margin: 20px auto 22px; }
.cta-band .lede { max-width: 52ch; margin: 0 auto 40px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 70px; align-items: start; }
.info-block { border-top: 1px solid var(--silver); padding: 26px 0; }
.info-block h4 { margin-bottom: 10px; }
.info-block p { font-size: 0.95rem; }
form .field { margin-bottom: 22px; }
form label { display: block; font-size: 0.74rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.16em; color: var(--slate); margin-bottom: 8px; }
form input, form select, form textarea {
  width: 100%; padding: 14px 16px; border: 1px solid var(--silver); background: var(--white);
  font-family: var(--sans); font-size: 0.95rem; color: var(--ink); transition: border-color .3s;
}
form input:focus, form select:focus, form textarea:focus { outline: none; border-color: var(--teal); }
form textarea { min-height: 150px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--slate-deep); color: rgba(255,255,255,0.65); padding: 90px 0 0; font-size: 0.9rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 50px; padding-bottom: 70px; }
.site-footer h4 { color: var(--white); margin-bottom: 22px; }
.site-footer ul { list-style: none; }
.site-footer ul li { padding: 5px 0; }
.site-footer a { color: rgba(255,255,255,0.65); }
.site-footer a:hover { color: var(--teal); }
.footer-brand { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.footer-brand img { width: 46px; height: 46px; }
.footer-brand .n1 { font-family: var(--serif); font-size: 1.15rem; color: var(--white); }
.footer-brand .n2 { font-size: 0.58rem; text-transform: uppercase; letter-spacing: 0.26em; color: var(--teal); font-weight: 700; display: block; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 26px 0; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: 0.78rem; color: rgba(255,255,255,0.4); }
.footer-bottom a { color: rgba(255,255,255,0.55); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: .08s; } .d2 { transition-delay: .16s; } .d3 { transition-delay: .24s; } .d4 { transition-delay: .32s; }

/* ---------- Detail page layout ---------- */
.detail-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 70px; align-items: start; }
.side-card { background: var(--mist); padding: 36px 32px; border-top: 3px solid var(--teal); position: sticky; top: 120px; }
.side-card h4 { margin-bottom: 16px; }
.side-card ul { list-style: none; }
.side-card ul li { padding: 9px 0; border-bottom: 1px solid var(--silver); font-size: 0.9rem; }
.side-card ul li:last-child { border-bottom: 0; }
.article-body h3 { margin: 40px 0 14px; }
.article-body p { margin-bottom: 18px; }
.article-body ul { margin: 0 0 22px 20px; }
.article-body ul li { padding: 4px 0; }

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--silver); }
  .contact-grid, .detail-grid { grid-template-columns: 1fr; }
  .side-card { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-monogram { display: none; }
}
@media (max-width: 760px) {
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0; height: calc(100vh - 88px);
    background: var(--white); border-top: 1px solid var(--silver);
    flex-direction: column; align-items: stretch; gap: 0; padding: 20px 28px;
    transform: translateX(100%); transition: transform .35s var(--ease); overflow-y: auto;
  }
  .brand-name .n2 { letter-spacing: 0.14em; white-space: nowrap; }
  .brand-name .n1 { font-size: 1.05rem; white-space: nowrap; }
  .nav-links.open { transform: none; }
  .nav-links > li > a { padding: 16px 4px; font-size: 1.05rem; border-bottom: 1px solid var(--mist); }
  .nav-links > li > a.active::after { display: none; }
  .dropdown { position: static; transform: none; opacity: 1; visibility: visible; box-shadow: none; border: 0; border-left: 2px solid var(--teal); margin: 4px 0 10px; }
  .nav-cta { margin: 20px 0 0; text-align: center; }
  .nav-toggle { display: block; }
  .grid-2, .grid-3, .grid-4, .form-row { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--silver); }
  .stat:last-child { border-bottom: 0; }
  section { padding: 72px 0; }
  .hero { min-height: 86vh; }
  .hero-est { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
}
