:root {
  --bg: #111214;
  --bg-soft: #17191d;
  --card: rgba(255, 255, 255, 0.075);
  --card-strong: rgba(255, 255, 255, 0.11);
  --line: rgba(255, 255, 255, 0.14);
  --text: #f6f2ea;
  --muted: rgba(246, 242, 234, 0.72);
  --muted-strong: rgba(246, 242, 234, 0.86);
  /* Minuteman-inspired palette: deep green + energetic orange */
  --accent: #007f5f;
  --accent-dark: #005f46;
  --orange: #f36b21;
  --gold: #f36b21;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  --radius-lg: 34px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --max-width: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 10%, rgba(0, 127, 95, 0.24), transparent 34%),
    radial-gradient(circle at 85% 20%, rgba(243, 107, 33, 0.16), transparent 32%),
    linear-gradient(135deg, #0d1412 0%, #14211e 52%, #0b100f 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent 72%);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.page-shell {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 22px;
  position: relative;
}

.site-header {
  width: min(calc(100% - 44px), var(--max-width));
  position: sticky;
  top: 16px;
  z-index: 20;
  margin: 0 auto;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(17, 18, 20, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 46px rgba(0, 0, 0, 0.24);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  font-weight: 800;
  letter-spacing: -0.08em;
  box-shadow: 0 10px 30px rgba(0, 127, 95, 0.34);
}

.brand-mark.logo-mark {
  width: 70px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 7px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: none;
  overflow: hidden;
  flex: 0 0 auto;
}

.brand-mark.logo-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  font-size: 0.96rem;
}

.brand-text span {
  color: var(--muted);
  font-size: 0.72rem;
  margin-top: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a,
.share-button {
  color: var(--muted-strong);
  font: inherit;
  font-size: 0.9rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  padding: 10px 14px;
  cursor: pointer;
  transition: 180ms ease;
}

.nav-links a:hover,
.share-button:hover {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.07);
}

.section-pad {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 96px 0;
}

.hero {
  padding-top: 88px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 28px;
  align-items: stretch;
}

.hero-copy,
.glass-card,
.service-card,
.contact-panel,
.quote-section,
.intro-strip {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, var(--card), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-copy {
  border-radius: var(--radius-lg);
  padding: clamp(34px, 5vw, 68px);
  min-height: 620px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 26px;
  pointer-events: none;
}

.hero-copy::after {
  content: "PRINT / SIGNS / MAIL / APPAREL";
  position: absolute;
  top: 36px;
  right: 36px;
  color: rgba(255,255,255,0.08);
  font-size: clamp(2.7rem, 7vw, 6rem);
  font-weight: 800;
  line-height: 0.88;
  max-width: 520px;
  text-align: right;
  letter-spacing: -0.08em;
  z-index: -1;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 840px;
  margin-bottom: 22px;
  font-size: clamp(3.25rem, 8vw, 6.75rem);
  line-height: 0.89;
  letter-spacing: -0.08em;
}

.hero-lede {
  max-width: 720px;
  color: var(--muted-strong);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.55;
  margin-bottom: 30px;
}

.hero-actions,
.card-actions,
.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 19px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.95rem;
  border: 1px solid var(--line);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  border-color: rgba(215, 25, 32, 0.75);
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  box-shadow: 0 14px 34px rgba(215, 25, 32, 0.26);
}

.button-secondary,
.button-ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
}

.button-secondary:hover,
.button-ghost:hover {
  background: rgba(255, 255, 255, 0.11);
}

.full {
  width: 100%;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-meta span {
  color: var(--muted-strong);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  padding: 9px 12px;
  font-size: 0.82rem;
}

.contact-card {
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  align-self: flex-start;
  color: var(--muted-strong);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 9px 12px;
  font-size: 0.8rem;
  margin-bottom: auto;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #38d678;
  box-shadow: 0 0 0 0 rgba(56, 214, 120, 0.55);
  animation: pulse 1.9s infinite;
}

@keyframes pulse {
  70% { box-shadow: 0 0 0 10px rgba(56, 214, 120, 0); }
  100% { box-shadow: 0 0 0 0 rgba(56, 214, 120, 0); }
}

.contact-card h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: -0.06em;
  margin: 56px 0 4px;
}

.role {
  color: var(--muted);
  margin-bottom: 24px;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

.contact-list a {
  display: grid;
  gap: 5px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
  transition: 180ms ease;
}

.contact-list a:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-2px);
}

.contact-list span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-list strong {
  font-size: 0.94rem;
  line-height: 1.35;
  word-break: break-word;
}

.intro-strip {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  border-radius: var(--radius-md);
  padding: clamp(24px, 4vw, 42px);
}

