:root {
  --ink: #121519;
  --ink-soft: #38404a;
  --paper: #ffffff;
  --paper-warm: #faf8f2;
  --mist: #eef3f6;
  --line: #d9e1e6;
  --teal: #0089b6;
  --teal-dark: #006c91;
  --gold: #a9893b;
  --gold-dark: #806629;
  --charcoal: #20262d;
  --shadow: 0 18px 45px rgba(18, 21, 25, 0.10);
  --radius: 18px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
}

button,
input,
textarea,
select {
  font: inherit;
}

.skip-link {
  position: absolute;
  top: -44px;
  left: 12px;
  z-index: 999;
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  border-radius: 8px;
}

.skip-link:focus {
  top: 12px;
}

.container {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.top-strip {
  background: var(--charcoal);
  color: #fff;
  font-size: 0.92rem;
}

.top-strip .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 8px 0;
}

.top-strip a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.top-strip .top-phone {
  margin-left: 10px;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 14px 0;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}

.logo-link img {
  width: 168px;
  max-height: 72px;
  object-fit: contain;
}

.brand-text {
  display: none;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 10px 11px;
  border-radius: 999px;
}

.nav a:hover,
.nav a:focus,
.nav a.active {
  color: var(--teal-dark);
  background: #e8f6fb;
}

.nav .quote-pill {
  background: var(--teal);
  color: #fff;
  padding-inline: 16px;
}

.nav .quote-pill:hover,
.nav .quote-pill:focus,
.nav .quote-pill.active {
  background: var(--teal-dark);
  color: #fff;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(255,255,255,0.95) 0%, rgba(250,248,242,0.92) 55%, rgba(232,246,251,0.86) 100%),
    radial-gradient(circle at 82% 18%, rgba(0,137,182,0.25), transparent 26%),
    linear-gradient(135deg, transparent 0%, transparent 42%, rgba(168,137,59,0.22) 42%, rgba(168,137,59,0.22) 49%, transparent 49%);
  padding: 76px 0 70px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 42px;
  align-items: center;
}

.eyebrow {
  color: var(--teal-dark);
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-weight: 900;
  font-size: 0.78rem;
  margin: 0 0 12px;
}

h1,
h2,
h3 {
  line-height: 1.08;
  margin: 0 0 14px;
  color: var(--ink);
}

h1 {
  font-size: clamp(2.4rem, 5vw, 5rem);
  letter-spacing: -0.055em;
}

h2 {
  font-size: clamp(1.9rem, 3vw, 3.1rem);
  letter-spacing: -0.04em;
}

h3 {
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.lead {
  font-size: clamp(1.05rem, 1.8vw, 1.34rem);
  color: var(--ink-soft);
  max-width: 760px;
  margin: 0 0 26px;
}

.hero-actions,
.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 2px solid transparent;
  background: var(--teal);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(0, 137, 182, 0.18);
}

.btn:hover,
.btn:focus {
  background: var(--teal-dark);
}

.btn.secondary {
  background: #fff;
  color: var(--teal-dark);
  border-color: var(--teal);
  box-shadow: none;
}

.btn.secondary:hover,
.btn.secondary:focus {
  background: #e8f6fb;
}

.hero-card {
  background: rgba(255,255,255,0.88);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}

.hero-card h2 {
  font-size: 1.45rem;
}

.check-list,
.simple-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  margin: 12px 0;
  color: var(--ink-soft);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--teal-dark);
  font-weight: 900;
}

.section {
  padding: 72px 0;
}

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

.section.mist {
  background: var(--mist);
}

.section-header {
  max-width: 850px;
  margin-bottom: 34px;
}

.section-header.center {
  text-align: center;
  margin-inline: auto;
}

.section-header p {
  color: var(--ink-soft);
  font-size: 1.08rem;
  margin: 0;
}

.grid-3,
.grid-4,
.grid-2 {
  display: grid;
  gap: 22px;
}

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

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 10px 28px rgba(18, 21, 25, 0.05);
}

.card.highlight {
  border-top: 6px solid var(--teal);
}

.card.gold {
  border-top: 6px solid var(--gold);
}

.card p {
  color: var(--ink-soft);
  margin: 0 0 14px;
}

.card ul {
  margin: 14px 0 0;
  padding-left: 20px;
  color: var(--ink-soft);
}

.card li {
  margin: 6px 0;
}

.icon-badge {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border-radius: 12px;
  background: #e8f6fb;
  color: var(--teal-dark);
  font-weight: 900;
}

