:root {
  --navy: #102923;
  --navy-2: #1b3932;
  --blue: #ad7809;
  --blue-soft: #f1e8d3;
  --gold: #ad7809;
  --gold-2: #d9bd7d;
  --ink: #1d2724;
  --muted: #65706c;
  --line: #dcd8cf;
  --soft: #f5f2eb;
  --white: #fffefa;
  --shadow: 0 22px 60px rgba(16, 41, 35, 0.11);
  --font: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display: "Newsreader", Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
a { color: inherit; }

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow { width: min(860px, calc(100% - 40px)); }

.section-pad { padding: 92px 0; }
.bg-white { background: var(--white); }
.bg-soft { background: var(--soft); }
.bg-navy { background: var(--navy); color: var(--white); }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(230,234,240,0.88);
}

.nav {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--navy);
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 1.25rem;
}

.brand img { width: 38px; height: 38px; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-menu a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 700;
}

.nav-menu a:hover,
.nav-menu a.active { color: var(--navy); }

.nav-button {
  background: var(--navy);
  color: var(--white) !important;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(7,23,42,0.18);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
}

.page { display: none; }
.page.active { display: block; }

.hero {
  min-height: 100vh;
  padding-top: 142px;
  display: flex;
  align-items: center;
  position: relative;
  background:
    radial-gradient(circle at 85% 25%, rgba(31,94,255,0.12), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #f4f7fb 100%);
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  border-radius: 999px;
  filter: blur(0px);
  opacity: .9;
}
.hero-shape-one {
  width: 420px;
  height: 420px;
  background: rgba(201,164,100,0.16);
  right: -150px;
  top: 150px;
}
.hero-shape-two {
  width: 260px;
  height: 260px;
  background: rgba(31,94,255,0.10);
  left: -110px;
  bottom: 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  gap: 54px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .76rem;
  font-weight: 800;
}

h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  font-family: var(--display);
  letter-spacing: -0.045em;
  line-height: 1.03;
}
h1 { font-size: clamp(3rem, 7vw, 5.8rem); margin-bottom: 22px; }
h2 { font-size: clamp(2.1rem, 4.6vw, 4rem); margin-bottom: 18px; }
h3 { font-size: 1.25rem; line-height: 1.2; margin-bottom: 10px; }

.hero-lead, .large-copy {
  color: var(--muted);
  font-size: 1.12rem;
  max-width: 660px;
}
.light-copy { color: rgba(255,255,255,.72); }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 28px;
}

.btn {
  display: inline-flex;
  border: 0;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 18px 40px rgba(31,94,255,0.25);
}
.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border: 1px solid var(--line);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.trust-row span {
  background: rgba(255,255,255,.78);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--muted);
  font-size: .86rem;
  font-weight: 700;
}

.hero-visual { position: relative; min-height: 520px; }
.dashboard-card {
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(230,234,240,.9);
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.main-dashboard {
  padding: 20px;
  min-height: 420px;
  transform: rotate(1deg);
}
.dashboard-top {
  display: flex;
  gap: 7px;
  align-items: center;
  color: var(--muted);
  padding-bottom: 20px;
}
.dashboard-top strong { margin-left: auto; color: var(--navy); }
.dot { width: 10px; height: 10px; background: var(--line); border-radius: 50%; }
.metric-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.metric-strip div {
  background: var(--soft);
  border-radius: 18px;
  padding: 16px;
}
.metric-strip strong { display: block; color: var(--navy); }
.metric-strip span { color: var(--muted); font-size: .82rem; }
.chart-bars {
  height: 170px;
  display: flex;
  align-items: flex-end;
  gap: 14px;
  margin: 34px 6px 22px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
}
.chart-bars span {
  flex: 1;
  min-width: 26px;
  border-radius: 14px 14px 0 0;
  background: linear-gradient(180deg, var(--blue), #8ba7ff);
}
.mock-notification {
  background: var(--navy);
  color: var(--white);
  border-radius: 18px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}
.pulse {
  width: 12px; height: 12px; border-radius: 50%;
  background: #54d887;
  box-shadow: 0 0 0 8px rgba(84,216,135,.14);
}
.floating-card {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(13,34,59,.16);
  border-radius: 20px;
  padding: 16px;
  max-width: 210px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.floating-card p { margin: 0; color: var(--muted); font-weight: 700; font-size: .9rem; }
.floating-one { left: -24px; top: 70px; }
.floating-two { right: -10px; bottom: 56px; }
.icon-bubble, .tile-icon {
  width: 42px; height: 42px; border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--blue-soft); color: var(--blue);
  font-weight: 900;
  flex: 0 0 auto;
}

.split-grid, .testimonial-grid, .contact-grid, .web-showcase {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 60px;
  align-items: start;
}
.mini-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}
.mini-proof-grid div {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px;
}
.mini-proof-grid strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
  color: var(--navy);
}
.mini-proof-grid span { color: var(--muted); font-size: .86rem; }

