/* ============================================================
   Ming Gosier · Fulfillment Coaching & Advisory
   Editorial Red System — shared stylesheet (v2 redesign, 2026-08)
   ============================================================ */

:root {
  --brand-red:      #E83A2A;
  --brand-red-deep: #C7301F;
  --ink:            #1A1A1A;
  --ink-soft:       #3A3A3A;
  --ink-muted:      #6A6A6A;
  --paper:          #FFFFFF;
  --paper-warm:     #FDF8F4;
  --rule:           #E8E2DC;
  --page-warm:      #EEE7DF;
  --accent-gold:    #B58A3E;

  --font-heading:   'Playfair Display', Georgia, serif;
  --font-body:      'Inter', -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--page-warm);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* The whole site sits on one floating "sheet" — print object on a warm desk */
.sheet {
  max-width: 1140px;
  margin: 0 auto;
  background: var(--paper);
  box-shadow: 0 18px 60px rgba(0,0,0,0.09);
}

.wrap { max-width: 980px; margin: 0 auto; padding: 0 36px; }

/* ---------- Shared editorial components ---------- */

.eyebrow {
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--brand-red);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -0.5px;
  line-height: 1.12;
  color: var(--ink);
}

.section-sub {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(16px, 2vw, 19px);
  color: var(--ink-soft);
  margin-top: 12px;
  max-width: 640px;
}

.text-red { color: var(--brand-red); }
.nowrap { white-space: nowrap; }

.divider {
  width: 56px;
  height: 2px;
  background: var(--brand-red);
  margin: 24px 0 28px;
}
.divider.centered { margin-left: auto; margin-right: auto; }

section { padding: 84px 0; }

.btn {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 28px;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.btn-red { background: var(--brand-red); color: #fff; }
.btn-red:hover { background: var(--brand-red-deep); }
.btn-outline { border: 1px solid var(--ink); color: var(--ink); }
.btn-outline:hover { border-color: var(--brand-red); color: var(--brand-red); }
.btn-white { background: #fff; color: var(--brand-red); }
.btn-white:hover { background: var(--paper-warm); }
.btn-outline-white { border: 1px solid rgba(255,255,255,0.7); color: #fff; }
.btn-outline-white:hover { background: rgba(255,255,255,0.12); }

/* ---------- Masthead header ---------- */

.utility-bar {
  background: var(--paper-warm);
  border-bottom: 1px solid var(--rule);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.utility-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 9px 36px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.utility-bar a { color: var(--brand-red); text-decoration: none; }
.utility-bar a:hover { color: var(--brand-red-deep); }

.masthead {
  background: var(--paper);
  text-align: center;
  padding: 34px 24px 26px;
}
.masthead .m-name {
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--brand-red);
  margin-bottom: 8px;
}
.masthead .m-brand {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(26px, 4vw, 38px);
  letter-spacing: -0.4px;
  line-height: 1.1;
  color: var(--ink);
}
.masthead .m-brand a { color: inherit; text-decoration: none; }
.masthead .m-tag {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-muted);
  margin-top: 8px;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.nav-links {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.nav-links a {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
  padding: 15px 2px;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover { color: var(--brand-red); }
.nav-links a.active { color: var(--brand-red); border-bottom-color: var(--brand-red); }
.nav-links a.nav-cta {
  background: var(--brand-red);
  color: #fff;
  padding: 10px 18px;
  margin: 6px 0;
  border-bottom: none;
}
.nav-links a.nav-cta:hover { background: var(--brand-red-deep); }

/* ---------- Hero ---------- */

.hero { background: var(--paper); padding: 96px 0 84px; overflow: hidden; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 44px;
  align-items: center;
}

.hero-photo { justify-self: end; align-self: center; max-width: 300px; }
.hero-photo .hero-portrait {
  display: block;
  width: 100%;
  height: auto;
  -webkit-mask-image: radial-gradient(ellipse 78% 78% at 50% 44%, black 58%, transparent 99%);
  mask-image: radial-gradient(ellipse 78% 78% at 50% 44%, black 58%, transparent 99%);
}

.hero-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 16px;
}
.hero-badges img { width: 66px; height: 66px; }
.hero-badges img:first-child { width: 78px; height: 78px; }

/* Stacked headline — poster treatment */
.hero-title { display: flex; flex-direction: column; align-items: flex-start; }
.hero-title .ht-top,
.hero-title .ht-bottom {
  font-family: 'Oswald', var(--font-body);
  font-weight: 600;
  font-size: clamp(42px, 5.8vw, 70px);
  line-height: 1.02;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink);
}
.hero-title .ht-bottom { color: var(--brand-red); }
.hero-title .ht-mid {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 12px 0 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(12px, 1.3vw, 15px);
  letter-spacing: 8px;
  text-transform: uppercase;
  color: var(--ink);
}
.hero-title .ht-mid i {
  display: block;
  width: 40px;
  height: 2px;
  background: var(--brand-red);
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 24px; }
  .hero-photo { justify-self: center; order: -1; max-width: 250px; }
  .hero-badges img { width: 54px; height: 54px; }
}

.hero h1 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(38px, 5.6vw, 66px);
  line-height: 1.06;
  letter-spacing: -0.5px;
  max-width: 820px;
  color: var(--ink);
}

.hero p.lede {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(17px, 2.2vw, 21px);
  line-height: 1.55;
  max-width: 620px;
  color: var(--ink-soft);
  margin-top: 26px;
}

.hero-close {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(17px, 2.2vw, 20px);
  line-height: 1.45;
  color: var(--ink);
  margin-top: 28px;
}

.hero-ctas { margin-top: 36px; display: flex; gap: 16px; flex-wrap: wrap; }

.hero-note {
  margin-top: 24px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-muted);
}

/* ---------- Formula band ---------- */

.formula-band {
  background: var(--paper-warm);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 64px 0;
  text-align: center;
}
.formula-band .formula {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(18px, 2.9vw, 29px);
  line-height: 1.3;
  letter-spacing: -0.3px;
  color: var(--ink);
  white-space: nowrap;
}

@media (max-width: 720px) {
  .formula-band .formula { white-space: normal; font-size: clamp(20px, 4.6vw, 26px); }
}
.formula-band .formula .red { color: var(--brand-red); }
.formula-band .formula-note {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--ink-soft);
  margin-top: 16px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Story / problem ---------- */

.story-body {
  max-width: 660px;
  font-size: 16px;
  color: var(--ink-soft);
}
.story-body p + p { margin-top: 18px; }
.story-body strong { color: var(--ink); font-weight: 600; }

/* ---------- Services ---------- */

.services { background: var(--paper-warm); }

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-top: 48px;
}

