/* CORE Management Services — Forth Bridge Management
   Palette lifted from the brand mark: navy + charcoal on paper. */

:root {
  --navy: #1b4a73;
  --navy-deep: #10314e;
  --charcoal: #4a4a4a;
  --ink: #1a1d20;
  --muted: #5f6a73;
  --line: #e3e7ea;
  --mist: #f4f6f7;
  --paper: #fff;
  --gold: #b8873b;
  --shadow: 0 1px 3px rgba(16, 49, 78, .06), 0 8px 24px rgba(16, 49, 78, .06);
  --wrap: 1160px;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; font-family: var(--sans); color: var(--ink);
  overflow-wrap: break-word;
  background: var(--paper); line-height: 1.65; font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--navy); }
h1, h2, h3, h4 { line-height: 1.15; margin: 0 0 .5em; font-weight: 600; }
h1 { font-size: clamp(2.1rem, 5.2vw, 3.5rem); letter-spacing: -.022em; }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); letter-spacing: -.018em; }
h3 { font-size: 1.16rem; letter-spacing: -.01em; }
p { margin: 0 0 1.15em; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 780px; }
.eyebrow {
  font-size: .74rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--navy); margin-bottom: 14px;
}
.lede { font-size: 1.17rem; color: var(--muted); }

/* ---------- header ---------- */
.site-head {
  position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.94);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.head-in { display: flex; align-items: center; justify-content: space-between;
  gap: 24px; height: 78px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { height: 46px; width: auto; }
.brand-txt { display: flex; flex-direction: column; line-height: 1.1; }
.brand-txt b { font-size: 1.02rem; color: var(--navy); letter-spacing: .01em; }
.brand-txt span { font-size: .68rem; letter-spacing: .13em; text-transform: uppercase;
  color: var(--muted); }
.nav { display: flex; align-items: center; gap: 32px; }
.nav a {
  text-decoration: none; color: var(--charcoal); font-size: .95rem;
  font-weight: 500; padding: 6px 0; border-bottom: 2px solid transparent;
  transition: color .18s, border-color .18s;
}
.nav a:hover { color: var(--navy); }
.nav a.on { color: var(--navy); border-bottom-color: var(--navy); }
.nav .btn { padding: 11px 22px; font-size: .9rem; border-bottom: none; }
.nav .btn:hover { color: #fff; }
.nav-toggle { display: none; background: none; border: 1px solid var(--line);
  border-radius: 6px; padding: 9px 11px; cursor: pointer; }
.nav-toggle span { display: block; width: 19px; height: 2px; background: var(--charcoal);
  margin: 4px 0; border-radius: 2px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-block; padding: 14px 30px; border-radius: 4px;
  font-weight: 600; font-size: .96rem; text-decoration: none; cursor: pointer;
  border: 1.5px solid var(--navy); background: var(--navy); color: #fff;
  transition: background .18s, transform .18s, box-shadow .18s; text-align: center;
}
.btn:hover { background: var(--navy-deep); border-color: var(--navy-deep);
  transform: translateY(-1px); box-shadow: 0 6px 18px rgba(16,49,78,.18); }
.btn.ghost { background: transparent; color: var(--navy); }
.btn.ghost:hover { background: var(--navy); color: #fff; }
.btn.wide { width: 100%; }

/* ---------- hero ---------- */
.hero { background: linear-gradient(168deg, #fbfcfc 0%, var(--mist) 62%, #e8edf1 100%);
  border-bottom: 1px solid var(--line); overflow: hidden; }
.hero-in { display: grid; grid-template-columns: 1.08fr .92fr; gap: 60px;
  align-items: center; padding: 84px 0 92px; }
.hero h1 { color: var(--navy-deep); }
.hero .tag { font-family: var(--serif); font-style: italic; font-size: 1.3rem;
  color: var(--charcoal); margin: 0 0 10px; }
.hero .sub { font-size: 1.16rem; color: var(--muted); max-width: 33em; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.hero-art { display: flex; justify-content: center; }
.hero-art img { max-width: 430px; width: 100%; }

/* ---------- sections ---------- */
section { padding: 82px 0; }
section.tint { background: var(--mist); border-block: 1px solid var(--line); }
.sec-head { max-width: 720px; margin-bottom: 46px; }
.sec-head.mid { margin-inline: auto; text-align: center; }

/* ---------- pain grid ---------- */
.grid { display: grid; gap: 22px; }
.g2 { grid-template-columns: repeat(2, 1fr); }
.g3 { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: 8px;
  padding: 30px 28px; box-shadow: var(--shadow);
}
.card h3 { color: var(--navy-deep); }
.card p:last-child { margin-bottom: 0; }
.card .num { font-family: var(--serif); font-size: 1.5rem; color: var(--gold);
  margin-bottom: 8px; }

/* ---------- pricing ---------- */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
  align-items: start; }
.tier {
  background: var(--paper); border: 1px solid var(--line); border-radius: 10px;
  padding: 34px 30px 32px; box-shadow: var(--shadow); position: relative;
  display: flex; flex-direction: column; height: 100%;
}
.tier.feat { border: 2px solid var(--navy); box-shadow: 0 10px 34px rgba(16,49,78,.14); }
.flag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--navy); color: #fff; font-size: .68rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; padding: 6px 16px;
  border-radius: 20px; white-space: nowrap;
}
.tier .lvl { font-size: .74rem; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; color: var(--muted); }
.tier h3 { font-size: 1.42rem; color: var(--navy-deep); margin: 8px 0 4px;
  font-family: var(--serif); font-weight: 600; }
.price { font-size: 2.5rem; font-weight: 600; color: var(--ink);
  letter-spacing: -.03em; margin: 14px 0 4px; }
.price small { font-size: .92rem; font-weight: 400; color: var(--muted);
  letter-spacing: 0; }
.tier ul { list-style: none; padding: 0; margin: 22px 0 26px; flex: 1; }
.tier li { position: relative; padding: 0 0 15px 27px; font-size: .93rem;
  color: var(--charcoal); line-height: 1.55; }
.tier li::before {
  content: ""; position: absolute; left: 2px; top: 8px; width: 11px; height: 6px;
  border-left: 2px solid var(--navy); border-bottom: 2px solid var(--navy);
  transform: rotate(-45deg);
}
.tier li b { color: var(--ink); font-weight: 600; }

/* ---------- testimonials ---------- */
.quote {
  background: var(--paper); border: 1px solid var(--line); border-left: 3px solid var(--navy);
  border-radius: 0 8px 8px 0; padding: 30px 30px 26px;
}
.quote h3 { font-family: var(--serif); font-style: italic; font-weight: 600;
  color: var(--navy-deep); font-size: 1.2rem; }
.quote p { font-size: .95rem; color: var(--charcoal); margin: 0; }

/* ---------- split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split img { border-radius: 8px; box-shadow: var(--shadow); }

/* ---------- forms ---------- */
.form-wrap { background: var(--paper); border: 1px solid var(--line);
  border-radius: 10px; padding: 38px; box-shadow: var(--shadow); }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: .82rem; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase; color: var(--charcoal);
  margin-bottom: 7px; }
.req { color: #b3261e; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; font: inherit; font-size: .97rem;
  color: var(--ink); background: #fff; border: 1px solid #ccd4da;
  border-radius: 5px; transition: border-color .16s, box-shadow .16s;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27,74,115,.13);
}
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.check { display: flex; align-items: flex-start; gap: 10px; }
.check input { width: auto; margin-top: 4px; }
.check label { text-transform: none; letter-spacing: 0; font-weight: 400;
  font-size: .93rem; color: var(--charcoal); }