.section-heading {
  max-width: 820px;
  margin-bottom: 42px;
}
.section-heading.light h2, .section-heading.light p { color: var(--white); }
.section-copy { color: var(--muted); font-size: 1.05rem; max-width: 760px; }

.problem-solution {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 22px;
  align-items: stretch;
}
.problem-card, .solution-card {
  border-radius: 26px;
  padding: 32px;
  border: 1px solid var(--line);
  background: var(--white);
}
.solution-card {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  box-shadow: var(--shadow);
}
.problem-card ul, .solution-card ul, .package-card ul, .paid-card ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.problem-card li, .solution-card li, .package-card li, .paid-card li {
  position: relative;
  padding-left: 24px;
  margin: 12px 0;
  color: var(--muted);
}
.solution-card li { color: rgba(255,255,255,.72); }
.problem-card li::before, .solution-card li::before, .package-card li::before, .paid-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 900;
}
.solution-arrow {
  align-self: center;
  color: var(--gold);
  font-size: 2rem;
  font-weight: 900;
}

.service-cards, .benefit-grid, .package-grid, .paid-grid, .web-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-cards { grid-template-columns: repeat(auto-fit, minmax(205px, 1fr)); }
.print-tile { background: linear-gradient(145deg, rgba(201,164,100,.18), rgba(255,255,255,.06)); }
.service-tile, .benefit-grid > div, .package-card, .paid-card, .web-services-grid article {
  background: var(--white);
  color: var(--ink);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 26px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(7,23,42,.08);
}
.service-tile { background: rgba(255,255,255,.06); color: var(--white); }
.service-tile p { color: rgba(255,255,255,.66); }
.service-tile button {
  margin-top: 18px;
  background: transparent;
  border: 0;
  color: var(--gold);
  font-weight: 900;
  padding: 0;
}
.service-tile.highlight { background: var(--white); color: var(--ink); }
.service-tile.highlight p { color: var(--muted); }

.process-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.process-step {
  padding: 28px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 24px;
  position: relative;
}
.process-step span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--navy);
  color: var(--white);
  font-weight: 900;
  margin-bottom: 18px;
}
.process-step p, .benefit-grid p, .web-services-grid p, .paid-card p, .package-card p { color: var(--muted); }

.testimonial-stack {
  display: grid;
  gap: 18px;
}
blockquote {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 5px solid var(--gold);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 14px 36px rgba(13,34,59,.08);
}
blockquote p { color: var(--ink); font-size: 1.02rem; }
cite { color: var(--gold); font-style: normal; font-weight: 900; }

.faq-grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 60px;
}
.muted { color: var(--muted); }
.faq-list { display: grid; gap: 12px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  overflow: hidden;
}
.faq-item button {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 20px 22px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  font-weight: 900;
  color: var(--navy);
}
.faq-item button span { color: var(--gold); font-size: 1.2rem; }
.faq-item div {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
}
.faq-item.open div { max-height: 220px; }
.faq-item p { padding: 0 22px 20px; color: var(--muted); margin: 0; }