.service-card {
  background: var(--paper);
  border-top: 3px solid var(--brand-red);
  padding: 34px 32px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.service-card .s-num {
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brand-red);
  margin-bottom: 14px;
}
.service-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 23px;
  line-height: 1.2;
  margin-bottom: 8px;
}
.service-card .s-tag {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 15px;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.service-card p.s-body { font-size: 14.5px; color: var(--ink-soft); margin-bottom: 14px; }
.service-card ul { list-style: none; }
.service-card ul li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--ink-soft);
}
.service-card ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--brand-red);
}
.service-card ul li strong { color: var(--ink); font-weight: 600; }

/* ---------- Program ---------- */

.program-panel {
  margin-top: 48px;
  background: var(--paper-warm);
  border-left: 2px solid var(--brand-red);
  padding: 42px 40px;
}
.program-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin-top: 26px;
}
.program-cols h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  color: var(--brand-red);
  margin-bottom: 10px;
}
.program-cols p { font-size: 14.5px; color: var(--ink-soft); }

.leave-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 36px;
  list-style: none;
  margin-top: 22px;
}
.leave-grid li {
  position: relative;
  padding-left: 18px;
  font-size: 14.5px;
  color: var(--ink-soft);
}
.leave-grid li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--brand-red);
}

/* ---------- Steps ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.step { border-top: 1px solid var(--rule); padding-top: 22px; }
.step-num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 42px;
  color: var(--brand-red);
  line-height: 1;
  margin-bottom: 12px;
}
.step h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 19px;
  margin-bottom: 8px;
}
.step p { font-size: 14px; color: var(--ink-soft); }

/* ---------- About ---------- */

.about { background: var(--paper-warm); }