.banner {
  background: var(--charcoal);
  color: #fff;
  border-radius: calc(var(--radius) + 8px);
  padding: 34px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  overflow: hidden;
  position: relative;
}

.banner::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -100px;
  width: 300px;
  height: 300px;
  border-radius: 999px;
  background: rgba(0, 137, 182, 0.22);
}

.banner h2,
.banner p {
  color: #fff;
  position: relative;
  z-index: 1;
}

.banner p {
  margin: 0;
  opacity: 0.88;
}

.banner .btn {
  position: relative;
  z-index: 1;
  background: #fff;
  color: var(--ink);
  box-shadow: none;
}

.page-hero {
  background:
    linear-gradient(120deg, rgba(255,255,255,0.95), rgba(232,246,251,0.8)),
    linear-gradient(135deg, transparent 0%, transparent 54%, rgba(168,137,59,0.25) 54%, rgba(168,137,59,0.25) 60%, transparent 60%);
  border-bottom: 1px solid var(--line);
  padding: 58px 0;
}

.page-hero .lead {
  margin-bottom: 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 30px;
  align-items: start;
}

.sidebar-card {
  position: sticky;
  top: 118px;
  background: var(--charcoal);
  color: #fff;
  border-radius: var(--radius);
  padding: 26px;
}

.sidebar-card h2,
.sidebar-card p,
.sidebar-card li {
  color: #fff;
}

.sidebar-card p,
.sidebar-card li {
  opacity: 0.88;
}

.resource-block {
  border-left: 5px solid var(--teal);
  padding: 22px 24px;
  background: #fff;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 18px;
  box-shadow: 0 10px 26px rgba(18, 21, 25, 0.05);
}

.resource-block.gold-line {
  border-left-color: var(--gold);
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 26px rgba(18, 21, 25, 0.05);
}