.contact-section { position: relative; }
.contact-points {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}
.contact-points span {
  color: rgba(255,255,255,.72);
  border-left: 3px solid var(--gold);
  padding-left: 12px;
}
.quote-form {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 28px;
  padding: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
label {
  display: grid;
  gap: 8px;
  color: rgba(255,255,255,.72);
  font-size: .86rem;
  font-weight: 800;
  margin-bottom: 14px;
}
input, textarea, select {
  width: 100%;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color: var(--white);
  padding: 14px 14px;
  border-radius: 16px;
  outline: none;
}
select option { color: var(--ink); }
input:focus, textarea:focus, select:focus { border-color: var(--gold); }
::placeholder { color: rgba(255,255,255,.38); }
.form-note { color: rgba(255,255,255,.48); font-size: .82rem; margin: 12px 0 0; }

.page-hero {
  padding: 160px 0 86px;
  background:
    radial-gradient(circle at 75% 20%, rgba(201,164,100,.18), transparent 26%),
    linear-gradient(135deg, var(--navy), var(--navy-2));
  color: var(--white);
}
.page-hero h1 { max-width: 920px; font-size: clamp(2.7rem, 6vw, 5.2rem); }
.page-hero p:not(.eyebrow):not(.breadcrumb) { max-width: 720px; color: rgba(255,255,255,.72); font-size: 1.12rem; }
.breadcrumb { color: rgba(255,255,255,.55); }
.breadcrumb button {
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.72);
  padding: 0;
  font-weight: 900;
}

.package-card.featured {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-10px);
}
.package-card.featured p,
.package-card.featured li { color: rgba(255,255,255,.72); }
.package-label {
  color: var(--gold) !important;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .75rem;
  font-weight: 900;
}
.text-link {
  color: var(--blue);
  font-weight: 900;
  text-decoration: none;
}
.package-card.featured .text-link { color: var(--gold); }

.paid-grid { grid-template-columns: 1fr 1fr; }
.platform-badge {
  display: inline-flex;
  background: var(--blue-soft);
  color: var(--blue);
  padding: 7px 12px;
  border-radius: 999px;
  font-weight: 900;
  margin-bottom: 18px;
}

.flow-diagram, .tech-flow {
  display: flex;
  align-items: stretch;
  gap: 12px;
  flex-wrap: wrap;
}
.flow-diagram div, .tech-flow div {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  font-weight: 900;
}
.flow-diagram span, .tech-flow > span {
  display: inline-flex;
  align-items: center;
  color: var(--gold);
  font-weight: 900;
  font-size: 1.5rem;
}
.tech-flow div {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.14);
  color: var(--white);
}
.tech-flow div span {
  display: block;
  color: rgba(255,255,255,.58);
  font-weight: 600;
  font-size: .9rem;
}
.web-showcase { align-items: center; }
.check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}
.check-list span {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 13px 14px;
  font-weight: 900;
}
.check-list span::before {
  content: "✓";
  color: var(--gold);
  margin-right: 9px;
}
.website-mockup {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 18px;
  transform: rotate(-1.4deg);
}

.solution-catalogue {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.solution-catalogue article {
  position: relative;
  min-height: 265px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(13,34,59,.07);
}
.solution-catalogue article > span {
  display: inline-flex;
  margin-bottom: 30px;
  color: var(--gold);
  font-weight: 900;
  letter-spacing: .12em;
}
.solution-catalogue article::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  right: -55px;
  bottom: -55px;
  border-radius: 50%;
  background: var(--blue-soft);
}
.solution-catalogue p { color: var(--muted); }
.solution-callout { align-items: center; }
.solution-callout .btn { margin-top: 18px; }

