/* ============================================================
   PRIME HOME SERVICES LONDON — GLOBAL STYLES
   Aesthetic: Editorial / Bold Luxury — Dark Navy + Gold
   primehomeservices.co.uk
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,800;0,900;1,700&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'DM Sans', sans-serif; background: #fff; color: #1a1a2e; -webkit-font-smoothing: antialiased; line-height: 1.6; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── VARIABLES ── */
:root {
  --navy:      #0d1b2a;
  --navy-mid:  #1b2d45;
  --navy-lt:   #243b55;
  --gold:      #c9a84c;
  --gold-lt:   #e2c47a;
  --gold-dk:   #a07c2e;
  --cream:     #f8f4ed;
  --cream-dk:  #ede8df;
  --white:     #ffffff;
  --text:      #2d3748;
  --text-lt:   #718096;
  --border:    #e2ddd5;
  --red:       #c0392b;
  --green:     #1a6b3e;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;

  --gutter: clamp(20px, 5vw, 64px);
  --max:    1240px;
  --radius: 8px;
  --shadow: 0 4px 24px rgba(13,27,42,.10);
  --shadow-lg: 0 16px 48px rgba(13,27,42,.18);
}

/* ── CONTAINER ── */
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }

/* ── ─────────────────────────────────────────────── ── */
/* ── ANNOUNCEMENT BAR                                ── */
/* ── ─────────────────────────────────────────────── ── */
.ann-bar {
  background: var(--gold);
  color: var(--navy);
  font-size: .78rem;
  font-weight: 600;
  padding: 9px var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  letter-spacing: .02em;
}
.ann-bar a { color: var(--navy); font-weight: 700; border-bottom: 1px solid rgba(13,27,42,.3); }
.ann-items { display: flex; gap: 20px; flex-wrap: wrap; }
.ann-item { display: flex; align-items: center; gap: 6px; }

/* ── ─────────────────────────────────────────────── ── */
/* ── HEADER / NAV                                    ── */
/* ── ─────────────────────────────────────────────── ── */
.site-header {
  background: var(--navy);
  position: sticky; top: 0; z-index: 500;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  height: 70px; gap: 20px;
}

/* Logo */
.logo { text-decoration: none; display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-icon {
  width: 40px; height: 40px;
  background: var(--gold);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-icon svg { width: 20px; height: 20px; fill: none; stroke: var(--navy); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.logo-words { line-height: 1.1; }
.logo-words strong { display: block; font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: #fff; }
.logo-words small { font-size: .65rem; color: var(--gold); font-weight: 500; letter-spacing: .1em; text-transform: uppercase; }

/* Nav links */
.main-nav { display: flex; align-items: center; gap: 2px; }
.main-nav a {
  color: rgba(255,255,255,.75);
  font-size: .875rem; font-weight: 500;
  padding: 8px 14px; border-radius: 5px;
  transition: color .15s, background .15s;
  white-space: nowrap;
}
.main-nav a:hover, .main-nav a.active { color: #fff; background: rgba(255,255,255,.08); }

/* Dropdown */
.has-drop { position: relative; }
.has-drop > a { display: flex; align-items: center; gap: 4px; }
.has-drop > a::after { content: '▾'; font-size: .6rem; opacity: .5; }
.drop-panel {
  display: none; position: absolute; top: calc(100% + 10px); left: 0;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 8px;
  min-width: 200px; box-shadow: var(--shadow-lg); z-index: 99;
}
.has-drop:hover .drop-panel { display: block; }
.drop-panel a { display: block; padding: 8px 12px; font-size: .83rem; color: var(--text); border-radius: 5px; transition: background .12s; }
.drop-panel a:hover { background: var(--cream); color: var(--navy); }

/* CTA button in header */
.nav-call {
  background: var(--gold); color: var(--navy) !important;
  padding: 9px 18px !important; border-radius: 5px !important;
  font-weight: 700 !important; font-size: .85rem !important;
  transition: background .15s !important;
  white-space: nowrap;
}
.nav-call:hover { background: var(--gold-lt) !important; }

/* Mobile toggle */
.burger { display: none; background: none; border: none; cursor: pointer; padding: 6px; flex-direction: column; gap: 5px; }
.burger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: all .25s; }

/* ── ─────────────────────────────────────────────── ── */
/* ── HERO                                            ── */
/* ── ─────────────────────────────────────────────── ── */
.hero {
  background: var(--navy);
  position: relative; overflow: hidden;
  min-height: 88vh;
  display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse at 70% 20%, rgba(201,168,76,.12) 0%, transparent 50%),
    radial-gradient(ellipse at 10% 80%, rgba(201,168,76,.07) 0%, transparent 50%);
}
.hero-pattern {
  position: absolute; inset: 0; opacity: .04;
  background-image: repeating-linear-gradient(
    0deg, transparent, transparent 40px,
    rgba(255,255,255,.5) 40px, rgba(255,255,255,.5) 41px
  ),
  repeating-linear-gradient(
    90deg, transparent, transparent 40px,
    rgba(255,255,255,.5) 40px, rgba(255,255,255,.5) 41px
  );
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 420px;
  gap: 56px; align-items: center;
  padding: 80px var(--gutter);
  max-width: var(--max); margin: 0 auto; width: 100%;
}

/* Hero left */
.hero-eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 24px; }
.hero-eyebrow-line { width: 32px; height: 2px; background: var(--gold); }
.hero-eyebrow-txt { font-size: .72rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.5); }

.hero-left h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  font-weight: 900; color: #fff;
  line-height: 1.07; letter-spacing: -.02em;
  margin-bottom: 22px;
}
.hero-left h1 em { font-style: italic; color: var(--gold-lt); }
.hero-left > p { color: rgba(255,255,255,.6); font-size: 1.05rem; max-width: 480px; line-height: 1.78; margin-bottom: 36px; }