.about-grid {
  display: grid;
  grid-template-columns: 2.1fr 1fr;
  gap: 48px;
}
.about-main p {
  font-size: 15.5px;
  color: var(--ink-soft);
  margin-bottom: 18px;
  max-width: 600px;
}
.about-main strong { color: var(--ink); font-weight: 600; }

.about-close {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 500;
  font-size: 17.5px;
  color: var(--ink);
  border-top: 1px solid var(--rule);
  padding-top: 18px;
  margin-top: 26px;
  max-width: 600px;
}

.about-side { align-self: start; }

.about-figure {
  margin: 0 0 24px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.10);
  background: var(--paper);
}
.about-figure img { display: block; width: 100%; height: auto; }

.side-panel {
  background: var(--paper);
  border-left: 2px solid var(--brand-red);
  padding: 30px 26px;
  align-self: start;
}
.side-block { margin-bottom: 22px; }
.side-block:last-child { margin-bottom: 0; }
.side-label {
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--brand-red);
  margin-bottom: 7px;
}
.side-value { font-size: 13.5px; color: var(--ink); line-height: 1.55; }
.side-value strong { font-weight: 600; }

/* ---------- Desk (newsletter + notes teasers) ---------- */

.desk-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-top: 48px;
}

.desk-card {
  border: 1px solid var(--rule);
  border-top: 3px solid var(--brand-red);
  padding: 34px 32px;
  background: var(--paper);
  display: flex;
  flex-direction: column;
}
.desk-card .d-kicker {
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 14px;
}
.desk-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 6px;
}
.desk-card .d-meta {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 16px;
}
.desk-card p.d-body { font-size: 14.5px; color: var(--ink-soft); margin-bottom: 22px; }
.desk-card .d-link {
  margin-top: auto;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand-red);
  text-decoration: none;
}
.desk-card .d-link:hover { color: var(--brand-red-deep); }

/* ---------- Portfolio ---------- */

.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 22px;
  margin-top: 48px;
}
.p-card {
  border: 1px solid var(--rule);
  border-top: 3px solid var(--brand-red);
  padding: 28px 26px;
  background: var(--paper);
  display: flex;
  flex-direction: column;
}
.p-card .p-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 12px;
}
.p-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.25;
  margin-bottom: 8px;
}
.p-card p { font-size: 13.5px; color: var(--ink-soft); }
.p-card .d-link {
  margin-top: 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand-red);
  text-decoration: none;
}
.p-card .d-link:hover { color: var(--brand-red-deep); }

/* ---------- Pull quote & testimonials ---------- */

.quote-band { background: var(--paper-warm); padding: 90px 0; }

.pull-quote {
  position: relative;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 38px 24px;
  max-width: 740px;
  margin: 0 auto;
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(19px, 2.6vw, 25px);
  line-height: 1.45;
  color: var(--ink);
  text-align: center;
}
.pull-quote::before {
  content: '\201C';
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--paper-warm);
  padding: 0 14px;
  font-family: var(--font-heading);
  font-size: 62px;
  color: var(--brand-red);
  line-height: 1;
}
.pull-quote cite {
  display: block;
  margin-top: 18px;
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.t-card { border-top: 1px solid var(--rule); padding-top: 24px; }
.t-card blockquote {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 16px;
}
.t-card .t-name {
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand-red);
}
.t-card .t-role { font-size: 12px; color: var(--ink-muted); margin-top: 3px; }

/* ---------- FAQ ---------- */

.faq-list { max-width: 760px; margin: 42px auto 0; }
.faq-item { border-bottom: 1px solid var(--rule); }
.faq-item:first-child { border-top: 1px solid var(--rule); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 20px 4px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 26px;
  color: var(--brand-red);
  flex-shrink: 0;
  line-height: 1;
}
.faq-item[open] summary::after { content: '\2212'; }
.faq-item .faq-a {
  padding: 0 4px 22px;
  font-size: 14.5px;
  color: var(--ink-soft);
  max-width: 680px;
}
.faq-item .faq-a p + p { margin-top: 12px; }

/* ---------- Contact ---------- */

