/* ═══════════════════════════════════════════
   HALONORTH COLLECTIVE — SHARED STYLESHEET
   ═══════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  --navy:      #0F172A;
  --navy-mid:  #1E293B;
  --navy-light:#334155;
  --gold:      #C8A96A;
  --gold-light:#DFC28C;
  --grey-mid:  #9CA3AF;
  --white:     #FAFAF9;
  --body:      #CBD5E1;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--navy); color: var(--white); overflow-x: hidden; line-height: 1.7; }

/* ── TYPOGRAPHY ── */
h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 4vw, 3.6rem); font-weight: 700; line-height: 1.15; margin-bottom: 1.4rem; }
h1 em { font-style: italic; color: var(--gold); }
h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.7rem, 2.8vw, 2.6rem); font-weight: 700; line-height: 1.22; color: var(--white); }
h2 em { font-style: italic; color: var(--gold); }
h3 { font-family: 'Playfair Display', serif; }
p { line-height: 1.8; }

.section-tag { display: block; font-size: .68rem; letter-spacing: .32em; text-transform: uppercase; color: var(--gold); margin-bottom: .9rem; }
.section-intro { margin-top: 1rem; color: var(--body); font-size: .93rem; line-height: 1.85; max-width: 580px; }

/* ── BUTTONS ── */
.btn { display: inline-block; text-decoration: none; border-radius: 2px; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 500; transition: all .25s; cursor: pointer; border: none; font-family: 'DM Sans', sans-serif; white-space: nowrap; }
.btn-primary { padding: .85rem 2.2rem; background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline { padding: .85rem 2.2rem; border: 1px solid rgba(200,169,106,.4); color: var(--gold); background: transparent; }
.btn-outline:hover { border-color: var(--gold); background: rgba(200,169,106,.07); }
.btn-sm { padding: .6rem 1.4rem; font-size: .72rem; }
.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

/* ── LAYOUT ── */
section { padding: 7rem 5vw; }
.container { max-width: 1200px; margin: 0 auto; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.grid-2.center { align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 1.8rem; }

/* ══════════════════════════════
   NAV + DROPDOWN
══════════════════════════════ */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 200; display: flex; justify-content: space-between; align-items: center; padding: 1.4rem 5vw; background: rgba(15,23,42,.92); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(200,169,106,.12); transition: padding .3s; }
nav.scrolled { padding: 1rem 5vw; }
.logo { display: flex; flex-direction: column; line-height: 1; text-decoration: none; }
.logo-top { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; letter-spacing: .18em; color: var(--white); text-transform: uppercase; }
.logo-sub { font-size: .6rem; letter-spacing: .35em; color: var(--gold); text-transform: uppercase; font-weight: 300; }

.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links > li { position: relative; }
.nav-links a { font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; color: var(--grey-mid); text-decoration: none; transition: color .2s; display: flex; align-items: center; gap: .3rem; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta { padding: .5rem 1.3rem !important; border: 1px solid var(--gold); border-radius: 2px; color: var(--gold) !important; }
.nav-cta:hover { background: var(--gold) !important; color: var(--navy) !important; }

/* Dropdown */
.has-dropdown > a::after { content: '▾'; font-size: .55rem; margin-left: .15rem; transition: transform .25s; }
.has-dropdown:hover > a::after { transform: rotate(180deg); }
.dropdown { position: absolute; top: calc(100% + 1.2rem); left: -1.2rem; background: var(--navy-mid); border: 1px solid rgba(200,169,106,.18); border-radius: 4px; min-width: 230px; opacity: 0; pointer-events: none; transform: translateY(8px); transition: opacity .25s, transform .25s; z-index: 300; }
.dropdown::before { content: ''; position: absolute; top: -1px; left: 1.5rem; width: 2.5rem; height: 2px; background: var(--gold); }
.has-dropdown:hover .dropdown { opacity: 1; pointer-events: all; transform: translateY(0); }
.dropdown a { display: flex !important; align-items: flex-start; gap: .75rem; padding: .85rem 1.2rem; color: var(--body) !important; font-size: .74rem !important; letter-spacing: .08em !important; border-bottom: 1px solid rgba(255,255,255,.04); transition: background .2s, color .2s !important; }
.dropdown a:last-child { border-bottom: none; }
.dropdown a:hover { background: rgba(200,169,106,.07); color: var(--white) !important; }
.dropdown a::after { display: none !important; }
.drop-icon { font-size: .9rem; flex-shrink: 0; margin-top: .05rem; }
.drop-text strong { display: block; color: var(--white); font-weight: 500; font-size: .75rem; margin-bottom: .1rem; }
.drop-text span { font-size: .7rem; color: var(--grey-mid); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 201; position: relative; }
.hamburger span { display: block; width: 24px; height: 1.5px; background: var(--white); transition: .3s; }

/* ── PAGE HERO ── */
.page-hero { padding: 10rem 5vw 5rem; background: var(--navy); position: relative; overflow: hidden; border-bottom: 1px solid rgba(200,169,106,.08); }
.page-hero::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(200,169,106,.05), transparent 70%); }
.page-hero-inner { position: relative; z-index: 1; max-width: 700px; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: .8rem; }
.page-hero p { color: var(--body); font-size: .97rem; max-width: 540px; line-height: 1.85; }