.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 48px; }

.hero-stats { display: flex; gap: 32px; flex-wrap: wrap; border-top: 1px solid rgba(255,255,255,.1); padding-top: 28px; }
.hstat { text-align: left; }
.hstat-num { font-family: var(--font-display); font-size: 2rem; font-weight: 900; color: var(--gold-lt); line-height: 1; }
.hstat-lbl { font-size: .75rem; color: rgba(255,255,255,.5); margin-top: 3px; font-weight: 500; }

/* Hero form */
.hero-form-wrap {
  background: #fff;
  border-radius: 12px;
  padding: 36px 32px;
  box-shadow: 0 24px 64px rgba(0,0,0,.35);
}
.hero-form-wrap h2 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.hero-form-wrap > p { font-size: .82rem; color: var(--text-lt); margin-bottom: 24px; }
.f-group { margin-bottom: 14px; }
.f-group label { display: block; font-size: .72rem; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 5px; }
.f-group input, .f-group select, .f-group textarea {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--border); border-radius: 6px;
  font-family: var(--font-body); font-size: .9rem; color: var(--text);
  background: var(--cream); transition: border-color .15s, box-shadow .15s;
  appearance: none; resize: vertical;
}
.f-group input:focus, .f-group select:focus, .f-group textarea:focus {
  outline: none; border-color: var(--gold);
  background: #fff; box-shadow: 0 0 0 3px rgba(201,168,76,.18);
}
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-note { font-size: .71rem; color: var(--text-lt); text-align: center; margin-top: 10px; }

/* ── ─────────────────────────────────────────────── ── */
/* ── BUTTONS                                         ── */
/* ── ─────────────────────────────────────────────── ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: 6px;
  font-family: var(--font-body); font-size: .92rem; font-weight: 700;
  cursor: pointer; border: none; transition: all .15s;
  text-decoration: none;
}
.btn-gold { background: var(--gold); color: var(--navy); box-shadow: 0 4px 18px rgba(201,168,76,.35); }
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,.4); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-1px); }
.btn-outline-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.45); }
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.7); }
.btn-outline { background: transparent; color: var(--navy); border: 2px solid var(--border); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold-dk); }
.btn-white { background: #fff; color: var(--navy); }
.btn-white:hover { background: var(--cream); transform: translateY(-1px); }
.btn-sm { padding: 9px 18px; font-size: .82rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── ─────────────────────────────────────────────── ── */
/* ── TRUST BAR                                       ── */
/* ── ─────────────────────────────────────────────── ── */
.trust-bar { display: flex; flex-wrap: wrap; border-bottom: 1px solid var(--border); }
.tbar-cell {
  flex: 1; min-width: 130px;
  text-align: center; padding: 22px 16px;
  border-right: 1px solid var(--border);
}
.tbar-cell:last-child { border-right: none; }
.tbar-num { font-family: var(--font-display); font-size: 1.8rem; font-weight: 900; color: var(--navy); line-height: 1; }
.tbar-num em { font-style: normal; color: var(--gold-dk); }
.tbar-lbl { font-size: .72rem; color: var(--text-lt); font-weight: 500; margin-top: 3px; }

