/* ============================================================
   BERKAN CAPITAL — shared stylesheet
   Palette: navy #16314e / deep navy #0f2236 / gold #d39b3c
   Display face: Cormorant Garamond (serif, characterful)
   Body face: Inter (clean, modern sans)
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500&family=Inter:wght@400;500;600;700&display=swap');

:root{
  --navy:#16314e; --navy2:#1f4368; --navy3:#0f2236;
  --gold:#d39b3c; --gold2:#dcaf63; --gold-soft:#f4ead0;
  --ink:#1b2632; --muted:#5d6b78; --line:#e4e8ec;
  --bg:#ffffff; --panel:#f6f9fb; --soft:#eef3f7; --cream:#faf7f0;
  --serif:'Cormorant Garamond',Georgia,serif;
  --sans:'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  --maxw:1120px;

  /* ============================================================
     SITE LOGO — change the TWO lines below to switch the logo
     on every page at once. Pick one pair:

       icon   (square-ish):  logo-master.png     height 70px
       2-row  (stacked):     logo-text-2row.png  height 30px
       1-row  (long):        logo-text-1row.png  height 22px

     Just edit the THREE lines below (src, height, ratio) to the
     pair you want. The ratio keeps the width correct automatically.

       icon :  logo-master.png     height 70px   ratio 850/604
       2-row:  logo-text-2row.png  height 30px   ratio 2612/551
       1-row:  logo-text-1row.png  height 22px   ratio 4349/395

     Note: To make logo size bigger just increase the height (px) size
            or decrease the size to make the logo size smaller. 
     ============================================================ */
  --logo-src: url('images/logo-text-2row.png');
  --logo-h: 30px;
  --logo-ratio: 2612 / 551;

  /* ============================================================
     FOOTER LOGO — same idea, for the WHITE logo on the dark footer.
     The footer needs a WHITE version of whichever logo you choose.
       white icon :  logo-white.png            height 84px   ratio 850/604
       white 2-row:  logo-white-2row.png (*)   height 30px   ratio 2612/551
       white 1-row:  logo-white-1row.png (*)   height 34px   ratio 4349/395
     (*) you must supply these white files; the dark ones won't show.
     Note: To make logo size bigger just increase the height (px) size
            or decrease the size to make the logo size smaller. 
     ============================================================ */
  --flogo-src: url('images/logo-white-2row.png');
  --flogo-h: 30px;
  --flogo-ratio: 2612 / 551;
}
*{box-sizing:border-box;margin:0;padding:0;}
html{scroll-behavior:smooth;}
body{font-family:var(--sans);color:var(--ink);background:var(--bg);line-height:1.65;font-size:17px;-webkit-font-smoothing:antialiased;}
a{color:inherit;text-decoration:none;}
img{max-width:100%;display:block;}
.wrap{max-width:var(--maxw);margin:0 auto;padding:0 28px;}
.accent{color:var(--gold);}