.intro-strip p {
  max-width: 980px;
  margin: 0;
  color: var(--muted-strong);
  font-size: clamp(1.18rem, 3vw, 2.25rem);
  line-height: 1.25;
  letter-spacing: -0.04em;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading.compact {
  max-width: 660px;
}

.section-heading h2,
.split-copy h2,
.contact-section h2 {
  font-size: clamp(2.35rem, 5vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
  margin-bottom: 18px;
}

.section-heading p,
.reason-list p,
.contact-details p {
  color: var(--muted);
  line-height: 1.7;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-card {
  min-height: 310px;
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 180ms ease, background 180ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  background: var(--card-strong);
}

.service-number {
  color: rgba(225, 185, 109, 0.75);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.service-card h3,
.reason-list h3,
.contact-details h3 {
  font-size: 1.35rem;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--muted);
  line-height: 1.62;
  margin-bottom: 0;
}

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: start;
}

.reason-list {
  display: grid;
  gap: 14px;
}

.reason-list div {
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.quote-section {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  border-radius: var(--radius-lg);
  padding: clamp(34px, 6vw, 72px);
}

.quote-section blockquote {
  max-width: 1000px;
  margin: 0;
  font-size: clamp(2.2rem, 6vw, 5.3rem);
  line-height: 0.98;
  letter-spacing: -0.08em;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 28px;
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 40px);
}

.contact-buttons {
  justify-content: flex-end;
  align-content: start;
}

.site-footer {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 28px 0 10px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 0.88rem;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--muted-strong);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 50;
  transform: translate(-50%, 24px);
  opacity: 0;
  pointer-events: none;
  color: var(--text);
  background: rgba(17, 18, 20, 0.86);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 16px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transition: 220ms ease;
}

.toast.visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hero-grid,
  .split-section,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: 560px;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-buttons {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .page-shell {
    padding: 14px;
  }

  .site-header {
    width: calc(100% - 28px);
    top: 10px;
  }

  .brand {
    gap: 9px;
  }

  .brand-mark.logo-mark {
    width: 58px;
    height: 36px;
    padding: 4px 6px;
    border-radius: 15px;
  }

  .brand-text span {
    display: none;
  }

  .share-button {
    padding-inline: 12px;
  }

  .section-pad {
    padding: 68px 0;
  }

  .hero {
    padding-top: 54px;
  }

  .hero-copy,
  .contact-card,
  .quote-section {
    border-radius: 26px;
  }

  .hero-copy {
    padding: 30px;
    min-height: 540px;
  }

  .hero-copy::before {
    inset: 14px;
    border-radius: 20px;
  }

  .hero-copy::after {
    top: 24px;
    right: 24px;
    font-size: 3.4rem;
  }

  h1 {
    font-size: clamp(3.05rem, 17vw, 5rem);
  }

  .button {
    width: 100%;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 230px;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* Mobile hero refinements: keeps the branded look but gives the first view more breathing room */
@media (max-width: 680px) {
  .hero-grid {
    gap: 18px;
  }

  .hero-copy {
    justify-content: flex-start;
    min-height: auto;
    padding: 34px 24px 26px;
  }

  .hero-copy::after {
    opacity: 0.45;
    top: 20px;
    right: 18px;
    font-size: clamp(2.35rem, 14vw, 3.25rem);
    max-width: 280px;
    line-height: 0.86;
  }

  .eyebrow {
    max-width: 250px;
    margin-bottom: 14px;
    font-size: 0.68rem;
    line-height: 1.35;
    letter-spacing: 0.15em;
  }

  h1 {
    max-width: 330px;
    margin-bottom: 16px;
    font-size: clamp(2.35rem, 12.6vw, 3.55rem);
    line-height: 0.96;
    letter-spacing: -0.065em;
  }

  .hero-lede {
    margin-bottom: 22px;
    font-size: 1rem;
    line-height: 1.52;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-meta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 20px;
  }

  .hero-meta span {
    width: 100%;
    border-radius: 16px;
    padding: 10px 12px;
    font-size: 0.8rem;
  }

  .contact-card {
    padding: 24px;
  }

  .contact-card h2 {
    margin-top: 34px;
  }
}

@media (max-width: 430px) {
  .site-header {
    padding: 9px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-mark.logo-mark {
    width: 54px;
    height: 34px;
    padding: 4px 5px;
    border-radius: 14px;
  }

  .brand-text strong {
    font-size: 0.9rem;
  }

  .share-button {
    min-height: 38px;
    padding: 8px 10px;
    font-size: 0.82rem;
  }

  .hero {
    padding-top: 44px;
  }

  .hero-copy {
    padding: 30px 20px 22px;
  }

  .hero-copy::before {
    inset: 10px;
  }

  .hero-copy::after {
    opacity: 0.32;
    font-size: clamp(2rem, 13vw, 2.85rem);
    max-width: 230px;
  }

  h1 {
    max-width: 300px;
    font-size: clamp(2.18rem, 12vw, 3rem);
    line-height: 0.98;
  }

  .button {
    min-height: 46px;
    padding: 13px 16px;
  }
}