/* ── ─────────────────────────────────────────────── ── */
/* ── SECTION UTILITIES                               ── */
/* ── ─────────────────────────────────────────────── ── */
.sec { padding: 88px var(--gutter); }
.sec-sm { padding: 60px var(--gutter); }
.sec-cream { background: var(--cream); }
.sec-navy { background: var(--navy); }
.sec-navy-mid { background: var(--navy-mid); }
.sec-inner { max-width: var(--max); margin: 0 auto; }

.sec-head { margin-bottom: 52px; }
.sec-head-center { text-align: center; }
.sec-head-center p { margin-left: auto; margin-right: auto; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .7rem; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; color: var(--gold-dk); margin-bottom: 10px;
}
.eyebrow::before { content: ''; width: 18px; height: 2px; background: var(--gold); display: block; }
.sec-navy .eyebrow, .sec-navy-mid .eyebrow { color: var(--gold-lt); }
.sec-navy .eyebrow::before, .sec-navy-mid .eyebrow::before { background: var(--gold-lt); }

h2.sh {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  font-weight: 900; color: var(--navy);
  line-height: 1.12; letter-spacing: -.02em;
  margin-bottom: 14px;
}
.sec-navy h2.sh, .sec-navy-mid h2.sh { color: #fff; }

p.sub {
  font-size: .97rem; color: var(--text-lt);
  max-width: 560px; line-height: 1.78;
  margin-bottom: 0;
}
.sec-navy p.sub, .sec-navy-mid p.sub { color: rgba(255,255,255,.55); }

/* ── ─────────────────────────────────────────────── ── */
/* ── SERVICES GRID                                   ── */
/* ── ─────────────────────────────────────────────── ── */
.svc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px; }
.svc-card {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: 10px; padding: 32px 28px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
  position: relative; overflow: hidden;
  text-decoration: none; display: block; color: inherit;
}
.svc-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s;
}
.svc-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-card:hover .svc-arrow { opacity: 1; transform: translate(3px,-3px); }
.svc-ico { font-size: 2.4rem; margin-bottom: 18px; }
.svc-card h3 { font-family: var(--font-display); font-size: 1.12rem; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.svc-card p { font-size: .84rem; color: var(--text-lt); line-height: 1.65; margin-bottom: 18px; }
.svc-arrow { color: var(--gold-dk); font-size: .9rem; opacity: 0; transition: all .15s; display: inline-block; }
.svc-badge { font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--gold-dk); background: rgba(201,168,76,.12); padding: 3px 8px; border-radius: 3px; margin-bottom: 12px; display: inline-block; }