/* Breadcrumb */
.breadcrumb { display: flex; align-items: center; gap: .5rem; margin-bottom: 1.5rem; }
.breadcrumb a { font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; color: var(--grey-mid); text-decoration: none; transition: color .2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { font-size: .65rem; color: var(--navy-light); }
.breadcrumb .current { font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); }

/* ── ACCENT FRAMES ── */
.accent-frame { background: var(--navy); border: 1px solid rgba(200,169,106,.15); border-radius: 4px; padding: 2.5rem; position: relative; }
.accent-frame::before { content: ''; position: absolute; top: -1px; left: 3rem; width: 4rem; height: 2px; background: var(--gold); }
.accent-quote { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-style: italic; color: var(--white); line-height: 1.65; margin-bottom: 1.4rem; }
.accent-body { font-size: .83rem; color: var(--body); line-height: 1.85; }
.accent-body strong { color: var(--gold); font-weight: 500; }

/* ── DIVIDERS ── */
.gold-divider { height: 1px; background: rgba(200,169,106,.14); margin: 1.5rem 0; }
.section-divider { height: 1px; background: rgba(200,169,106,.08); margin: 0; }

/* ── STRIP ── */
.strip { padding: 2.8rem 5vw; background: var(--navy-mid); border-top: 1px solid rgba(200,169,106,.1); border-bottom: 1px solid rgba(200,169,106,.1); }
.strip-inner { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px,1fr)); gap: 2rem; text-align: center; }
.cred-label { font-size: .67rem; letter-spacing: .25em; text-transform: uppercase; color: var(--grey-mid); margin-bottom: .3rem; }
.cred-value { font-family: 'Playfair Display', serif; font-size: 1.7rem; color: var(--gold); font-weight: 600; }
.cred-desc { font-size: .78rem; color: var(--body); margin-top: .2rem; }

/* ══════════════════════════════
   SERVICE DETAIL PAGE COMPONENTS
══════════════════════════════ */
.svc-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5px; background: rgba(200,169,106,.1); border: 1px solid rgba(200,169,106,.1); margin-top: 3.5rem; }
.svc-detail-block { background: var(--navy-mid); padding: 2.4rem 2.2rem; }
.svc-detail-block h3 { font-size: 1rem; font-weight: 600; margin-bottom: 1.2rem; color: var(--white); letter-spacing: .02em; }
.svc-detail-block ul { list-style: none; }
.svc-detail-block ul li { font-size: .84rem; color: var(--body); padding: .45rem 0; border-top: 1px solid rgba(255,255,255,.04); display: flex; align-items: flex-start; gap: .7rem; line-height: 1.6; }
.svc-detail-block ul li::before { content: '—'; color: var(--gold); font-size: .7rem; flex-shrink: 0; margin-top: .25rem; }

.outcome-box { background: var(--navy); border: 1px solid rgba(200,169,106,.2); border-left: 3px solid var(--gold); border-radius: 0 4px 4px 0; padding: 2rem 2.2rem; margin-top: 3rem; }
.outcome-box .section-tag { margin-bottom: .5rem; }
.outcome-box p { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-style: italic; color: var(--white); line-height: 1.7; }