.print-hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}
.print-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.print-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6,16,29,.93) 0%, rgba(6,16,29,.76) 42%, rgba(6,16,29,.08) 75%);
}
.print-hero-copy { position: relative; z-index: 2; padding-top: 90px; }
.print-hero-copy h1 { max-width: 700px; }
.print-hero-copy > p:not(.eyebrow):not(.breadcrumb) { max-width: 620px; font-size: 1.14rem; color: rgba(255,255,255,.78); }
.print-hero .breadcrumb button { color: rgba(255,255,255,.78); }
.print-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.print-grid article {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--soft);
}
.print-grid article:nth-child(2) { background: var(--navy); color: var(--white); transform: translateY(-10px); }
.print-grid p, .print-grid li { color: var(--muted); }
.print-grid article:nth-child(2) p, .print-grid article:nth-child(2) li { color: rgba(255,255,255,.7); }
.print-grid ul { padding-left: 20px; margin-bottom: 0; }
.print-icon { color: var(--gold); font-weight: 900; letter-spacing: .12em; margin-bottom: 26px; }
.brand-flow { display: grid; grid-template-columns: 1fr 1.5fr auto; gap: 32px; align-items: center; }
.brand-flow h2 { margin-bottom: 0; }
.brand-flow-steps { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.brand-flow-steps span { padding: 10px 14px; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; color: rgba(255,255,255,.8); font-size: .86rem; font-weight: 800; }
.brand-flow-steps b { color: var(--gold); }
.browser-bar {
  display: flex;
  gap: 7px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.browser-bar span {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--line);
}
.mock-hero {
  height: 150px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  margin: 20px 0;
}
.mock-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.mock-grid span {
  height: 92px;
  border-radius: 18px;
  background: var(--soft);
  border: 1px solid var(--line);
}
.mock-lines { margin-top: 18px; display: grid; gap: 10px; }
.mock-lines span {
  height: 12px;
  border-radius: 99px;
  background: var(--line);
}
.mock-lines span:nth-child(2) { width: 80%; }
.mock-lines span:nth-child(3) { width: 62%; }

.site-footer {
  background: #06101d;
  color: var(--white);
  padding: 56px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr;
  gap: 34px;
}
.footer-brand { color: var(--white); margin-bottom: 14px; }
.site-footer p { color: rgba(255,255,255,.55); }
.site-footer h4 { margin: 0 0 12px; }
.site-footer button {
  display: block;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.65);
  padding: 4px 0;
  font-weight: 700;
}
.footer-bottom {
  width: min(1160px, calc(100% - 40px));
  margin: 38px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.38);
  font-size: .9rem;
}

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .nav-menu {
    position: fixed;
    top: 76px;
    left: 16px;
    right: 16px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    display: none;
  }
  .nav-menu.open { display: flex; }
  .nav-button { text-align: center; }
  .hero-grid, .split-grid, .testimonial-grid, .contact-grid, .web-showcase, .faq-grid {
    grid-template-columns: 1fr;
  }
  .hero { padding-top: 120px; }
  .hero-visual { min-height: 440px; }
  .service-cards, .benefit-grid, .package-grid, .process-line, .web-services-grid, .paid-grid {
    grid-template-columns: 1fr 1fr;
  }
  .problem-solution {
    grid-template-columns: 1fr;
  }
  .solution-catalogue, .print-grid { grid-template-columns: 1fr 1fr; }
  .brand-flow { grid-template-columns: 1fr; }
  .solution-arrow { transform: rotate(90deg); justify-self: center; }
}

@media (max-width: 680px) {
  .container, .narrow { width: min(100% - 28px, 1160px); }
  .section-pad { padding: 64px 0; }
  .hero { min-height: auto; }
  .hero-grid { gap: 26px; }
  h1 { font-size: clamp(2.55rem, 14vw, 4rem); }
  h2 { font-size: clamp(2rem, 10vw, 3rem); }
  .hero-actions, .btn { width: 100%; }
  .trust-row span { flex: 1 1 calc(50% - 10px); text-align: center; }
  .hero-visual { display: none; }
  .print-hero { min-height: 690px; }
  .print-overlay { background: linear-gradient(90deg, rgba(6,16,29,.92), rgba(6,16,29,.62)); }
  .print-hero > img { object-position: 63% center; }
  .solution-catalogue, .print-grid { grid-template-columns: 1fr; }
  .print-grid article:nth-child(2) { transform: none; }
  .mini-proof-grid, .service-cards, .benefit-grid, .package-grid, .process-line, .web-services-grid, .paid-grid, .footer-grid, .form-row, .check-list {
    grid-template-columns: 1fr;
  }
  .package-card.featured { transform: none; }
  .page-hero { padding-top: 126px; }
  .flow-diagram, .tech-flow { display: grid; }
  .flow-diagram span, .tech-flow > span { justify-content: center; transform: rotate(90deg); }
}

/* Coordinated photographic page headers */
.brand { display: grid; grid-template-columns: 58px auto; align-items: center; column-gap: 14px; }
.brand-mark { width: 58px; height: 58px; align-self: center; }
.brand-mark img { width: 58px; height: 58px; transform: scale(1.16); }
.brand-name { align-self: center; justify-content: center; line-height: .88; padding-top: 2px; }
.brand-name small { margin-top: 8px; }