.form-note { font-size: .84rem; color: var(--muted); margin-top: 14px; }

/* ---------- store ---------- */
.prod { display: flex; flex-direction: column; height: 100%; }
.prod .thumb { aspect-ratio: 4/3; overflow: hidden; border-radius: 8px 8px 0 0;
  background: var(--mist); }
.prod .thumb img { width: 100%; height: 100%; object-fit: cover; }
.prod .body { border: 1px solid var(--line); border-top: none;
  border-radius: 0 0 8px 8px; padding: 26px 26px 28px; flex: 1;
  display: flex; flex-direction: column; background: #fff; }
.prod .body .price { font-size: 1.8rem; margin: 10px 0 18px; }
.prod .body .btn { margin-top: auto; }

/* ---------- expectations ---------- */
.steps { counter-reset: s; display: grid; gap: 20px; }
.step { position: relative; padding-left: 62px; }
.step::before {
  counter-increment: s; content: counter(s);
  position: absolute; left: 0; top: 2px; width: 42px; height: 42px;
  border-radius: 50%; background: var(--navy); color: #fff;
  display: grid; place-items: center; font-weight: 600; font-size: 1.02rem;
}
.step h3 { color: var(--navy-deep); margin-bottom: 4px; }
.step p { margin: 0; color: var(--muted); font-size: .96rem; }

/* ---------- cta band ---------- */
.band { background: var(--navy-deep); color: #fff; text-align: center; }
.band h2 { color: #fff; }
.band p { color: #c3d2de; max-width: 620px; margin-inline: auto; }
.band .btn { background: #fff; color: var(--navy-deep); border-color: #fff; margin-top: 12px; }
.band .btn:hover { background: #e8eef3; border-color: #e8eef3; color: var(--navy-deep); }

/* ---------- footer ---------- */
.site-foot { background: var(--ink); color: #9aa5ad; padding: 60px 0 30px;
  font-size: .92rem; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 44px;
  padding-bottom: 38px; border-bottom: 1px solid #2c3238; }
.site-foot h4 { color: #fff; font-size: .78rem; letter-spacing: .14em;
  text-transform: uppercase; margin-bottom: 16px; }
.site-foot a { color: #9aa5ad; text-decoration: none; }
.site-foot a:hover { color: #fff; }
.site-foot ul { list-style: none; padding: 0; margin: 0; }
.site-foot li { margin-bottom: 9px; }
.site-foot address { font-style: normal; line-height: 1.85; }
.foot-brand b { color: #fff; font-size: 1.06rem; display: block; margin-bottom: 4px; }
.legal { padding-top: 24px; display: flex; justify-content: space-between;
  gap: 18px; flex-wrap: wrap; font-size: .85rem; color: #78838b; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .hero-in { grid-template-columns: 1fr; gap: 26px; padding: 34px 0 46px; }
  .hero-art { order: -1; }
  .hero-art img { max-width: 190px; }
  .hero h1 { font-size: clamp(1.85rem, 8vw, 2.4rem); }
  .hero .sub { font-size: 1.05rem; }
  .hero-cta { margin-top: 22px; }
  .hero-cta .btn { flex: 1 1 auto; min-width: 46%; }
  .tiers, .g3, .g2, .split, .foot-grid, .row2 { grid-template-columns: 1fr; }
  .split { gap: 34px; }
  .nav {
    display: none; position: absolute; top: 78px; left: 0; right: 0;
    background: #fff; flex-direction: column; align-items: stretch;
    gap: 0; padding: 8px 24px 18px; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
  .nav a { padding: 13px 0; border-bottom: 1px solid var(--line); }
  .nav a.on { border-bottom-color: var(--line); }
  .nav .btn { margin-top: 12px; border-bottom: none; }
  .nav-toggle { display: block; }
  section { padding: 58px 0; }
  .form-wrap { padding: 26px 22px; }
}

/* ---------- blog ---------- */
.post-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.post-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: 8px;
  padding: 28px 28px 26px; box-shadow: var(--shadow);
  display: flex; flex-direction: column; transition: box-shadow .18s, transform .18s;
}
.post-card:hover { box-shadow: 0 8px 28px rgba(16,49,78,.12); transform: translateY(-2px); }
.pc-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px;
  font-size: .78rem; color: var(--muted); }
.pc-cat { font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--navy); }
.post-card h2 { font-size: 1.28rem; margin-bottom: 10px; line-height: 1.3; }
.post-card h2 a { color: var(--navy-deep); text-decoration: none; }
.post-card h2 a:hover { text-decoration: underline; }
.post-card p { font-size: .95rem; color: var(--muted); flex: 1; }
.pc-more { font-size: .9rem; font-weight: 600; text-decoration: none; }
.pc-more:hover { text-decoration: underline; }

.post { padding: 62px 0 72px; }
.post .wrap { max-width: 760px; }
.post-head { border-bottom: 1px solid var(--line); padding-bottom: 26px;
  margin-bottom: 34px; }
.post-head h1 { font-size: clamp(1.9rem, 4.4vw, 2.9rem); color: var(--navy-deep); }
.post-meta { font-size: .87rem; color: var(--muted); margin-top: 14px; }
.post-body { font-size: 1.06rem; line-height: 1.75; }
.post-body h2 { font-size: 1.5rem; margin: 2em 0 .6em; color: var(--navy-deep); }
.post-body h3 { font-size: 1.14rem; margin: 1.6em 0 .5em; color: var(--ink); }
.post-body p { margin: 0 0 1.25em; }
.post-body ul, .post-body ol { margin: 0 0 1.4em; padding-left: 1.4em; }
.post-body li { margin-bottom: .6em; }
.post-body blockquote {
  margin: 1.6em 0; padding: 4px 0 4px 20px; border-left: 3px solid var(--navy);
  color: var(--charcoal); font-style: italic;
}
.post-body strong { color: var(--ink); font-weight: 600; }
.postnav { display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  margin-top: 48px; padding-top: 26px; border-top: 1px solid var(--line); }
.postnav a { font-size: .93rem; font-weight: 500; text-decoration: none;
  color: var(--navy); line-height: 1.4; }
.postnav a:hover { text-decoration: underline; }

@media (max-width: 900px) {
  .post-grid, .postnav { grid-template-columns: 1fr; }
  .post { padding: 40px 0 50px; }
  .postnav a { text-align: left !important; }
}