.contact {
  background: var(--brand-red);
  color: #fff;
  text-align: center;
  padding: 96px 0;
}
.contact .eyebrow { color: rgba(255,255,255,0.85); }
.contact h2 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(32px, 5vw, 50px);
  letter-spacing: -0.5px;
  line-height: 1.1;
}
.contact .section-sub { color: rgba(255,255,255,0.92); margin: 16px auto 0; }
.contact .divider { background: #fff; }

.calendly-shell {
  max-width: 840px;
  margin: 44px auto 0;
  background: var(--paper);
  box-shadow: 0 18px 50px rgba(0,0,0,0.18);
}

.contact-details {
  margin-top: 38px;
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  font-size: 13px;
  letter-spacing: 1px;
}
.contact-details a { color: #fff; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.5); padding-bottom: 2px; }
.contact-details .label {
  display: block;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 6px;
}

/* ---------- Footer ---------- */

footer { background: var(--paper); padding: 52px 0 42px; border-top: 1px solid var(--rule); }

.footer-grid { display: flex; justify-content: space-between; gap: 32px; flex-wrap: wrap; }

.footer-brand span {
  display: block;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brand-red);
  margin-bottom: 5px;
}
.footer-brand {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 21px;
  line-height: 1.15;
}

.footer-links { display: flex; gap: 40px; flex-wrap: wrap; }
.footer-links div { min-width: 150px; }
.footer-links .label {
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--brand-red);
  margin-bottom: 10px;
}
.footer-links a {
  display: block;
  font-size: 13px;
  color: var(--ink-soft);
  text-decoration: none;
  margin-bottom: 7px;
}
.footer-links a:hover { color: var(--brand-red); }

.footer-fine {
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid var(--rule);
  font-size: 11px;
  line-height: 1.7;
  color: var(--ink-muted);
  letter-spacing: 0.3px;
}

/* ---------- Page headers (interior pages) ---------- */

.page-hero {
  background: var(--paper);
  padding: 80px 0 64px;
  text-align: center;
}
.page-hero .section-sub { margin-left: auto; margin-right: auto; }

/* ---------- Newsletter page ---------- */

.issue-list { max-width: 760px; margin: 0 auto; }

.issue-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  border: 1px solid var(--rule);
  padding: 28px 30px;
  margin-bottom: 18px;
  background: var(--paper);
}
.issue-card.latest { border-top: 3px solid var(--brand-red); background: var(--paper-warm); }
.issue-card .i-no {
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brand-red);
  margin-bottom: 8px;
}
.issue-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 21px;
  line-height: 1.25;
}
.issue-card .i-date { font-size: 12px; color: var(--ink-muted); margin-top: 5px; }

.newsletter-about {
  max-width: 660px;
  margin: 0 auto 52px;
  text-align: center;
  font-size: 15.5px;
  color: var(--ink-soft);
}

/* ---------- Notes page ---------- */

.note {
  max-width: 720px;
  margin: 0 auto 72px;
  border-top: 1px solid var(--rule);
  padding-top: 40px;
}
.note:first-of-type { border-top: none; padding-top: 0; }

.note .n-date {
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brand-red);
  margin-bottom: 12px;
}
.note h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.15;
  letter-spacing: -0.3px;
  margin-bottom: 18px;
}

.note .n-thought {
  background: var(--paper-warm);
  border-left: 2px solid var(--brand-red);
  padding: 20px 24px;
  margin-bottom: 26px;
}
.note .n-thought .n-label {
  font-weight: 700;
  font-size: 9.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--brand-red);
  margin-bottom: 7px;
}
.note .n-thought p {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink-soft);
}

.note .n-body { font-size: 15px; color: var(--ink-soft); }
.note .n-body p + p { margin-top: 14px; }
.note .n-body strong { color: var(--ink); font-weight: 600; }

.note .n-link {
  display: inline-block;
  margin-top: 22px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand-red);
  text-decoration: none;
}
.note .n-link:hover { color: var(--brand-red-deep); }

/* ---------- Responsive ---------- */

@media (max-width: 1020px) {
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .service-grid, .desk-grid, .testimonial-grid, .steps,
  .program-cols, .leave-grid, .about-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  section { padding: 60px 0; }
  .hero { padding: 68px 0 60px; }
  .wrap { padding: 0 24px; }
  .utility-inner { justify-content: center; text-align: center; }
}

@media (max-width: 560px) {
  .nav-links { gap: 14px; }
  .nav-links a { font-size: 10.5px; letter-spacing: 1.5px; }
  .issue-card { padding: 22px; }
}