.spec-table th,
.spec-table td {
  text-align: left;
  padding: 14px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.spec-table th {
  background: var(--charcoal);
  color: #fff;
}

.spec-table tr:last-child td {
  border-bottom: 0;
}

.form-wrap {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-field.full {
  grid-column: 1 / -1;
}

label {
  display: block;
  font-weight: 800;
  margin-bottom: 6px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #bcc8cf;
  border-radius: 12px;
  padding: 12px 13px;
  background: #fff;
  color: var(--ink);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.form-note {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-top: 14px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 26px;
  align-items: start;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.contact-list strong {
  display: block;
}

.map-placeholder {
  display: grid;
  place-items: center;
  min-height: 250px;
  border-radius: var(--radius);
  border: 1px dashed #aab7bf;
  background: var(--mist);
  color: var(--ink-soft);
  padding: 24px;
  text-align: center;
}

.site-footer {
  background: var(--charcoal);
  color: #fff;
  padding: 46px 0 22px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr;
  gap: 28px;
  align-items: start;
}

.site-footer a {
  color: #fff;
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus {
  text-decoration: underline;
}

.footer-title {
  font-weight: 900;
  margin-bottom: 10px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin: 8px 0;
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.17);
  color: rgba(255,255,255,0.76);
  font-size: 0.92rem;
}

.small-text {
  font-size: 0.94rem;
  color: var(--ink-soft);
}

.kicker-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.kicker-number {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--teal);
  color: #fff;
  font-weight: 900;
}

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .contact-grid,
  .grid-4 {
    grid-template-columns: 1fr;
  }

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

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

  .sidebar-card {
    position: static;
  }
}

@media (max-width: 740px) {
  .top-strip .container,
  .header-inner,
  .banner {
    align-items: flex-start;
    flex-direction: column;
  }

  .header-inner {
    gap: 10px;
  }

  .nav {
    justify-content: flex-start;
  }

  .nav a {
    padding: 8px 9px;
    font-size: 0.9rem;
  }

  .logo-link img {
    width: 140px;
  }

  .hero,
  .section,
  .page-hero {
    padding: 48px 0;
  }

  .grid-2,
  .grid-3,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Sample hover previews */
.sample-note {
  margin: 6px 0 14px;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.sample-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.sample-list li {
  margin: 0;
}

.sample-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(0, 137, 182, 0.22);
  background: #eef8fb;
  color: var(--teal-dark);
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
}

.sample-link:hover,
.sample-link:focus {
  background: #fff;
  color: var(--ink);
  border-color: var(--gold);
  outline: none;
}

.sample-link .hover-preview {
  position: absolute;
  left: 0;
  top: calc(100% + 10px);
  width: min(340px, 82vw);
  z-index: 35;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 8px;
  box-shadow: 0 18px 48px rgba(18, 21, 25, 0.22);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
  pointer-events: none;
}

.sample-link .hover-preview img {
  display: block;
  width: 100%;
  border-radius: 10px;
}

.sample-link:hover .hover-preview,
.sample-link:focus .hover-preview {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sample-link.align-right .hover-preview {
  left: auto;
  right: 0;
}

/* Higher-contrast check marks inside dark sidebar boxes */
.sidebar-card .check-list li::before {
  color: #ffd15c;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.sidebar-card .check-list li {
  color: rgba(255, 255, 255, 0.94);
}

@media (max-width: 740px) {
  .sample-link .hover-preview {
    display: none;
  }
}


/* Final audit refinements */
address { font-style: normal; }
.launch-note { color: #ffd15c; }
.card .launch-note { color: var(--gold-dark); }
.optional { font-weight: 400; color: var(--ink-soft); }
.nav-toggle { display: none; border: 1px solid var(--line); border-radius: 999px; background: #fff; color: var(--ink); padding: 9px 13px; font-weight: 800; cursor: pointer; }
.center-action { text-align: center; margin: 28px 0 0; }
.sample-disclaimer { margin: 28px 0 0; padding: 16px 18px; border: 1px solid #e4d7ad; border-radius: 14px; background: #fff9e9; color: var(--ink-soft); }
.sample-disclaimer a { color: var(--teal-dark); font-weight: 800; }
.sample-section { margin-top: 52px; }
.sample-section:first-of-type { margin-top: 34px; }
.sample-gallery { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; }
.featured-gallery { grid-template-columns: repeat(4, minmax(0,1fr)); }
.sample-tile { display: flex; flex-direction: column; min-width: 0; overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); color: var(--ink); text-decoration: none; box-shadow: 0 10px 28px rgba(18,21,25,.07); transition: transform .16s ease, box-shadow .16s ease; }
.sample-tile:hover, .sample-tile:focus { transform: translateY(-3px); box-shadow: var(--shadow); outline: 3px solid rgba(0,137,182,.18); outline-offset: 2px; }
.sample-tile img { width: 100%; aspect-ratio: 4 / 3; object-fit: contain; background: var(--mist); }
.sample-tile span { display: grid; gap: 2px; padding: 14px 16px 16px; }
.sample-tile small { color: var(--ink-soft); line-height: 1.35; }
.policy-copy { max-width: 850px; }
.policy-copy h2 { margin-top: 34px; font-size: clamp(1.45rem,2.4vw,2.1rem); }
.policy-copy p { color: var(--ink-soft); }
input:focus, select:focus, textarea:focus, button:focus-visible, a:focus-visible { outline: 3px solid rgba(0,137,182,.28); outline-offset: 2px; }
@media (max-width: 980px) { .featured-gallery { grid-template-columns: repeat(2,minmax(0,1fr)); } .sample-gallery { grid-template-columns: repeat(2,minmax(0,1fr)); } }
@media (max-width: 740px) {
  .js .nav-toggle { display: inline-flex; align-items: center; gap: 7px; }
  .js .header-inner { flex-direction: row; align-items: center; flex-wrap: wrap; }
  .js .nav { display: none; width: 100%; flex-direction: column; align-items: stretch; padding: 10px 0 4px; }
  .js .nav.is-open { display: flex; }
  .js .nav a { width: 100%; border-radius: 10px; }
  .sample-gallery, .featured-gallery { grid-template-columns: 1fr; }
  .sample-tile img { aspect-ratio: 4 / 3; }
}

.split > .sample-disclaimer { grid-column: 1 / -1; }

/* SEO/service-page additions */
.card-link { margin-top: 16px !important; }
.card-link a { color: var(--teal-dark); font-weight: 800; text-decoration-thickness: 2px; text-underline-offset: 3px; }
.card-link a:hover, .card-link a:focus { color: var(--ink); }
.service-note { margin-top: 24px; padding: 18px 20px; border-left: 5px solid var(--gold); background: #fff; border-radius: 12px; color: var(--ink-soft); }
.service-detail { margin-top: 34px; align-items: start; }
.service-bullets { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px 24px; }
.service-bullets li { position: relative; padding-left: 18px; }
.service-bullets li::before { content: "•"; position: absolute; left: 0; color: var(--gold-dark); font-weight: 900; }
.sample-section-copy { max-width: 820px; color: var(--ink-soft); margin-top: 8px !important; }
@media (max-width: 720px) { .service-bullets { grid-template-columns: 1fr; } }