.hero,
.page-hero,
.print-hero { isolation: isolate; background-size: cover; background-position: center; }
.hero { background-image: url("../images/hero-home.webp"); background-position: center; min-height: 860px; }
.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(16,41,35,.97) 0%, rgba(16,41,35,.90) 34%, rgba(16,41,35,.48) 62%, rgba(16,41,35,.14) 100%);
}
.hero-grid { grid-template-columns: minmax(0, 770px); justify-content: start; }
.hero-copy h1 { color: var(--white); }
.hero-lead { color: rgba(255,255,255,.78); }
.hero .eyebrow { color: var(--gold-2); }
.hero .btn-secondary { color: var(--white); border-color: rgba(255,255,255,.45); }
.hero .trust-row { border-color: rgba(255,255,255,.24); }
.hero .trust-row span { color: rgba(255,255,255,.76); border-color: rgba(255,255,255,.2); background: transparent; }
.hero-visual { display: none; }

.page-hero { position: relative; min-height: 690px; display: flex; align-items: center; padding: 175px 0 105px; }
.page-hero .container { position: relative; z-index: 1; }
.social-hero { background-image: url("../images/hero-social.webp"); }
.paid-hero { background-image: url("../images/hero-paid.webp"); }
.web-hero { background-image: url("../images/hero-web.webp"); }
.solutions-hero { background-image: url("../images/hero-solutions.webp"); }
.page-hero h1 { max-width: 900px; }
.page-hero p:not(.eyebrow):not(.breadcrumb) { color: rgba(255,255,255,.8); }
.page-hero .eyebrow { color: var(--gold-2); }

.print-overlay { background: linear-gradient(90deg, rgba(16,41,35,.97) 0%, rgba(16,41,35,.88) 38%, rgba(16,41,35,.42) 68%, rgba(16,41,35,.10) 100%); }

@media (max-width: 980px) {
  .hero { min-height: 800px; background-position: 58% center; }
  .page-hero { min-height: 640px; background-position: 58% center; }
}
@media (max-width: 680px) {
  .brand { grid-template-columns: 48px auto; column-gap: 11px; }
  .brand-mark, .brand-mark img { width: 48px; height: 48px; }
  .brand-name { font-size: 1.18rem; }
  .brand-name small { font-size: .46rem; margin-top: 7px; }
  .hero { min-height: 760px; background-position: 66% center; }
  .hero::before, .page-hero::before { background: linear-gradient(90deg, rgba(16,41,35,.98) 0%, rgba(16,41,35,.9) 58%, rgba(16,41,35,.48) 100%); }
  .page-hero { min-height: 650px; background-position: 68% center; }
}

/* Transparent logo fit */
.brand-mark,
.site-footer .brand-mark {
  overflow: visible;
  background: transparent;
  padding: 2px;
}
.brand-mark img,
.site-footer .brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transform: none;
}

/* Corporate visual system — derived from the Keyword hummingbird mark */
body { background: var(--white); letter-spacing: -.008em; }
.section-pad { padding: 108px 0; }
.bg-soft { background: var(--soft); }
.bg-navy { background: var(--navy); }

