/* ============================================================
   TierTek IT Solutions — Stylesheet
   People before Technology · Family-Owned · 20 Years
   ============================================================ */

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

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --hero-bg:    #fcfaf6;
  --header-bg:  #f9f4ea;
  --cream:      #fcfaf6;
  --cream2:     #f3ead8;
  --navy:       #071f3d;
  --navy2:      #0b2b4f;
  --gold:       #c29036;
  --gold2:      #a86e22;
  --gold-light: #f3dfb7;
  --gold-pale:  #fdf6e8;
  --ink:        #061a34;
  --muted:      #5b6a7e;
  --line:       #ddd0b8;
  --white:      #fff;
  --shadow-sm:  0 2px 8px rgba(7,31,61,.07);
  --shadow:     0 8px 28px rgba(7,31,61,.12);
  --shadow-lg:  0 18px 48px rgba(7,31,61,.16);
  --serif:      'Playfair Display', Georgia, serif;
  --sans:       'DM Sans', Arial, Helvetica, sans-serif;
  --section-py: 84px;
  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  16px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
p { margin: 0; }
h1, h2, h3, h4 { margin: 0; line-height: 1.15; }
ul { margin: 0; padding: 0; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container { width: min(1180px, calc(100% - 72px)); margin: auto; }
.serif { font-family: var(--serif); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
}
[data-reveal].revealed { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .1s; }
[data-reveal][data-delay="2"] { transition-delay: .2s; }
[data-reveal][data-delay="3"] { transition-delay: .3s; }
[data-reveal][data-delay="4"] { transition-delay: .4s; }
[data-reveal][data-delay="5"] { transition-delay: .5s; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.header {
  height: 96px;
  background: var(--header-bg);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 200;
  display: flex;
  align-items: center;
}
.nav { display: flex; align-items: center; gap: 24px; }
.brand img { width: 238px; }
.main-nav {
  margin-left: auto;
  display: flex;
  gap: 2px;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}
.main-nav a {
  padding: 8px 13px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: background .18s, color .18s;
}
.main-nav a:hover  { background: rgba(194,144,54,.1); color: var(--gold2); }
.main-nav a.active { color: var(--gold); background: rgba(194,144,54,.08); }
.mobile-assessment { display: none; }
.mobile-toggle {
  display: none;
  margin-left: auto;
  background: transparent;
  border: 0;
  font-size: 28px;
  color: var(--navy);
  cursor: pointer;
  padding: 4px 8px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 26px;
  border-radius: 10px;
  border: 2px solid transparent;
  font-family: var(--sans);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .055em;
  font-size: 12.5px;
  white-space: nowrap;
  cursor: pointer;
  transition: background .18s, color .18s, border-color .18s, box-shadow .18s, transform .18s;
}
.header > .container > .btn { height: 46px; }

.btn.gold {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 4px 16px rgba(194,144,54,.3);
}
.btn.gold:hover {
  background: var(--gold2);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(194,144,54,.38);
}
.btn.gold:active {
  background: #8c5e1a;
  transform: translateY(1px);
  box-shadow: 0 2px 8px rgba(7,31,61,.14);
}
.btn.outline {
  border-color: var(--navy);
  color: var(--navy);
  background: transparent;
}
.btn.outline:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(7,31,61,.18);
}
.btn.outline:active {
  background: #031327;
  transform: translateY(1px);
  box-shadow: none;
}
.btn.outline-white {
  border-color: rgba(255,255,255,.55);
  color: #fff;
  background: transparent;
}
.btn.outline-white:hover {
  background: rgba(255,255,255,.1);
  border-color: #fff;
}

/* ============================================================
   EYEBROW LABEL
   ============================================================ */
.eyebrow {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 580px;
  background: var(--hero-bg);
  overflow: hidden;
  display: grid;
  align-items: center;
}
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(252,250,246,.97) 0%,
    rgba(252,250,246,.92) 30%,
    rgba(252,250,246,.55) 58%,
    rgba(252,250,246,.12) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 56%;
  max-width: 640px;
  padding: 72px 0;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(52px, 5.6vw, 78px);
  line-height: 1.07;
  color: var(--navy);
  margin-bottom: 18px;
  letter-spacing: -.015em;
}
.hero-copy {
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 28px;
}
.hero-mini {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  overflow: hidden;
  max-width: 560px;
  box-shadow: var(--shadow-sm);
}
.mini {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 18px 14px;
  text-align: center;
  border-right: 1px solid var(--line);
}
.mini:last-child { border-right: 0; }
.mini svg {
  width: 34px; height: 34px;
  fill: none; stroke: var(--gold);
  stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round;
}
.mini strong { font-size: 13px; font-weight: 700; color: var(--navy); display: block; }
.mini span   { font-size: 11px; color: var(--muted); line-height: 1.3; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.anniv-float {
  position: absolute;
  right: 52px; bottom: 44px;
  width: 176px;
  z-index: 3;
  filter: drop-shadow(0 8px 22px rgba(7,31,61,.2));
  border-radius: 16px;
  overflow: hidden;
}

/* ============================================================
   STATS BAR  (new)
   ============================================================ */
.stats-bar {
  background: var(--navy);
  padding: 22px 0;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  text-align: center;
  padding: 8px 16px;
  border-right: 1px solid rgba(255,255,255,.1);
}
.stat-item:last-child { border-right: 0; }
.stat-num {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-top: 4px;
}

/* ============================================================
   INDUSTRY TRUST STRIP
   ============================================================ */
.strip {
  background: var(--header-bg);
  padding: 26px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.strip-inner {
  display: grid;
  grid-template-columns: auto repeat(6, 1fr);
  gap: 0 6px;
  align-items: center;
}
.strip-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  padding-right: 22px;
  border-right: 1px solid var(--line);
  margin-right: 8px;
}
.industry {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  text-align: center;
  padding: 6px 4px;
  border-radius: var(--radius-sm);
  transition: color .18s, background .18s;
  cursor: default;
}
.industry:hover { background: rgba(194,144,54,.08); color: var(--navy); }
.industry svg {
  width: 30px; height: 30px;
  fill: none; stroke: var(--navy);
  stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round;
}

/* ============================================================
   GENERIC SECTIONS
   ============================================================ */
.section          { padding: var(--section-py) 0; }
.section.alt      { background: var(--cream2); }
.split-section    { padding: var(--section-py) 0; }
.section-head     { grid-column: 1/-1; max-width: 700px; margin-bottom: 40px; }
.section-head h2  {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 40px);
  color: var(--navy);
  margin-bottom: 12px;
}
.section-head p   { color: var(--muted); font-size: 16px; }