/* Other services sidebar */
.other-services { background: var(--navy-mid); border: 1px solid rgba(200,169,106,.12); border-radius: 4px; padding: 2rem; }
.other-services h4 { font-family: 'DM Sans', sans-serif; font-size: .68rem; letter-spacing: .28em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
.other-svc-link { display: flex; align-items: center; gap: .8rem; padding: .85rem 0; border-bottom: 1px solid rgba(200,169,106,.08); text-decoration: none; transition: padding-left .2s; }
.other-svc-link:last-child { border-bottom: none; }
.other-svc-link:hover { padding-left: .4rem; }
.other-svc-link .osvc-icon { font-size: 1rem; flex-shrink: 0; }
.other-svc-link .osvc-text strong { display: block; font-size: .82rem; color: var(--white); font-weight: 500; font-family: 'DM Sans', sans-serif; margin-bottom: .1rem; }
.other-svc-link .osvc-text span { font-size: .74rem; color: var(--grey-mid); }

/* ══════════════════════════════
   SERVICES HUB PAGE
══════════════════════════════ */
.svc-hub-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 1.5px; background: rgba(200,169,106,.1); border: 1px solid rgba(200,169,106,.1); }
.svc-hub-card { background: var(--navy); padding: 2.8rem 2.2rem; position: relative; overflow: hidden; transition: background .3s; text-decoration: none; color: inherit; display: block; }
.svc-hub-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .4s; }
.svc-hub-card:hover { background: rgba(30,41,59,.9); }
.svc-hub-card:hover::after { transform: scaleX(1); }
.svc-hub-icon { font-size: 1.6rem; margin-bottom: 1.4rem; display: block; }
.svc-hub-card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: .7rem; color: var(--white); }
.svc-hub-card p { font-size: .83rem; color: var(--body); line-height: 1.75; margin-bottom: 1.3rem; }
.svc-hub-card .svc-arrow { font-size: .75rem; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); }

/* Best fit for */
.best-fit-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 1.5px; background: rgba(200,169,106,.08); border: 1px solid rgba(200,169,106,.08); margin-top: 3rem; }
.best-fit-card { background: var(--navy-mid); padding: 2rem 1.8rem; }
.best-fit-card .bf-icon { font-size: 1.3rem; margin-bottom: 1rem; display: block; }
.best-fit-card h3 { font-family: 'DM Sans', sans-serif; font-size: .9rem; font-weight: 500; color: var(--white); margin-bottom: .5rem; letter-spacing: .02em; }
.best-fit-card p { font-size: .8rem; color: var(--grey-mid); line-height: 1.7; }

/* ══════════════════════════════
   WHO WE SERVE — CARDS
══════════════════════════════ */
.serve-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 1.5rem; margin-top: 3.5rem; }
.serve-card { background: var(--navy-mid); border: 1px solid rgba(200,169,106,.1); border-radius: 4px; padding: 2.2rem; position: relative; transition: border-color .3s, transform .3s; }
.serve-card:hover { border-color: rgba(200,169,106,.35); transform: translateY(-3px); }
.serve-card::before { content: ''; position: absolute; top: -1px; left: 2rem; width: 2.5rem; height: 2px; background: var(--gold); }
.serve-icon { font-size: 1.4rem; margin-bottom: 1rem; display: block; }
.serve-card h3 { font-family: 'DM Sans', sans-serif; font-size: .92rem; font-weight: 500; color: var(--white); margin-bottom: .6rem; letter-spacing: .02em; }
.serve-card p { font-size: .82rem; color: var(--body); line-height: 1.75; }