/* ── ─────────────────────────────────────────────── ── */
/* ── WHY US                                          ── */
/* ── ─────────────────────────────────────────────── ── */
.why-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.why-img {
  border-radius: 10px; overflow: hidden;
  position: relative; aspect-ratio: 4/3;
}
.why-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.why-img-badge {
  position: absolute; bottom: 24px; left: 24px;
  background: var(--gold); color: var(--navy);
  padding: 14px 20px; border-radius: 8px;
  font-family: var(--font-display); font-weight: 700;
}
.why-img-badge .num { font-size: 2rem; line-height: 1; }
.why-img-badge .lbl { font-size: .72rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 28px; }
.feat {
  background: var(--cream); border: 1.5px solid var(--border);
  border-radius: 8px; padding: 18px 16px;
  display: flex; align-items: flex-start; gap: 12px;
  transition: border-color .15s;
}
.feat:hover { border-color: var(--gold); }
.feat-ico { font-size: 1.4rem; flex-shrink: 0; margin-top: 1px; }
.feat h4 { font-family: var(--font-display); font-size: .92rem; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.feat p { font-size: .78rem; color: var(--text-lt); line-height: 1.5; }

/* ── ─────────────────────────────────────────────── ── */
/* ── PROCESS                                         ── */
/* ── ─────────────────────────────────────────────── ── */
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); border: 1.5px solid rgba(255,255,255,.1); border-radius: 10px; overflow: hidden; }
.proc-step { padding: 36px 28px; border-right: 1px solid rgba(255,255,255,.1); }
.proc-step:last-child { border-right: none; }
.proc-n { font-family: var(--font-display); font-size: .7rem; font-weight: 700; letter-spacing: .12em; color: var(--gold); text-transform: uppercase; margin-bottom: 16px; }
.proc-ico { font-size: 2rem; margin-bottom: 14px; }
.proc-step h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.proc-step p { font-size: .81rem; color: rgba(255,255,255,.55); line-height: 1.65; }

/* ── ─────────────────────────────────────────────── ── */
/* ── AREAS                                           ── */
/* ── ─────────────────────────────────────────────── ── */
.areas-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 8px; }
.area-pill {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.75); padding: 11px 14px; border-radius: 6px;
  font-size: .82rem; font-weight: 500;
  display: flex; align-items: center; gap: 8px;
  text-decoration: none; transition: all .15s;
}
.area-pill:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.area-pill .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; transition: background .15s; }
.area-pill:hover .dot { background: var(--navy); }