/* ============================================================
   SERVICE CARDS GRID
   ============================================================ */
.services {
  display: grid;
  grid-template-columns: 260px repeat(2, 1fr) repeat(2, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.services-intro {
  grid-column: 1;
  border-right: 1px solid var(--line);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.services-intro h2 {
  font-family: var(--serif);
  font-size: 27px;
  color: var(--navy);
  line-height: 1.2;
}
.services-intro p  { color: var(--muted); font-size: 14px; line-height: 1.6; }
.svc {
  padding: 28px 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background .2s;
}
.svc:hover    { background: rgba(7,31,61,.02); }
.svc:nth-child(n+4):not(.services-intro) { border-bottom: 0; }
.svc:last-child { border-right: 0; }
.svc svg {
  width: 46px; height: 46px;
  fill: none; stroke: var(--navy);
  stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round;
  margin-bottom: 14px;
}
.svc h3 { font-family: var(--serif); font-size: 17px; color: var(--navy); margin-bottom: 8px; }
.svc p  { font-size: 14px; color: var(--muted); margin-bottom: 12px; line-height: 1.55; }
.learn {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .02em;
  transition: letter-spacing .18s, color .18s;
}
.learn:hover { letter-spacing: .08em; color: var(--gold2); }
.gold { fill: none; stroke: var(--gold); }

/* ============================================================
   COMBO: WHY / VIDEO / SPECIALTY
   ============================================================ */
.combo-section { background: var(--cream2); padding: var(--section-py) 0; }
.combo {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.why-text {
  background: var(--white);
  padding: 52px 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.why-text h2 { font-family: var(--serif); font-size: clamp(26px, 2.5vw, 34px); color: var(--navy); }
.why-text > p { color: var(--muted); font-size: 15px; }

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
}
.check-list li::before {
  content: '';
  flex-shrink: 0;
  width: 18px; height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Ccircle cx='9' cy='9' r='9' fill='%23c29036'/%3E%3Cpath d='M5 9l3 3 5-5' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") center/contain no-repeat;
}

.story-photo {
  background: var(--navy2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 28px;
  gap: 14px;
  text-align: center;
}
.story-frame {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
}
.story-video {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  background: var(--navy);
  border: 0;
}
.story-photo h3  { font-family: var(--serif); font-size: 18px; color: #fff; }
.watch {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .07em;
  text-transform: uppercase;
  transition: color .18s, letter-spacing .18s;
}
.watch:hover { color: var(--gold-light); letter-spacing: .12em; }

.specialty {
  position: relative;
  background: var(--navy);
  overflow: hidden;
  min-height: 300px;
}
.specialty-bg {
  position: absolute; inset: 0;
  background: url('../assets/photo-dpc-consultation.png') center/cover no-repeat;
  opacity: .12;
}
.heart-cross {
  position: absolute; right: 26px; top: 26px;
  width: 50px; height: 50px;
  fill: none; stroke: var(--gold);
  stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round;
  opacity: .55;
  z-index: 1;
}
.heart-cross .accent-stroke { stroke: var(--gold); }
.specialty-inner {
  position: relative; z-index: 2;
  padding: 44px 36px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
}
.specialty-inner h2 { font-family: var(--serif); font-size: clamp(20px, 1.9vw, 28px); color: #fff; line-height: 1.2; }
.specialty-inner > p { color: rgba(255,255,255,.72); font-size: 14px; line-height: 1.65; }
.specialty-inner .check-list li { color: rgba(255,255,255,.88); }
.specialty-inner .check-list li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Ccircle cx='9' cy='9' r='9' fill='%23c29036'/%3E%3Cpath d='M5 9l3 3 5-5' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
}

/* ============================================================
   DIFFERENCE / COMPARISON
   ============================================================ */
.difference { padding: var(--section-py) 0; }
.title-rule {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}
.title-rule::before,
.title-rule::after { content: ''; flex: 1; height: 1px; background: var(--line); }
.title-rule h2 {
  font-family: var(--serif);
  font-size: clamp(24px, 2.5vw, 34px);
  color: var(--navy);
  white-space: nowrap;
}
.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 22px;
  align-items: start;
  position: relative;
}
.vs {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  background: var(--cream);
  border: 2px solid var(--line);
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 11px;
  letter-spacing: .05em;
  color: var(--muted);
  z-index: 2;
}
.compare {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
}
.compare.dark { background: var(--navy); border-color: var(--navy); }
.compare h3 { font-family: var(--serif); font-size: 20px; color: var(--navy); margin-bottom: 18px; line-height: 1.2; }
.compare.dark h3 { color: #fff; }
.compare.dark .check-list li { color: rgba(255,255,255,.88); }

.x-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.x-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
}
.x-list li::before {
  content: '✕';
  flex-shrink: 0;
  width: 18px; height: 18px;
  background: #f5e8e8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  color: #b84444;
  line-height: 18px;
  text-align: center;
}

.quote {
  background: var(--cream2);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  line-height: 1.65;
  color: var(--navy);
  position: relative;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.quote::before {
  content: '"';
  position: absolute;
  top: -4px; left: 20px;
  font-size: 80px;
  line-height: 1;
  color: var(--gold);
  opacity: .22;
  font-family: var(--serif);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.test-section { padding: var(--section-py) 0; background: var(--cream2); }
.test-title {
  font-family: var(--serif);
  font-size: clamp(24px, 2.5vw, 34px);
  color: var(--navy);
  text-align: center;
  margin-bottom: 40px;
}
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.test {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .22s, transform .22s;
}
.test:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.stars      { color: var(--gold); font-size: 16px; letter-spacing: 2px; margin-bottom: 14px; }
.test p     { font-style: italic; color: var(--muted); line-height: 1.65; font-size: 15px; margin-bottom: 16px; }
.test strong { color: var(--navy); font-size: 14px; }
.test small  { color: var(--muted); font-size: 12px; }

/* ============================================================
   CTA BAR
   ============================================================ */
.cta-wrap { background: var(--navy); padding: 44px 0; }
.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 80px;
}
.cta-left {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #fff;
}
.cta-left svg {
  width: 52px; height: 52px;
  flex-shrink: 0;
  fill: none; stroke: var(--gold);
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.cta-left h2 { font-family: var(--serif); font-size: clamp(20px, 2vw, 28px); color: #fff; margin-bottom: 4px; }
.cta-left p  { color: rgba(255,255,255,.65); font-size: 14px; }
.cta-note    { text-align: center; margin: 8px 0 0; font-size: 12px; color: rgba(255,255,255,.45); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy); color: rgba(255,255,255,.75); padding-top: 60px; }
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr auto;
  gap: 40px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo  { width: 185px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-anniv { width: 88px; border-radius: 12px; overflow: hidden; }
.footer p { font-size: 14px; line-height: 1.65; color: rgba(255,255,255,.55); margin-bottom: 6px; }
.footer p strong { color: rgba(255,255,255,.8); }
.footer h4 {
  font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer ul li a { font-size: 14px; color: rgba(255,255,255,.55); transition: color .18s; }
.footer ul li a:hover { color: var(--gold-light); }
.footer-bottom {
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,.06);
  background: rgba(0,0,0,.14);
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 12px;
  color: rgba(255,255,255,.35);
  flex-wrap: wrap;
}

/* ============================================================
   PAGE HEROES (inner pages)
   ============================================================ */
.page-hero {
  padding: 68px 0;
  background: var(--hero-bg);
  border-bottom: 1px solid var(--line);
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(36px, 4.2vw, 54px);
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.1;
}
.page-hero p  { color: var(--muted); font-size: 17px; line-height: 1.65; margin-bottom: 26px; }
.page-hero-art img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* ============================================================
   SPLIT SECTION
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 68px;
  align-items: center;
}
.split h2    { font-family: var(--serif); font-size: clamp(26px, 2.8vw, 38px); color: var(--navy); margin-bottom: 16px; }
.split > div p { color: var(--muted); line-height: 1.7; margin-bottom: 22px; }
.feature-img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }

/* ============================================================
   ICON GRID
   ============================================================ */
.icon-grid, .icon-grid.eight {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.icon-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px 20px;
  transition: box-shadow .22s, transform .22s;
}
.icon-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.icon-card svg {
  width: 44px; height: 44px;
  fill: none; stroke: var(--navy);
  stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round;
  margin-bottom: 14px;
}
.icon-card h3 { font-family: var(--serif); font-size: 17px; color: var(--navy); margin-bottom: 8px; }
.icon-card p  { font-size: 14px; color: var(--muted); line-height: 1.55; }
.tt-icon      { fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.tt-icon .accent-fill   { fill: var(--gold); stroke: none; }
.tt-icon .accent-stroke { stroke: var(--gold); }

/* ============================================================
   CONTENT CARDS
   ============================================================ */
.content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.content-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: box-shadow .2s;
}
.content-card:hover { box-shadow: var(--shadow); }
.content-card h3 { font-family: var(--serif); font-size: 17px; color: var(--navy); margin-bottom: 10px; }
.content-card p  { font-size: 14px; color: var(--muted); line-height: 1.55; }

/* ============================================================
   DPC-SPECIFIC
   ============================================================ */
.dpc-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.dpc-feature h2 { font-family: var(--serif); font-size: clamp(26px, 2.5vw, 36px); color: var(--navy); margin-bottom: 16px; }
.dpc-feature > div > p { color: var(--muted); line-height: 1.7; margin-bottom: 18px; }

.hipaa-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hipaa-badge svg {
  width: 18px; height: 18px;
  fill: none; stroke: var(--gold);
  stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round;
}

.ehr-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.ehr-tag {
  background: rgba(7,31,61,.06);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  transition: background .18s, border-color .18s;
}
.ehr-tag:hover { background: rgba(194,144,54,.1); border-color: var(--gold); }

/* Medical panel (DPC dark section) */
.medical-panel {
  position: relative;
  background: var(--navy);
  padding: var(--section-py) 0;
  overflow: hidden;
}
.medical-panel-bg {
  position: absolute; inset: 0;
  background: url('../assets/medical-panel-bg.jpg') center/cover no-repeat;
  opacity: .1;
}
.medical-panel .container { position: relative; z-index: 2; }
.medical-panel .eyebrow { color: var(--gold-light); }
.medical-panel h2 { font-family: var(--serif); font-size: clamp(28px, 3vw, 42px); color: #fff; margin-bottom: 16px; }
.medical-panel p  { color: rgba(255,255,255,.7); font-size: 16px; line-height: 1.7; max-width: 640px; margin-bottom: 28px; }
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(194,144,54,.45);
  border-radius: var(--radius-sm);
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--gold-light);
  text-transform: uppercase;
}
.trust-badge svg {
  width: 16px; height: 16px;
  fill: none; stroke: currentColor;
  stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round;
}

/* ============================================================
   PROCESS STEPS (services page)
   ============================================================ */
.process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.process::before {
  content: '';
  position: absolute;
  top: 38px; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--line), var(--gold), var(--line));
  z-index: 0;
}
.process-step {
  text-align: center;
  padding: 0 28px 36px;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  border: 3px solid var(--cream);
  box-shadow: 0 0 0 2px var(--gold);
}
.process-step h3 { font-family: var(--serif); font-size: 18px; color: var(--navy); margin-bottom: 10px; }
.process-step p  { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ============================================================
   RESOURCES PAGE
   ============================================================ */
.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.resource-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow .22s, transform .22s;
}
.resource-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.resource-card.featured { grid-column: span 2; }
.resource-card img { width: 100%; height: 200px; object-fit: cover; }
.resource-card.featured img { height: 260px; }
.resource-card > div  { padding: 22px 22px 26px; }
.resource-card span   {
  font-size: 10.5px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--gold);
}
.resource-card h3  { font-family: var(--serif); font-size: 18px; color: var(--navy); margin: 8px 0 10px; line-height: 1.3; }
.resource-card > div > p { font-size: 14px; color: var(--muted); line-height: 1.55; margin-bottom: 14px; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 44px;
  align-items: start;
}
.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 38px 34px;
  box-shadow: var(--shadow-sm);
}
.contact-form h2 { font-family: var(--serif); font-size: 28px; color: var(--navy); margin-bottom: 26px; line-height: 1.2; }
form { display: grid; gap: 16px; }
label {
  display: grid;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}
input, textarea, select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  background: var(--cream);
  transition: border-color .18s, box-shadow .18s;
  outline: none;
  appearance: none;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(194,144,54,.12);
  background: var(--white);
}
textarea { min-height: 100px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.contact-side {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  color: #fff;
}
.contact-side h3 { font-family: var(--serif); font-size: 22px; color: #fff; margin-bottom: 22px; }
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.contact-card:last-of-type { border-bottom: 0; margin-bottom: 0; padding-bottom: 0; }
.contact-card-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(194,144,54,.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-card-icon svg {
  width: 20px; height: 20px;
  fill: none; stroke: var(--gold);
  stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round;
}
.contact-card-body strong { display: block; font-size: 13px; font-weight: 700; color: rgba(255,255,255,.85); margin-bottom: 3px; text-transform: uppercase; letter-spacing: .06em; }
.contact-card-body a, .contact-card-body span { font-size: 14px; color: rgba(255,255,255,.55); transition: color .18s; display: block; }
.contact-card-body a:hover { color: var(--gold-light); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.framed-photo { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-lg); }
.framed-photo img, .framed-photo video { width: 100%; display: block; }
.caption { background: var(--navy); color: rgba(255,255,255,.6); font-size: 12px; text-align: center; padding: 9px 16px; }

/* ============================================================
   SVG ICON HELPERS
   ============================================================ */
.mini svg, .svc svg, .icon-card svg { color: var(--navy); }
.industry svg, .cta svg, .specialty .heart-cross { color: var(--gold); }
.industry svg { stroke-width: 2.4; }
.svc svg .gold, .tt-icon .gold { stroke: var(--gold); }
.cta-left svg { stroke: var(--gold); color: var(--gold); }

/* ============================================================
   SUPPORT / CHAT WIDGET
   ============================================================ */
.tt-chat-widget {
  position: fixed; right: 24px; bottom: 24px;
  z-index: 9999;
  font-family: var(--sans); color: var(--ink);
}
.tt-chat-trigger {
  display: inline-flex; align-items: center; gap: 10px;
  min-height: 56px; padding: 0 20px;
  border: 0; border-radius: 999px;
  background: linear-gradient(135deg, #cf9d42, var(--gold) 55%, #9e7130); color: #fff;
  box-shadow: 0 12px 32px rgba(188,137,57,.34);
  font-family: var(--sans);
  font-weight: 700; text-transform: uppercase; letter-spacing: .055em;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.tt-chat-trigger:hover  { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(188,137,57,.42); background: linear-gradient(135deg, #c08c30, #a67a28 60%, #8a6224); }
.tt-chat-trigger:active { transform: translateY(1px); }
.tt-chat-trigger-icon {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.22);
  display: grid; place-items: center;
  color: #fff;
  flex: 0 0 auto;
}
.tt-chat-trigger svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.tt-chat-panel {
  position: absolute; right: 0; bottom: 68px;
  width: min(390px, calc(100vw - 32px));
  background: #fff;
  border-radius: 18px; overflow: hidden;
  border: 1px solid rgba(7,31,61,.1);
  box-shadow: 0 24px 60px rgba(7,31,61,.26);
  opacity: 0; transform: translateY(16px) scale(.98);
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
}
.tt-chat-widget.open .tt-chat-panel { opacity: 1; transform: none; pointer-events: auto; }
.tt-chat-head {
  position: relative; min-height: 164px;
  padding: 24px 24px 28px;
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  color: #fff;
  display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; gap: 8px;
}
.tt-chat-head::after {
  content: ''; position: absolute; right: -44px; top: -44px;
  width: 155px; height: 155px; border-radius: 50%;
  background: rgba(194,144,54,.18);
}
.tt-chat-head img   { width: 52px; height: 52px; object-fit: contain; border-radius: 12px; background: rgba(255,255,255,.1); padding: 8px; position: relative; z-index: 1; }
.tt-chat-head strong { font-family: var(--serif); display: block; font-size: 38px; line-height: 1; margin: 0; position: relative; z-index: 1; }
.tt-chat-head span  { display: block; font-size: 16px; font-weight: 600; color: var(--gold-light); position: relative; z-index: 1; }
.tt-chat-close {
  position: absolute; right: 16px; top: 16px;
  width: 34px; height: 34px; border-radius: 50%;
  border: 0; background: rgba(255,255,255,.12); color: #fff;
  font-size: 20px; line-height: 1; cursor: pointer; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  transition: background .18s;
}
.tt-chat-close:hover { background: rgba(255,255,255,.22); }
.tt-chat-body { background: var(--cream); padding: 0 20px 20px; margin-top: -18px; position: relative; z-index: 2; }
.tt-chat-card {
  display: flex; align-items: center; gap: 14px; width: 100%;
  background: #fff; border: 1px solid rgba(7,31,61,.07);
  border-radius: 14px; padding: 15px;
  text-decoration: none; color: var(--ink);
  box-shadow: 0 3px 12px rgba(7,31,61,.07);
  margin-bottom: 11px;
  transition: border-color .18s, box-shadow .18s, transform .18s, background .18s;
}
.tt-message-card { align-items: flex-start; }
.tt-message-card strong { font-size: 15px; }
.tt-message-card p { margin: 3px 0 0; color: var(--muted); font-size: 13.5px; line-height: 1.3; }
.tt-avatar, .tt-action-icon {
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--gold-pale); color: var(--gold);
  flex: 0 0 auto;
}
.tt-avatar svg, .tt-action-icon svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.tt-chat-action { font-weight: 700; letter-spacing: .02em; min-height: 64px; }
.tt-chat-action:hover { border-color: var(--gold); box-shadow: 0 6px 18px rgba(194,144,54,.14); transform: translateY(-1px); }
.tt-chat-action:active { background: #f5eedd; transform: translateY(1px); }
.tt-chat-action b { margin-left: auto; font-size: 22px; color: var(--gold); }
.tt-chat-foot {
  display: flex; justify-content: space-between; gap: 12px;
  background: #fff; padding: 12px 20px;
  border-top: 1px solid rgba(7,31,61,.07);
  font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .055em;
}
.tt-chat-foot a { color: var(--navy); transition: color .18s; }
.tt-chat-foot a:hover { color: var(--gold); }

/* ============================================================
   ICON SPRITE SHEETS
   Sheet 1 (icons-1.png) — 4 col × 2 row — Service icons
     Row 0: Help Desk | 24/7 Monitoring | Cybersecurity | Backup & Recovery
     Row 1: Cloud M365 | Vendor Mgmt    | vCIO Strategy | Compliance
   Sheet 2 (icons-2.png) — 5 col × 2 row — Identity / Industry
     Row 0: Family-Owned | Direct Access | Dependable | Healthcare | Medical Practices
     Row 1: Prof Services | Legal | Manufacturing | Local Business | Managed IT
   Sheet 3 (icons-3.png) — 5 col × 2 row — Tech / Device
     Row 0: VoIP | Cybersecurity | DPC IT | Networks | Computers
     Row 1: Tablets | Mobile | Printers | Scanners | Support
   ============================================================ */
.tt-sprite {
  display: block;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

/* — Sheet 1 ————————————————————————— */
.sp1 { background-image: url('../assets/icons-1.png'); background-size: 400% 200%; }
.sp1-helpdesk      { background-position:   0%      0%; }
.sp1-monitoring    { background-position:  33.33%   0%; }
.sp1-cybersecurity { background-position:  66.67%   0%; }
.sp1-backup        { background-position: 100%      0%; }
.sp1-cloud365      { background-position:   0%    100%; }
.sp1-vendor        { background-position:  33.33% 100%; }
.sp1-vcio          { background-position:  66.67% 100%; }
.sp1-compliance    { background-position: 100%    100%; }

/* — Sheet 2 ————————————————————————— */
.sp2 { background-image: url('../assets/icons-2.png'); background-size: 500% 200%; }
.sp2-family   { background-position:   0%   0%; }
.sp2-access   { background-position:  25%   0%; }
.sp2-depend   { background-position:  50%   0%; }
.sp2-health   { background-position:  75%   0%; }
.sp2-medical  { background-position: 100%   0%; }
.sp2-profserv { background-position:   0% 100%; }
.sp2-legal    { background-position:  25% 100%; }
.sp2-mfg      { background-position:  50% 100%; }
.sp2-localbiz { background-position:  75% 100%; }
.sp2-managed  { background-position: 100% 100%; }

/* — Sheet 3 ————————————————————————— */
.sp3 { background-image: url('../assets/icons-3.png'); background-size: 500% 200%; }
.sp3-voip    { background-position:   0%   0%; }
.sp3-cyber   { background-position:  25%   0%; }
.sp3-dpc     { background-position:  50%   0%; }
.sp3-network { background-position:  75%   0%; }
.sp3-comp    { background-position: 100%   0%; }
.sp3-tablet  { background-position:   0% 100%; }
.sp3-mobile  { background-position:  25% 100%; }
.sp3-printer { background-position:  50% 100%; }
.sp3-scanner { background-position:  75% 100%; }
.sp3-support { background-position: 100% 100%; }

/* — Sizing by context ——————————————— */
.mini     .tt-sprite { width: 52px;  height: 52px;  }
.industry .tt-sprite { width: 40px;  height: 40px;  }
.svc      .tt-sprite { width: 68px;  height: 68px;  margin-bottom: 14px; }
.icon-card .tt-sprite{ width: 76px;  height: 76px;  margin-bottom: 14px; }

/* ============================================================
   RESPONSIVE — 1080px
   ============================================================ */
@media (max-width: 1080px) {
  .main-nav { gap: 1px; }
  .brand img { width: 208px; }
  .container { width: min(100% - 48px, 1180px); }
  .services { grid-template-columns: 1fr 1fr; }
  .services-intro { grid-column: 1/-1; border-right: 0; border-bottom: 1px solid var(--line); flex-direction: row; align-items: center; flex-wrap: wrap; padding: 24px 28px; gap: 14px; }
  .svc:nth-of-type(odd) { border-right: 1px solid var(--line); }
  .combo  { grid-template-columns: 1fr 1fr; }
  .specialty { grid-column: 1/-1; }
  .specialty-inner { width: 60%; }
  .strip-inner { grid-template-columns: auto repeat(3, 1fr); row-gap: 14px; }
  .icon-grid.eight { grid-template-columns: repeat(3, 1fr); }
  .footer-main { grid-template-columns: 1.6fr 1fr 1fr 1fr; }
  .footer-anniv { display: none; }
  .diff-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  .vs { display: none; }
  .diff-grid .quote { grid-column: 1/-1; }
  .test-grid { grid-template-columns: 1fr 1fr; }
  .test:last-child { grid-column: 1/-1; }
  .page-hero-grid { grid-template-columns: 1fr 360px; gap: 40px; }
}

/* ============================================================
   RESPONSIVE — 1024px  (hamburger — covers iPad + phone)
   ============================================================ */
@media (max-width: 1024px) {
  .mobile-toggle { display: block; }
  .main-nav, .header > .container > .btn { display: none; }
  .main-nav.open {
    display: flex;
    position: absolute; top: 96px; left: 0; right: 0;
    background: var(--header-bg);
    flex-direction: column; gap: 0;
    padding: 10px 24px 22px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 38px rgba(6,31,61,.13);
    z-index: 190;
  }
  .main-nav.open a { padding: 12px; border-radius: 0; border-bottom: 1px solid rgba(6,31,61,.07); }
  .main-nav.open .mobile-assessment {
    display: inline-flex; align-items: center; justify-content: center;
    margin-top: 14px; padding: 0 18px;
    min-height: 46px; background: var(--gold); color: #fff;
    text-transform: uppercase; font-weight: 700; font-size: 13px;
    border-radius: 10px; white-space: nowrap;
    transition: background .18s;
  }
  .main-nav.open .mobile-assessment:hover { background: var(--gold2); }
}

/* ============================================================
   RESPONSIVE — 768px  (layout stacking — phones)
   ============================================================ */
@media (max-width: 768px) {
  .header { height: 80px; }
  .brand img { width: 186px; }
  .main-nav.open { top: 80px; }

  /* Hero — mobile: full-bleed video with readable text overlay */
  .hero-overlay { background: linear-gradient(180deg, rgba(252,250,246,.75) 0%, rgba(252,250,246,.92) 55%, rgba(252,250,246,.98) 100%); }
  .hero { min-height: 480px; }
  .hero-content { width: 100%; max-width: 100%; padding: 56px 0 60px; }
  .hero h1 { font-size: clamp(44px, 9vw, 62px); }
  .hero-mini { grid-template-columns: 1fr; max-width: 100%; }
  .mini { flex-direction: row; text-align: left; border-right: 0; border-bottom: 1px solid var(--line); padding: 12px 0; gap: 12px; }
  .mini:last-child { border-bottom: 0; }
  .anniv-float { display: none; }
  .hero-actions { flex-direction: column; max-width: 340px; }
  .hero-actions .btn { width: 100%; min-width: 0; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2) { border-right: 0; }
  .stat-item:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.1); }
  .section, .split-section, .combo-section { padding: 52px 0; }
  .page-hero { padding: 44px 0; }
  .strip-title { grid-column: 1/-1; padding-right: 0; border-right: 0; text-align: center; margin-bottom: 8px; }
  .page-hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .page-hero-art { order: -1; }
  .combo { grid-template-columns: 1fr; }
  .services { grid-template-columns: 1fr; }
  .services-intro { grid-column: 1; border-bottom: 1px solid var(--line); border-right: 0; }
  .svc { border-right: 0 !important; }
  .specialty-inner { width: 100%; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .dpc-feature { grid-template-columns: 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; }
  .test-grid { grid-template-columns: 1fr; }
  .test:last-child { grid-column: auto; }
  .process { grid-template-columns: 1fr; gap: 32px; }
  .process::before { display: none; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .content-grid { grid-template-columns: 1fr 1fr; }
  .resource-grid { grid-template-columns: 1fr; }
  .resource-card.featured { grid-column: 1; }
  .form-row { grid-template-columns: 1fr; }
  .cta { flex-direction: column; align-items: flex-start; padding: 32px 0; min-height: auto; }
  .icon-grid, .icon-grid.eight { grid-template-columns: 1fr 1fr; }
  .trust-badges { flex-direction: column; }
}

/* ============================================================
   RESPONSIVE — 480px
   ============================================================ */
@media (max-width: 480px) {
  .container { width: min(100% - 30px, 1180px); }
  .header { height: 68px; }
  .brand img { width: 168px; }
  .main-nav.open { top: 68px; }
  .hero-content { padding-bottom: 56px; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .strip-inner { grid-template-columns: repeat(2, 1fr); }
  .icon-grid, .icon-grid.eight { grid-template-columns: 1fr; }
  .content-grid { grid-template-columns: 1fr; }
  .test-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .contact-form { padding: 24px 20px; }
  .tt-chat-widget { right: 14px; bottom: 14px; }
  .tt-chat-trigger { min-height: 50px; padding: 0 14px; }
  .tt-chat-trigger-text { display: none; }
  .tt-chat-panel { bottom: 64px; width: calc(100vw - 28px); }
  .tt-chat-head { min-height: 130px; }
  .tt-chat-head strong { font-size: 28px; }
  .tt-chat-body { padding: 0 14px 16px; }
  .tt-chat-card { padding: 13px; }
  .tt-chat-foot { padding: 10px 14px; }
}

/* ── Form submission status + spam honeypot ── */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.form-status {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.55;
}
.form-status--ok {
  background: #f0f6ef;
  border: 1px solid #b9d4b2;
  color: #23492c;
}
.form-status--error {
  background: #fdf2f2;
  border: 1px solid #e6bcbc;
  color: #7d2727;
}