.site-header {
  background: rgba(255,254,250,.94);
  border-top: 3px solid var(--gold);
  border-bottom: 1px solid rgba(16,41,35,.12);
  backdrop-filter: blur(14px);
}
.nav { min-height: 88px; }
.brand { gap: 13px; }
.brand-mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #fff;
}
.brand-mark img { width: 54px; height: 54px; object-fit: cover; }
.brand-name { display: grid; color: var(--navy); font-family: var(--display); font-size: 1.45rem; line-height: .95; font-weight: 600; }
.brand-name small { margin-top: 6px; font-family: var(--font); font-size: .52rem; line-height: 1; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.nav-menu a { color: #4f5c57; font-size: .76rem; letter-spacing: .035em; text-transform: uppercase; }
.nav-menu a:hover, .nav-menu a.active { color: var(--gold); }
.nav-button { border-radius: 2px; background: var(--navy); padding: 13px 18px; box-shadow: none; }

.hero {
  min-height: 900px;
  padding-top: 170px;
  background: linear-gradient(90deg, #fffefa 0%, #f8f4eb 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(16,41,35,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(16,41,35,.035) 1px, transparent 1px);
  background-size: 88px 88px;
  pointer-events: none;
}
.hero-shape { display: none; }
.hero-grid { grid-template-columns: 1.08fr .92fr; gap: 88px; }
.hero-copy h1 { max-width: 760px; font-size: clamp(3.3rem, 5.5vw, 5.45rem); line-height: .98; color: var(--navy); }
.hero-lead { max-width: 660px; font-size: 1.05rem; line-height: 1.8; }
.eyebrow { color: var(--gold); font-size: .7rem; letter-spacing: .21em; }
.btn { min-height: 50px; border-radius: 2px; padding: 0 24px; font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; box-shadow: none; }
.btn-primary { background: var(--gold); color: #fff; box-shadow: none; }
.btn-primary:hover { background: #946605; }
.btn-secondary { background: transparent; border-color: rgba(16,41,35,.35); }
.trust-row { gap: 0; margin-top: 34px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-row span { flex: 1; border: 0; border-right: 1px solid var(--line); border-radius: 0; background: transparent; padding: 13px 15px; font-size: .68rem; letter-spacing: .05em; text-transform: uppercase; }
.trust-row span:last-child { border-right: 0; }

.hero-visual { min-height: 590px; }
.brand-panel {
  min-height: 590px;
  height: 100%;
  padding: 54px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  background: var(--navy);
  border: 1px solid rgba(173,120,9,.55);
  box-shadow: 32px 32px 0 #e7decb;
  color: var(--white);
}
.brand-panel::before { content: ""; position: absolute; inset: 20px; border: 1px solid rgba(255,255,255,.12); }
.brand-panel > img { position: absolute; width: 235px; height: 235px; object-fit: cover; top: 40px; right: 35px; background: #fff; box-shadow: 0 0 0 1px rgba(173,120,9,.5); }
.panel-kicker { position: relative; color: var(--gold-2); text-transform: uppercase; letter-spacing: .18em; font-size: .68rem; font-weight: 700; }
.panel-statement { position: relative; max-width: 440px; font-family: var(--display); font-size: 2rem; line-height: 1.18; }
.panel-index { position: relative; display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 30px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.22); }
.panel-index span { color: var(--gold-2); font-size: .68rem; }
.panel-index strong { display: block; margin-top: 4px; color: #fff; font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; }

h1, h2 { font-weight: 500; }
h2 { color: var(--navy); font-size: clamp(2.35rem, 4vw, 3.7rem); line-height: 1.08; }
.bg-navy h2, .page-hero h1, .print-hero h1 { color: var(--white); }
.large-copy, .section-copy { line-height: 1.85; }
.mini-proof-grid div, .problem-card, .solution-card, .service-tile, .benefit-grid > div, .package-card, .paid-card, .web-services-grid article, .process-step, blockquote, .faq-item, .quote-form, .solution-catalogue article, .print-grid article { border-radius: 2px; box-shadow: none; }
.mini-proof-grid div { background: transparent; border-width: 0 0 1px; padding: 18px 0; }
.mini-proof-grid strong { font-family: var(--display); font-weight: 500; color: var(--gold); }
.service-tile { min-height: 300px; padding: 34px; background: transparent; border: 1px solid rgba(255,255,255,.18); }
.service-tile.highlight { background: #f4efe4; }
.service-tile .tile-icon { border-radius: 50%; background: transparent; border: 1px solid currentColor; }
.service-tile h3 { margin-top: 34px; font-family: var(--display); font-size: 1.55rem; font-weight: 500; }
.process-step { background: transparent; border-width: 1px 0 0; padding: 28px 8px 0; }
.process-step span { border-radius: 50%; background: transparent; border: 1px solid var(--gold); color: var(--gold); }
blockquote { border-left-width: 2px; }
.page-hero { padding: 190px 0 110px; background: linear-gradient(125deg, #102923, #1b3932); }
.page-hero h1 { font-size: clamp(3rem, 5.7vw, 5.3rem); max-width: 1050px; }
.solution-catalogue article { border-top: 3px solid var(--gold); }
.solution-catalogue article::after { display: none; }
.print-grid article:nth-child(2) { transform: none; }
.site-footer .brand-mark { width: 48px; height: 48px; }
.site-footer .brand-mark img { width: 48px; height: 48px; }

@media (max-width: 1100px) {
  .nav-menu { gap: 13px; }
  .nav-menu a { font-size: .68rem; }
}
@media (max-width: 980px) {
  .nav-menu a { font-size: .76rem; }
  .hero { min-height: auto; }
  .hero-grid { gap: 58px; }
  .brand-panel { min-height: 520px; }
}
@media (max-width: 680px) {
  .section-pad { padding: 76px 0; }
  .nav { min-height: 76px; }
  .brand-mark, .brand-mark img { width: 44px; height: 44px; }
  .brand-name { font-size: 1.2rem; }
  .nav-menu { top: 76px; border-radius: 2px; }
  .hero { padding-top: 130px; }
  .hero-copy h1 { font-size: clamp(2.8rem, 13vw, 4rem); }
  .trust-row { display: grid; grid-template-columns: 1fr 1fr; }
  .trust-row span { border-bottom: 1px solid var(--line); }
  .hero-visual { display: block; min-height: 470px; margin: 18px 0 30px; }
  .brand-panel { min-height: 440px; padding: 34px; box-shadow: 14px 14px 0 #e7decb; }
  .brand-panel > img { width: 170px; height: 170px; top: 25px; right: 20px; }
  .panel-statement { font-size: 1.55rem; }
}

/* Final header composition overrides */
.brand { display: grid; grid-template-columns: 58px auto; align-items: center; column-gap: 14px; gap: 14px; }
.brand-mark { width: 58px; height: 58px; align-self: center; }
.brand-mark img { width: 58px; height: 58px; transform: scale(1.16); }
.brand-name { align-self: center; justify-content: center; line-height: .88; padding-top: 2px; }
.brand-name small { margin-top: 8px; }
.hero { background: url("../images/hero-home.webp") center / cover no-repeat; min-height: 860px; isolation: isolate; }
.hero::before, .page-hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(16,41,35,.97) 0%, rgba(16,41,35,.90) 34%, rgba(16,41,35,.48) 62%, rgba(16,41,35,.14) 100%); pointer-events: none; }
.hero-grid { grid-template-columns: minmax(0, 770px); justify-content: start; }
.hero-copy h1 { color: var(--white); }
.hero-lead { color: rgba(255,255,255,.78); }
.hero .eyebrow { color: var(--gold-2); }
.hero .btn-secondary { color: var(--white); border-color: rgba(255,255,255,.45); }
.hero .trust-row { border-color: rgba(255,255,255,.24); }
.hero .trust-row span { color: rgba(255,255,255,.76); border-color: rgba(255,255,255,.2); background: transparent; }
.hero-visual { display: none; }
.page-hero { position: relative; min-height: 690px; display: flex; align-items: center; padding: 175px 0 105px; isolation: isolate; background-size: cover; background-position: center; }
.social-hero { background-image: url("../images/hero-social.webp"); }
.paid-hero { background-image: url("../images/hero-paid.webp"); }
.web-hero { background-image: url("../images/hero-web.webp"); }
.solutions-hero { background-image: url("../images/hero-solutions.webp"); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { max-width: 900px; }
.page-hero p:not(.eyebrow):not(.breadcrumb) { color: rgba(255,255,255,.8); }
.page-hero .eyebrow { color: var(--gold-2); }
.print-overlay { background: linear-gradient(90deg, rgba(16,41,35,.97) 0%, rgba(16,41,35,.88) 38%, rgba(16,41,35,.42) 68%, rgba(16,41,35,.10) 100%); }
@media (max-width: 980px) {
  .hero { min-height: 800px; background-position: 58% center; }
  .page-hero { min-height: 640px; background-position: 58% center; }
}
@media (max-width: 680px) {
  .brand { grid-template-columns: 48px auto; column-gap: 11px; gap: 11px; }
  .brand-mark, .brand-mark img { width: 48px; height: 48px; }
  .brand-name { font-size: 1.18rem; }
  .brand-name small { font-size: .46rem; margin-top: 7px; }
  .hero { min-height: 760px; background-position: 66% center; }
  .hero::before, .page-hero::before { background: linear-gradient(90deg, rgba(16,41,35,.98) 0%, rgba(16,41,35,.9) 58%, rgba(16,41,35,.48) 100%); }
  .hero-visual { display: none; }
  .page-hero { min-height: 650px; background-position: 68% center; }
}

/* Final transparent logo treatment */
.brand-mark,
.site-footer .brand-mark {
  overflow: visible;
  background: transparent;
  padding: 2px;
}
.brand-mark img,
.site-footer .brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transform: none;
}