/* ── ─────────────────────────────────────────────── ── */
/* ── TESTIMONIALS                                    ── */
/* ── ─────────────────────────────────────────────── ── */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.review-card { border: 1.5px solid var(--border); border-radius: 10px; padding: 28px; background: #fff; transition: border-color .2s, box-shadow .2s; }
.review-card:hover { border-color: var(--gold); box-shadow: var(--shadow); }
.r-stars { color: #f59e0b; font-size: .9rem; letter-spacing: 2px; margin-bottom: 16px; }
.r-txt { font-family: 'Playfair Display', serif; font-size: .95rem; font-style: italic; color: var(--text); line-height: 1.75; margin-bottom: 20px; }
.r-who { display: flex; align-items: center; gap: 12px; }
.r-av { width: 38px; height: 38px; border-radius: 50%; background: var(--navy); color: var(--gold); font-family: var(--font-display); font-weight: 700; font-size: .9rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.r-name { font-size: .87rem; font-weight: 600; color: var(--navy); }
.r-loc { font-size: .74rem; color: var(--text-lt); }
.r-tag { background: var(--cream); color: var(--text-lt); font-size: .68rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; padding: 3px 8px; border-radius: 3px; margin-top: 12px; display: inline-block; }

/* ── ─────────────────────────────────────────────── ── */
/* ── CTA BAND                                        ── */
/* ── ─────────────────────────────────────────────── ── */
.cta-band { background: var(--gold); padding: 72px var(--gutter); text-align: center; }
.cta-band h2 { font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 900; color: var(--navy); letter-spacing: -.02em; margin-bottom: 12px; }
.cta-band p { color: rgba(13,27,42,.7); font-size: 1rem; margin-bottom: 30px; }
.cta-btns { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }

/* ── ─────────────────────────────────────────────── ── */
/* ── BREADCRUMB                                      ── */
/* ── ─────────────────────────────────────────────── ── */
.breadcrumb { background: var(--cream); border-bottom: 1px solid var(--border); padding: 12px var(--gutter); font-size: .77rem; color: var(--text-lt); }
.breadcrumb-inner { max-width: var(--max); margin: 0 auto; display: flex; gap: 6px; align-items: center; flex-wrap: wrap; }
.breadcrumb a { color: var(--text-lt); transition: color .12s; }
.breadcrumb a:hover { color: var(--gold-dk); }
.breadcrumb .sep { opacity: .4; }

/* ── ─────────────────────────────────────────────── ── */
/* ── PAGE HERO (inner pages)                         ── */
/* ── ─────────────────────────────────────────────── ── */
.page-hero { background: var(--navy); padding: 72px var(--gutter) 64px; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 80% 50%, rgba(201,168,76,.12) 0%, transparent 60%); pointer-events: none; }
.page-hero-inner { max-width: var(--max); margin: 0 auto; position: relative; z-index: 1; }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 900; color: #fff; line-height: 1.1; letter-spacing: -.02em; margin-bottom: 16px; }
.page-hero h1 em { font-style: italic; color: var(--gold-lt); }
.page-hero p { color: rgba(255,255,255,.6); font-size: 1.05rem; max-width: 560px; line-height: 1.75; }

/* ── ─────────────────────────────────────────────── ── */
/* ── BLOG CARDS                                      ── */
/* ── ─────────────────────────────────────────────── ── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.blog-card { border: 1.5px solid var(--border); border-radius: 10px; overflow: hidden; background: #fff; text-decoration: none; color: inherit; display: flex; flex-direction: column; transition: border-color .2s, transform .2s, box-shadow .2s; }
.blog-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card:hover .bc-arrow { transform: translate(3px,-3px); }
.bc-thumb { aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center; font-size: 3.5rem; position: relative; border-bottom: 1px solid var(--border); }
.bc-thumb.navy-bg { background: var(--navy); }
.bc-thumb.cream-bg { background: var(--cream); }
.bc-thumb.gold-bg { background: linear-gradient(135deg, var(--navy-mid), var(--navy)); }
.bc-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.bc-cat { font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-dk); margin-bottom: 10px; }
.bc-body h3 { font-family: var(--font-display); font-size: 1.08rem; font-weight: 800; color: var(--navy); line-height: 1.35; margin-bottom: 10px; }
.bc-body p { font-size: .83rem; color: var(--text-lt); line-height: 1.65; flex: 1; }
.bc-meta { display: flex; align-items: center; gap: 14px; margin-top: 16px; font-size: .74rem; color: #aaa; }
.bc-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--border); }
.bc-read { font-size: .82rem; font-weight: 600; color: var(--gold-dk); display: flex; align-items: center; gap: 4px; }
.bc-arrow { transition: transform .15s; }

/* ── ─────────────────────────────────────────────── ── */
/* ── BLOG SIDEBAR                                    ── */
/* ── ─────────────────────────────────────────────── ── */
.blog-layout { display: grid; grid-template-columns: 1fr 300px; gap: 52px; align-items: start; }
.blog-sidebar { position: sticky; top: 86px; }
.sb-box { border: 1.5px solid var(--border); border-radius: 8px; padding: 22px 20px; margin-bottom: 20px; background: #fff; }
.sb-box h4 { font-family: var(--font-display); font-size: .95rem; font-weight: 800; color: var(--navy); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.sb-cats { list-style: none; }
.sb-cats li { padding: 7px 0; border-bottom: 1px solid var(--border); font-size: .83rem; }
.sb-cats li:last-child { border-bottom: none; }
.sb-cats a { color: var(--text); display: flex; justify-content: space-between; align-items: center; transition: color .12s; }
.sb-cats a:hover { color: var(--gold-dk); }
.sb-cnt { background: var(--cream); color: var(--text-lt); font-size: .7rem; padding: 2px 7px; border-radius: 3px; }
.sb-cta { background: var(--navy); border-radius: 8px; padding: 24px 20px; text-align: center; }
.sb-cta h4 { color: #fff; font-family: var(--font-display); font-size: 1rem; border: none; padding: 0; margin-bottom: 8px; }
.sb-cta p { color: rgba(255,255,255,.6); font-size: .8rem; margin-bottom: 16px; line-height: 1.6; }

/* ── ─────────────────────────────────────────────── ── */
/* ── ARTICLE                                         ── */
/* ── ─────────────────────────────────────────────── ── */
.article-layout { display: grid; grid-template-columns: 1fr 300px; gap: 52px; align-items: start; }
.article-sidebar { position: sticky; top: 86px; }
.article-hero-img { background: var(--navy-mid); border-radius: 10px; aspect-ratio: 16/7; display: flex; align-items: center; justify-content: center; font-size: 7rem; margin-bottom: 36px; position: relative; overflow: hidden; }
.article-hero-img::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 30% 50%, rgba(201,168,76,.2), transparent 60%); }

.prose h2 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--navy); margin: 42px 0 14px; line-height: 1.2; }
.prose h3 { font-family: var(--font-display); font-size: 1.12rem; font-weight: 700; color: var(--navy); margin: 28px 0 10px; }
.prose p { font-size: .96rem; color: var(--text); line-height: 1.82; margin-bottom: 18px; }
.prose ul, .prose ol { padding-left: 1.5em; margin-bottom: 18px; }
.prose li { font-size: .94rem; color: var(--text); line-height: 1.75; margin-bottom: 7px; }
.prose strong { color: var(--navy); font-weight: 600; }
.prose a { color: var(--gold-dk); text-decoration: underline; text-underline-offset: 3px; }
.prose table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: .85rem; }
.prose th { background: var(--navy); color: #fff; padding: 10px 14px; text-align: left; font-family: var(--font-display); font-weight: 700; }
.prose td { padding: 10px 14px; border-bottom: 1px solid var(--border); color: var(--text); }
.prose tr:nth-child(even) td { background: var(--cream); }

.info-box { background: #eff6ff; border: 1.5px solid #bfdbfe; border-radius: 8px; padding: 20px 22px; margin: 24px 0; }
.info-box h4 { font-family: var(--font-display); font-size: .9rem; font-weight: 700; color: #1e40af; margin-bottom: 8px; }
.info-box p, .info-box li { font-size: .85rem; color: #1e3a8a; line-height: 1.7; margin-bottom: 5px; }
.warn-box { background: #fef9c3; border: 1.5px solid #fde047; border-radius: 8px; padding: 20px 22px; margin: 24px 0; }
.warn-box h4 { font-family: var(--font-display); font-size: .9rem; font-weight: 700; color: #854d0e; margin-bottom: 8px; }
.warn-box p, .warn-box li { font-size: .85rem; color: #713f12; line-height: 1.7; margin-bottom: 5px; }
.tip-box { background: #f0fdf4; border: 1.5px solid #86efac; border-radius: 8px; padding: 20px 22px; margin: 24px 0; }
.tip-box h4 { font-family: var(--font-display); font-size: .9rem; font-weight: 700; color: #166534; margin-bottom: 8px; }
.tip-box p, .tip-box li { font-size: .85rem; color: #14532d; line-height: 1.7; margin-bottom: 5px; }
.danger-box { background: #fef2f2; border: 1.5px solid #fca5a5; border-radius: 8px; padding: 20px 22px; margin: 24px 0; }
.danger-box h4 { font-family: var(--font-display); font-size: .9rem; font-weight: 700; color: #991b1b; margin-bottom: 8px; }
.danger-box p { font-size: .85rem; color: #7f1d1d; line-height: 1.7; }

.faq-item { border: 1.5px solid var(--border); border-radius: 7px; margin-bottom: 10px; overflow: hidden; }
.faq-q { padding: 16px 18px; font-family: var(--font-display); font-size: .92rem; font-weight: 700; color: var(--navy); cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: background .15s; }
.faq-q:hover { background: var(--cream); }
.faq-q::after { content: '+'; font-size: 1.2rem; color: var(--gold-dk); flex-shrink: 0; transition: transform .2s; }
.faq-item.open .faq-q { background: var(--cream); }
.faq-item.open .faq-q::after { content: '−'; }
.faq-a { padding: 0 18px 16px; font-size: .86rem; color: var(--text-lt); line-height: 1.75; display: none; }
.faq-item.open .faq-a { display: block; }

.toc-box { border: 1.5px solid var(--border); border-radius: 8px; padding: 20px; margin-bottom: 20px; background: #fff; }
.toc-box h4 { font-family: var(--font-display); font-size: .9rem; font-weight: 800; color: var(--navy); margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px solid var(--border); }
.toc-box ol { padding-left: 1.2em; }
.toc-box li { font-size: .79rem; color: var(--text-lt); margin-bottom: 7px; line-height: 1.5; }
.toc-box a { color: var(--text-lt); transition: color .12s; }
.toc-box a:hover { color: var(--gold-dk); }

.article-cta { background: var(--navy); border-radius: 10px; padding: 32px 28px; margin-top: 44px; text-align: center; }
.article-cta h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 800; color: #fff; margin-bottom: 8px; }
.article-cta p { color: rgba(255,255,255,.6); font-size: .88rem; margin-bottom: 20px; line-height: 1.65; }

/* ── ─────────────────────────────────────────────── ── */
/* ── FOOTER                                          ── */
/* ── ─────────────────────────────────────────────── ── */
.site-footer { background: #090f18; color: rgba(255,255,255,.45); padding: 60px var(--gutter) 28px; }
.footer-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.08); margin-bottom: 24px; }
.footer-brand p { font-size: .83rem; line-height: 1.75; margin-top: 16px; max-width: 270px; }
.footer-col h4 { font-family: var(--font-display); color: #fff; font-size: .88rem; font-weight: 700; margin-bottom: 18px; letter-spacing: .03em; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,.4); font-size: .82rem; transition: color .15s; text-decoration: none; }
.footer-col a:hover { color: var(--gold-lt); }
.footer-bottom { max-width: var(--max); margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-size: .75rem; }
.footer-bottom a { color: rgba(255,255,255,.35); transition: color .15s; }
.footer-bottom a:hover { color: #fff; }
.f-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.55); font-size: .7rem; font-weight: 600; padding: 5px 10px; border-radius: 4px; margin-top: 12px; margin-right: 6px; }

/* ── ─────────────────────────────────────────────── ── */
/* ── FLOAT CALL BUTTON (mobile)                      ── */
/* ── ─────────────────────────────────────────────── ── */
.float-call { display: none; position: fixed; bottom: 18px; right: 18px; z-index: 999; }
.float-call a { width: 54px; height: 54px; background: var(--gold); color: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; text-decoration: none; box-shadow: 0 4px 20px rgba(201,168,76,.5); animation: fc-pulse 2.5s ease-in-out infinite; }
@keyframes fc-pulse { 0%,100% { box-shadow: 0 4px 20px rgba(201,168,76,.5); } 50% { box-shadow: 0 4px 32px rgba(201,168,76,.9), 0 0 0 8px rgba(201,168,76,.12); } }

/* ── ─────────────────────────────────────────────── ── */
/* ── ANIMATIONS                                      ── */
/* ── ─────────────────────────────────────────────── ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
.anim { animation: fadeUp .65s ease both; }
.d1 { animation-delay: .1s; } .d2 { animation-delay: .2s; } .d3 { animation-delay: .3s; } .d4 { animation-delay: .4s; } .d5 { animation-delay: .5s; }

/* ── ─────────────────────────────────────────────── ── */
/* ── RESPONSIVE                                      ── */
/* ── ─────────────────────────────────────────────── ── */
@media (max-width: 1024px) {
  .why-layout { grid-template-columns: 1fr; gap: 40px; }
  .why-img { max-width: 540px; }
  .blog-layout, .article-layout { grid-template-columns: 1fr; }
  .blog-sidebar, .article-sidebar { position: static; }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-left h1 { font-size: 2.6rem; }
  .hero-form-wrap { max-width: 500px; margin: 0 auto; }
  .main-nav .nav-links { display: none; }
  .burger { display: flex; }
  .main-nav.open .nav-links { display: flex; flex-direction: column; position: fixed; top: 0; right: 0; width: min(320px,85vw); height: 100vh; background: var(--navy); border-left: 1px solid rgba(255,255,255,.1); padding: 80px 24px 32px; gap: 2px; z-index: 400; overflow-y: auto; box-shadow: -8px 0 40px rgba(0,0,0,.3); }
  .main-nav.open .nav-links a { padding: 12px 14px; font-size: 1rem; color: rgba(255,255,255,.8); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .ann-items { display: none; }
  .tbar-cell { flex: 0 0 50%; border-right: none; border-bottom: 1px solid var(--border); }
  .footer-grid { grid-template-columns: 1fr; }
  .float-call { display: block; }
  .f-row { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .proc-step { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
}