/* ---------- Typography ---------- */
h1,h2,h3,h4{font-family:var(--serif);font-weight:600;line-height:1.15;color:var(--navy);letter-spacing:-.01em;}
h1{font-size:clamp(34px,5vw,58px);}
h2{font-size:clamp(28px,3.4vw,40px);}
h3{font-size:22px;}
.eyebrow{font-family:var(--sans);font-size:12.5px;font-weight:700;letter-spacing:.22em;text-transform:uppercase;color:var(--gold);margin-bottom:16px;}
.lead{font-size:19px;color:var(--muted);line-height:1.6;max-width:620px;}
.lead-dark{color:#c3d0dc;}

/* ---------- Nav ---------- */
nav{position:sticky;top:0;z-index:100;background:rgba(255,255,255,.94);backdrop-filter:blur(10px);border-bottom:1px solid var(--line);}
nav .row{display:flex;align-items:center;justify-content:space-between;height:92px;}

/* --- Logo system: one <span class="logo"> per page, driven by the
   --logo-src and --logo-h variables set once in :root above. --- */
.brand{display:inline-flex;align-items:center;}
.brand .logo{
  display:block;
  height:var(--logo-h);
  aspect-ratio:var(--logo-ratio);
  width:auto;
  background-image:var(--logo-src);
  background-repeat:no-repeat;
  background-position:left center;
  background-size:contain;
}
.navlinks{display:flex;gap:30px;align-items:center;}
.navlinks a{font-size:14.5px;font-weight:500;color:var(--navy);transition:color .15s;}
.navlinks a:hover,.navlinks a.active{color:var(--gold);}
.navcta{background:var(--gold)!important;color:var(--navy)!important;padding:11px 20px;border-radius:6px;font-weight:700;font-size:14px;transition:background .15s;}
.navcta:hover{background:var(--gold2)!important;color:var(--navy)!important;}
.navtoggle{display:none;background:none;border:none;cursor:pointer;font-size:26px;color:var(--navy);}

/* ---------- Buttons ---------- */
.btn{display:inline-block;padding:14px 30px;border-radius:7px;font-weight:600;font-size:15.5px;font-family:var(--sans);transition:all .18s;cursor:pointer;border:none;}
.btn-gold{background:var(--gold);color:var(--navy);}
.btn-gold:hover{background:var(--gold2);transform:translateY(-1px);}
.btn-navy{background:var(--navy);color:#fff;}
.btn-navy:hover{background:var(--navy2);}
.btn-ghost{border:1.5px solid rgba(255,255,255,.45);color:#fff;}
.btn-ghost:hover{border-color:#fff;background:rgba(255,255,255,.08);}
.btn-outline{border:1.5px solid var(--navy);color:var(--navy);}
.btn-outline:hover{background:var(--navy);color:#fff;}

/* Inline text link (used on About, so the LinkedIn link doesn't read as a page-ending button) */
.text-link{display:inline-block;color:var(--navy);font-weight:600;font-size:16px;text-decoration:none;border-bottom:1.5px solid var(--gold);padding-bottom:2px;transition:color .15s,border-color .15s;}
.text-link:hover{color:var(--gold);border-color:var(--gold);}

/* Scroll cue: signals there is more content below, so the page doesn't feel "finished" */
.scroll-cue{display:flex;align-items:center;gap:12px;margin-top:40px;color:var(--muted);font-size:14.5px;}
.scroll-cue span{max-width:520px;}
.scroll-cue svg{width:26px;height:26px;flex-shrink:0;fill:var(--gold);animation:cue-bounce 1.8s ease-in-out infinite;}
@keyframes cue-bounce{0%,100%{transform:translateY(0);}50%{transform:translateY(5px);}}
@media(prefers-reduced-motion:reduce){.scroll-cue svg{animation:none;}}

/* ---------- Sections ---------- */
section{padding:88px 0;}
.sec-tight{padding:64px 0;}
.center{text-align:center;}
.center .lead{margin-left:auto;margin-right:auto;}

/* ---------- Hero ---------- */
.hero{background:linear-gradient(155deg,var(--navy3) 0%,var(--navy) 55%,var(--navy2) 100%);color:#fff;padding:110px 0 96px;position:relative;overflow:hidden;}
.hero h1{color:#fff;max-width:900px;position:relative;}
.hero h1 .u{color:var(--gold2);}
.hero .lead{color:#c3d0dc;max-width:680px;margin-top:24px;font-size:20px;}
.hero .cta-row{margin-top:38px;display:flex;gap:14px;flex-wrap:wrap;}
.hero .reassure{margin-top:22px;font-size:14px;color:#9fb2c4;display:flex;gap:18px;flex-wrap:wrap;}
.hero .reassure span{display:flex;align-items:center;gap:7px;}
.hero .reassure span::before{content:"✓";color:var(--gold2);font-weight:700;}

/* page hero (interior pages) */
.pagehero{background:linear-gradient(155deg,var(--navy3),var(--navy));color:#fff;padding:72px 0 64px;}
.pagehero h1{color:#fff;}
.pagehero .lead{color:#c3d0dc;margin-top:16px;}

/* ---------- Trust strip ---------- */
.trust{background:var(--navy3);color:#cddae5;padding:26px 0;border-top:1px solid rgba(255,255,255,.07);}
.trust .row{display:flex;flex-wrap:wrap;gap:16px 46px;justify-content:center;align-items:center;font-size:16px;}
.trust b{color:var(--gold2);font-weight:700;}

/* ---------- Problem / agitation ---------- */
.problem{background:var(--cream);}
.problem-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:44px;}
.problem-card{background:#fff;border:1px solid var(--line);border-left:3px solid var(--gold);border-radius:8px;padding:28px;}
.problem-card h3{font-size:19px;margin-bottom:10px;}
.problem-card p{font-size:15px;color:var(--muted);}

/* ---------- Not PE (contrast) ---------- */
.notpe{background:var(--navy);color:#fff;}
.notpe h2{color:#fff;}
.notpe .lead{color:#c3d0dc;}
.notpe-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:20px;margin-top:44px;}
.notpe-item{display:flex;gap:16px;align-items:flex-start;background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.1);border-radius:9px;padding:22px 24px;}
.notpe-item .ic{flex:0 0 auto;width:40px;height:40px;border-radius:8px;background:rgba(201,162,39,.16);color:var(--gold2);display:flex;align-items:center;justify-content:center;font-size:20px;font-weight:700;}
.notpe-item h3{color:#fff;font-size:18px;margin-bottom:5px;}
.notpe-item p{font-size:14.5px;color:#b9c6d3;}

/* ---------- Cards / grids ---------- */
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:44px;}
.grid-4{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;margin-top:44px;}
.grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:24px;margin-top:44px;}
.card{background:#fff;border:1px solid var(--line);border-radius:10px;padding:28px;transition:transform .18s,box-shadow .18s;}
.card:hover{transform:translateY(-3px);box-shadow:0 12px 30px rgba(22,49,78,.08);}
.card .num{width:42px;height:42px;border-radius:9px;background:var(--navy);color:var(--gold);display:flex;align-items:center;justify-content:center;font-family:var(--serif);font-size:30px;font-weight:700;margin-bottom:16px;}
.card h3{font-size:19px;margin-bottom:8px;}
.card p{font-size:15px;color:var(--muted);}

/* ---------- Track record stat cards ---------- */
.tr-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;margin-top:44px;}
.tr-card{border:1px solid var(--line);border-radius:11px;padding:26px;background:#fff;}
.tr-card.feature{background:var(--navy);color:#fff;border-color:var(--navy);}
.tr-card .co{font-size:15px;font-weight:700;color:var(--navy);margin-bottom:3px;font-family:var(--sans);}
.tr-card.feature .co{color:#fff;}
.tr-card .tag{font-size:11px;font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:var(--gold);margin-bottom:14px;}
.tr-card .big{font-family:var(--serif);font-size:30px;font-weight:700;color:var(--navy);line-height:1.05;margin-bottom:8px;}
.tr-card.feature .big{color:#fff;}
.tr-card p{font-size:14px;color:var(--muted);}
.tr-card.feature p{color:#c3d0dc;}

/* ---------- Process steps ---------- */
.steps{margin-top:44px;display:flex;flex-direction:column;gap:0;}
.step{display:grid;grid-template-columns:88px 1fr;gap:28px;padding:30px 0;border-top:1px solid var(--line);}
.step:last-child{border-bottom:1px solid var(--line);}
.step .n{font-family:var(--serif);font-size:52px;font-weight:600;color:var(--gold);line-height:1;opacity:.55;}
.step h3{font-size:22px;margin-bottom:8px;}
.step p{font-size:15.5px;color:var(--muted);max-width:640px;margin-bottom:10px;}
.step .meta{font-size:13.5px;color:var(--navy);background:var(--soft);display:inline-block;padding:5px 12px;border-radius:20px;font-weight:500;}

/* ---------- Criteria ---------- */
.crit-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:20px;margin-top:40px;}
.crit-item{border:1px solid var(--line);border-radius:9px;padding:24px;background:var(--panel);}
.crit-item .l{font-size:12px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--gold);margin-bottom:8px;}
.crit-item .v{font-size:16.5px;color:var(--ink);}
.crit-item .v b{color:var(--navy);}

/* ---------- Credential chips (About) ---------- */
.creds .chip{background:var(--panel);border:1px solid var(--line);border-radius:20px;padding:8px 15px;font-size:13.5px;font-weight:600;color:var(--navy);}

/* ---------- Sectors chips ---------- */
.sectors{display:flex;flex-wrap:wrap;gap:12px;margin-top:40px;}
.sectors .chip{background:#fff;border:1px solid var(--line);border-radius:8px;padding:13px 20px;font-size:15px;font-weight:500;color:var(--navy);transition:all .15s;}
.sectors .chip:hover{border-color:var(--gold);background:var(--gold-soft);}
.sectors .chip.on{background:var(--navy);color:#fff;border-color:var(--navy);}

/* ---------- Insights band (slightly darker gold than the illustrations) ---------- */
.insights-band{background:#f0e4c6;padding:88px 0;}
.insights-band .blog-card{border-color:#e0d0aa;}

/* ---------- Insights / blog cards ---------- */
.blog-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:26px;margin-top:44px;}
.blog-card{border:1px solid var(--line);border-radius:12px;overflow:hidden;background:#fff;transition:transform .18s,box-shadow .18s;display:flex;flex-direction:column;}
.blog-card:hover{transform:translateY(-4px);box-shadow:0 16px 36px rgba(22,49,78,.1);}
.blog-card .thumb{aspect-ratio:16/10;overflow:hidden;background:var(--navy);}
.blog-card .thumb img{width:100%;height:100%;object-fit:cover;}
.blog-card .body{padding:24px;display:flex;flex-direction:column;flex:1;}
.blog-card .cat{font-size:11px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--gold);margin-bottom:10px;}
.blog-card h3{font-size:21px;line-height:1.2;margin-bottom:10px;}
.blog-card p{font-size:14.5px;color:var(--muted);flex:1;}
.blog-card .more{margin-top:16px;font-size:14px;font-weight:600;color:var(--navy);}
.blog-card .more::after{content:" →";color:var(--gold);}

/* ---------- Article body ---------- */
.article{max-width:720px;margin:0 auto;}
.article .hero-img{border-radius:12px;overflow:hidden;margin:0 0 36px;border:1px solid var(--line);}
.article p{font-size:17.5px;color:#33414e;margin-bottom:22px;line-height:1.75;}
.article h2{font-size:28px;margin:40px 0 16px;}
.article h3{font-size:21px;margin:30px 0 12px;}
.article ul{margin:0 0 22px 22px;}
.article li{font-size:17.5px;color:#33414e;margin-bottom:10px;line-height:1.7;}
.article blockquote{border-left:3px solid var(--gold);background:var(--panel);padding:18px 26px;margin:26px 0;font-family:var(--serif);font-size:22px;font-style:italic;color:var(--navy);border-radius:0 8px 8px 0;}
.article .meta{color:var(--muted);font-size:14px;margin-bottom:8px;}

/* ---------- FAQ ---------- */
.faq{max-width:820px;margin:44px auto 0;}
.faq details{border-bottom:1px solid var(--line);padding:6px 0;}
.faq summary{cursor:pointer;list-style:none;padding:22px 44px 22px 0;font-size:18.5px;font-weight:600;color:var(--navy);position:relative;font-family:var(--serif);}
.faq summary::-webkit-details-marker{display:none;}
.faq summary::after{content:"+";position:absolute;right:6px;top:50%;transform:translateY(-50%);font-size:26px;color:var(--gold);font-weight:400;transition:transform .2s;}
.faq details[open] summary::after{content:"−";}
.faq details p{padding:0 44px 24px 0;font-size:16px;color:var(--muted);line-height:1.7;}

/* ---------- Contact form ---------- */
.contact-grid{display:grid;grid-template-columns:1.3fr 1fr;gap:56px;margin-top:44px;align-items:start;}
.form-field{margin-bottom:20px;}
.form-field label{display:block;font-size:14px;font-weight:600;color:var(--navy);margin-bottom:7px;}
.form-field input,.form-field select,.form-field textarea{width:100%;padding:13px 15px;border:1px solid var(--line);border-radius:8px;font-family:var(--sans);font-size:15.5px;color:var(--ink);background:#fff;transition:border-color .15s;}
.form-field input:focus,.form-field select:focus,.form-field textarea:focus{outline:none;border-color:var(--gold);box-shadow:0 0 0 3px rgba(201,162,39,.12);}
.form-field textarea{min-height:130px;resize:vertical;}
.form-note{font-size:13px;color:var(--muted);margin:6px 0 20px;}
.next-steps{background:var(--panel);border-radius:12px;padding:30px;}
.next-steps h3{font-size:20px;margin-bottom:18px;}
.next-steps ol{margin-left:20px;}
.next-steps li{font-size:15px;color:var(--muted);margin-bottom:12px;line-height:1.55;}
.next-steps .direct{margin-top:22px;padding-top:22px;border-top:1px solid var(--line);}
.next-steps .direct a{display:block;font-size:16px;font-weight:600;color:var(--navy);margin-top:8px;}
.next-steps .direct a:hover{color:var(--gold);}

/* ---------- CTA band ---------- */
.cta{background:linear-gradient(155deg,var(--navy2),var(--navy3));color:#fff;text-align:center;}
.cta h2{color:#fff;margin-bottom:14px;}
.cta p{font-size:18px;color:#c3d0dc;max-width:560px;margin:0 auto 30px;}

/* ---------- Stat highlight band ---------- */
.statband{background:var(--gold-soft);}
.statband.hero-stats{padding:44px 0;border-bottom:1px solid #e8dcc0;}
.statband .row{display:grid;grid-template-columns:repeat(4,1fr);gap:26px;text-align:center;}
.statband .row.three{grid-template-columns:repeat(3,1fr);}
.statband .big{font-family:var(--serif);font-size:46px;font-weight:700;color:var(--navy);line-height:1.05;}
.statband .lbl{font-size:15px;color:var(--muted);margin-top:8px;}

/* ---------- Footer ---------- */
footer{background:var(--navy3);color:#8fa3b5;padding:60px 0 30px;font-size:14.5px;}
.foot-grid{display:grid;grid-template-columns:1.6fr 1fr 1fr;gap:40px;padding-bottom:40px;border-bottom:1px solid rgba(255,255,255,.1);}
footer .brand{display:inline-block;margin-bottom:20px;}
footer .brand .logo{
  display:block;
  height:var(--flogo-h);
  aspect-ratio:var(--flogo-ratio);
  width:auto;
  background-image:var(--flogo-src);
  background-repeat:no-repeat;
  background-position:left center;
  background-size:contain;
}
footer .tagline{max-width:320px;color:#a9bccd;font-size:15px;line-height:1.6;}
footer h4{font-family:var(--sans);color:#fff;font-size:13px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;margin-bottom:16px;}
footer ul{list-style:none;}
footer li{margin-bottom:11px;}
footer a:hover{color:var(--gold2);}
.socials{display:flex;gap:12px;margin-top:16px;}
.socials a{width:38px;height:38px;border-radius:8px;background:rgba(255,255,255,.08);display:flex;align-items:center;justify-content:center;transition:background .15s;}
.socials a:hover{background:var(--gold);}
.socials svg{width:18px;height:18px;fill:#fff;}
.foot-bottom{display:flex;justify-content:space-between;flex-wrap:wrap;gap:12px;padding-top:24px;font-size:13px;color:#7e93a8;}
.foot-bottom a{color:#9fb2c4;}
.foot-bottom a:hover{color:var(--gold2);}
.foot-bottom .legal{display:flex;gap:20px;}

/* ---------- Responsive ---------- */
@media(min-width:861px) and (max-width:1080px){
  .grid-4{grid-template-columns:repeat(2,1fr);}
}
@media(max-width:860px){
  .navlinks{position:fixed;inset:92px 0 auto 0;background:#fff;flex-direction:column;gap:0;padding:10px 0;border-bottom:1px solid var(--line);box-shadow:0 12px 24px rgba(0,0,0,.08);display:none;}
  .navlinks.open{display:flex;}
  .navlinks a{padding:14px 28px;width:100%;}
  .navtoggle{display:block;}
  .problem-grid,.grid-3,.grid-4,.grid-2,.notpe-grid,.tr-grid,.crit-grid,.blog-grid,.contact-grid,.foot-grid{grid-template-columns:1fr;}
  .statband .row{grid-template-columns:1fr!important;gap:26px;}
  .step{grid-template-columns:56px 1fr;gap:18px;}
  .step .n{font-size:38px;}
  section{padding:60px 0;}
  .foot-grid{gap:32px;}
}
@media(prefers-reduced-motion:reduce){*{transition:none!important;scroll-behavior:auto!important;}}