/* Ideal client boxes */
.fit-boxes { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 3rem; }
.fit-box { background: var(--navy-mid); border: 1px solid rgba(200,169,106,.12); border-radius: 4px; padding: 2rem 2.2rem; }
.fit-box.not-fit { border-color: rgba(148,163,184,.12); }
.fit-box h3 { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--white); margin-bottom: 1rem; }
.fit-box.not-fit h3 { color: var(--grey-mid); }
.fit-list { list-style: none; }
.fit-list li { font-size: .82rem; color: var(--body); padding: .4rem 0; border-top: 1px solid rgba(255,255,255,.04); display: flex; align-items: flex-start; gap: .7rem; line-height: 1.6; }
.fit-list li.yes::before { content: '✓'; color: var(--gold); flex-shrink: 0; font-size: .78rem; }
.fit-list li.no::before { content: '✕'; color: var(--grey-mid); flex-shrink: 0; font-size: .78rem; }

/* ── CTA BANNER (page bottom) ── */
.cta-section { background: var(--navy-mid); text-align: center; padding: 7rem 5vw; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 60% at 50% 100%, rgba(200,169,106,.07), transparent 70%); }
.cta-section .section-tag,.cta-section h2,.cta-section p,.cta-section .btn-group { position: relative; z-index: 1; }
.cta-section h2 { max-width: 620px; margin: 1rem auto 1.5rem; }
.cta-section > p { color: var(--body); max-width: 440px; margin: 0 auto 2.5rem; font-size: .93rem; }
.cta-section .btn-group { justify-content: center; }

/* ── FOOTER ── */
footer { background: #090F1C; padding: 4.5rem 5vw 2rem; border-top: 1px solid rgba(200,169,106,.1); }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.05); }
.footer-brand > p { margin-top: .9rem; font-size: .79rem; color: var(--grey-mid); line-height: 1.75; max-width: 250px; }
.footer-tagline { margin-top: .6rem; font-size: .72rem; color: rgba(156,163,175,.5); font-style: italic; }
.footer-col h4 { font-size: .67rem; letter-spacing: .28em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.1rem; }
.footer-col a, .footer-col p { display: block; font-size: .79rem; color: var(--grey-mid); text-decoration: none; margin-bottom: .72rem; transition: color .2s; line-height: 1.4; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 2rem; flex-wrap: wrap; gap: 1rem; }
.footer-bottom > p { font-size: .72rem; color: var(--grey-mid); }
.footer-legal { display: flex; gap: 1.8rem; }
.footer-legal a { font-size: .7rem; color: var(--grey-mid); text-decoration: none; transition: color .2s; }
.footer-legal a:hover { color: var(--gold); }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.d1{transition-delay:.1s}.d2{transition-delay:.2s}.d3{transition-delay:.3s}.d4{transition-delay:.4s}

/* ── MISC ── */
.tag-group { display: flex; flex-wrap: wrap; gap: .7rem; }
.itag { padding: .42rem 1rem; border: 1px solid rgba(200,169,106,.22); border-radius: 2px; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--body); transition: border-color .25s,color .25s; }
.itag:hover { border-color: var(--gold); color: var(--gold); }
.pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); animation: pulse 2s infinite; flex-shrink: 0; display: inline-block; }
@keyframes pulse{0%,100%{opacity:1;transform:scale(1)}50%{opacity:.35;transform:scale(.75)}}

/* ── RESPONSIVE ── */
@media(max-width:960px){
  .nav-links{display:none;flex-direction:column;position:fixed;inset:0;background:var(--navy);justify-content:center;align-items:center;gap:2.2rem;z-index:199;overflow-y:auto;padding:2rem}
  .nav-links.open{display:flex}
  .nav-links a{font-size:1.1rem}
  .has-dropdown>a::after{display:none}
  .dropdown{position:static;opacity:1;pointer-events:all;transform:none;border:none;border-top:1px solid rgba(200,169,106,.12);min-width:auto;width:100%;margin-top:.5rem;background:transparent}
  .dropdown::before{display:none}
  .dropdown a{justify-content:center;font-size:.85rem!important;padding:.6rem .8rem}
  .hamburger{display:flex}
  .grid-2{grid-template-columns:1fr;gap:3rem}
  .footer-top{grid-template-columns:1fr 1fr;gap:2rem}
  .svc-detail-grid{grid-template-columns:1fr}
  .fit-boxes{grid-template-columns:1fr}
}
@media(max-width:600px){
  .footer-top{grid-template-columns:1fr}
  section{padding:5rem 5vw}
  .svc-hub-grid{grid-template-columns:1fr}
}
