
:root {
  --navy: #152a63;
  --navy-deep: #0d1c43;
  --green: #00b050;
  --green-deep: #01833c;
  --ink: #152239;
  --muted: #5d6a7f;
  --bg: #f5f8fb;
  --card: #ffffff;
  --line: rgba(21, 42, 99, 0.12);
  --shadow: 0 18px 42px rgba(16, 38, 87, 0.12);
  --radius: 22px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 84px;
}
.brand img { height: 52px; width: auto; }
.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}
.site-nav a {
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  color: var(--muted);
  transition: 0.22s ease;
}
.site-nav a:hover,
.site-nav a.active {
  color: var(--navy);
  background: rgba(0, 176, 80, 0.1);
}
.site-nav .nav-cta {
  background: var(--navy);
  color: #fff;
}
.site-nav .nav-cta:hover { background: var(--green); color: #fff; }
.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--navy);
  display: block;
}
.hero-section,
.sub-hero {
  position: relative;
  overflow: hidden;
}
.hero-home {
  background:
    radial-gradient(circle at top right, rgba(0, 176, 80, 0.14), transparent 32%),
    linear-gradient(135deg, #f8fbff, #f1f6fb 50%, #ecf3ff);
  padding: 72px 0 58px;
}
.sub-hero {
  background: linear-gradient(135deg, #f8fbff, #eef5ff 55%, #f4f8fb);
  padding: 52px 0 30px;
  border-bottom: 1px solid var(--line);
}
.hero-grid,
.sub-hero-grid,
.two-column-split,
.contact-layout,
.cta-row,
.footer-grid {
  display: grid;
  gap: 28px;
}
.hero-grid { grid-template-columns: 1.1fr 0.9fr; align-items: center; }
.sub-hero-grid,
.two-column-split { grid-template-columns: 1.05fr 0.95fr; align-items: center; }
.align-start { align-items: start; }
.hero-copy h1,
.sub-hero h1,
.thanks-card h1 {
  margin: 0 0 16px;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--navy-deep);
}
.sub-hero h1 { font-size: clamp(2rem, 3.4vw, 3.2rem); }
.hero-text,
.sub-hero p,
.section-heading p,
.panel-intro,
.footer-copy {
  color: var(--muted);
  font-size: 1.04rem;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--green-deep);
}
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}
.button-row.center { justify-content: center; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--navy), var(--navy-deep)); color: #fff; }
.btn-primary:hover { background: linear-gradient(135deg, var(--green), var(--green-deep)); }
.btn-secondary {
  background: #fff;
  color: var(--navy);
  border-color: rgba(21, 42, 99, 0.18);
}
.btn-secondary:hover { border-color: rgba(0, 176, 80, 0.35); color: var(--green-deep); }
.full-width { width: 100%; }
.hero-stack { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 18px; }
.hero-side-stack { display: grid; gap: 18px; }
.hero-photo-card {
  background: #fff;
  border-radius: 28px;
  padding: 12px;
  box-shadow: var(--shadow);
}
.hero-photo-card img { width: 100%; border-radius: 20px; }
.hero-photo-card.tall img { min-height: 520px; object-fit: cover; }
.hero-photo-card.short img { min-height: 245px; object-fit: cover; }
.hero-photo-card.bordered { border: 1px solid var(--line); }
.hero-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}
.mini-card,
.card-surface,
.feature-card,
.pricing-card,
.timeline-card,
.quick-contact-card,
.contact-panel,
.thanks-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.mini-card {
  padding: 18px 18px 16px;
}
.mini-card strong {
  display: block;
  color: var(--navy);
  margin-bottom: 4px;
  font-size: 1.05rem;
}
.mini-card span { color: var(--muted); font-size: 0.95rem; }
.section { padding: 78px 0; }
.alt-bg { background: var(--bg); }
.deep-bg {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  color: #fff;
}
.light-text h2,
.light-text p,
.glass-card h3,
.glass-card p,
.deep-bg .eyebrow { color: #fff; }
.deep-bg .eyebrow { opacity: 0.82; }
.section-heading { margin-bottom: 26px; }
.section-heading.left-align { max-width: 760px; }
.section-heading.narrow-center {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}
.section-heading h2 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 3vw, 2.9rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--navy-deep);
}
.feature-grid,
.category-grid,
.gallery-grid,
.brochure-grid,
.pricing-grid,
.contact-quick-grid {
  display: grid;
  gap: 22px;
}
.four-up { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.five-up { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.three-up { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.two-up { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.pricing-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.brochure-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.compact-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.contact-quick-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.feature-card {
  padding: 24px;
}
.feature-card h3,
.category-card h3,
.pricing-card strong,
.brochure-card h3,
.contact-panel h2,
.quick-contact-card strong {
  margin: 0 0 10px;
  color: var(--navy-deep);
}
.feature-card p,
.category-card p,
.brochure-card p,
.project-card p,
.quick-contact-card a,
.quick-contact-card span { color: var(--muted); }
.icon-top .icon-badge {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: rgba(0, 176, 80, 0.12);
  color: var(--green-deep);
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.glass-card {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}
.category-card,
.brochure-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.category-card img,
.gallery-tile img,
.brochure-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.category-card div,
.brochure-card div { padding: 20px; }
.category-card { transition: transform 0.2s ease, box-shadow 0.2s ease; }
.category-card:hover,
.gallery-tile:hover { transform: translateY(-4px); }
.elevated:hover { box-shadow: 0 22px 48px rgba(14, 34, 79, 0.16); }
.bullet-list { padding: 12px; display: grid; gap: 12px; }
.bullet-list div,
.stack-list div,
.timeline-item,
.quick-contact-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(21, 42, 99, 0.03);
  color: var(--ink);
}
.stack-list {
  padding: 14px;
  display: grid;
  gap: 12px;
}
.stack-list div span { color: var(--muted); }
.pricing-card {
  padding: 24px;
  text-align: left;
}
.pricing-card span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0, 176, 80, 0.12);
  color: var(--green-deep);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
}
.pricing-card strong { font-size: 2rem; display: block; }
.pricing-card p { margin: 0 0 6px; color: var(--muted); }
.pricing-card small { color: var(--navy); font-weight: 700; }
.pricing-card.featured {
  background: linear-gradient(180deg, rgba(0, 176, 80, 0.08), rgba(21, 42, 99, 0.02));
  border-color: rgba(0, 176, 80, 0.28);
}
.gallery-grid { margin-top: 24px; }
.gallery-tile {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #fff;
}
.gallery-tile img { transition: transform 0.25s ease; }
.gallery-tile:hover img { transform: scale(1.02); }
.timeline-card { padding: 14px; display: grid; gap: 12px; }
.timeline-item strong { color: var(--navy); }
.cta-band {
  background: linear-gradient(135deg, rgba(21, 42, 99, 0.96), rgba(13, 28, 67, 0.98));
  color: #fff;
}
.cta-band .eyebrow,
.cta-band h2,
.cta-band p { color: #fff; }
.cta-row {
  grid-template-columns: 1fr auto;
  align-items: center;
}
.cta-row h2 { margin: 0 0 10px; font-size: clamp(1.8rem, 3vw, 2.6rem); }
.sliM { padding: 58px 0; }
.site-footer {
  background: #0d1734;
  color: rgba(255, 255, 255, 0.86);
  padding-top: 54px;
}
.footer-grid { grid-template-columns: 1.35fr 0.8fr 0.8fr 1fr; align-items: start; }
.footer-logo { max-width: 220px; margin-bottom: 14px; }
.site-footer h3 { color: #fff; margin: 0 0 14px; font-size: 1.06rem; }
.site-footer ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.site-footer a { color: rgba(255, 255, 255, 0.86); }
.site-footer a:hover { color: #7de7a9; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 24px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 34px;
  font-size: 0.92rem;
}
.footer-bottom-links { display: flex; flex-wrap: wrap; gap: 18px; }
.contact-layout { grid-template-columns: 1fr 1fr; align-items: start; }
.contact-panel { padding: 28px; }
.contact-list { display: grid; gap: 16px; padding: 0; margin: 0 0 24px; list-style: none; }
.contact-list li { display: grid; gap: 4px; color: var(--muted); }
.contact-list strong { color: var(--navy-deep); }
.contact-list.compact li { gap: 2px; }
.map-shell { overflow: hidden; border-radius: 22px; border: 1px solid var(--line); box-shadow: var(--shadow); }
.map-shell iframe { width: 100%; min-height: 340px; border: 0; display: block; }
.styled-form { display: grid; gap: 16px; }
.styled-form label { display: grid; gap: 8px; }
.styled-form span { font-weight: 700; color: var(--navy-deep); }
.styled-form input,
.styled-form textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(21, 42, 99, 0.16);
  padding: 14px 16px;
  font: inherit;
  color: var(--ink);
  background: #fdfefe;
}
.styled-form input:focus,
.styled-form textarea:focus {
  outline: none;
  border-color: rgba(0, 176, 80, 0.45);
  box-shadow: 0 0 0 4px rgba(0, 176, 80, 0.12);
}
.quick-contact-card {
  padding: 20px;
}
.quick-contact-card a { font-weight: 700; color: var(--navy); }
.text-link { color: var(--green-deep); font-weight: 700; }
.thanks-page {
  min-height: calc(100vh - 84px);
  background: radial-gradient(circle at top, rgba(0, 176, 80, 0.12), transparent 28%), linear-gradient(135deg, #f8fbff, #edf3ff);
}
.thanks-section {
  min-height: calc(100vh - 84px);
  display: grid;
  place-items: center;
  padding: 40px 16px 70px;
}
.thanks-card {
  max-width: 760px;
  padding: 42px;
  text-align: center;
}
.thanks-card p { color: var(--muted); font-size: 1.05rem; }
@media (max-width: 1100px) {
  .hero-grid,
  .sub-hero-grid,
  .two-column-split,
  .contact-layout,
  .footer-grid,
  .cta-row,
  .four-up,
  .five-up,
  .three-up,
  .two-up,
  .pricing-grid,
  .brochure-grid,
  .compact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .five-up { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .hero-stack { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow);
    padding: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
  }
  .site-nav.open { display: flex; }
  .site-nav .nav-cta { text-align: center; }
  .hero-grid,
  .sub-hero-grid,
  .two-column-split,
  .contact-layout,
  .cta-row,
  .footer-grid,
  .four-up,
  .five-up,
  .three-up,
  .two-up,
  .category-grid,
  .pricing-grid,
  .brochure-grid,
  .compact-grid,
  .contact-quick-grid,
  .hero-mini-grid {
    grid-template-columns: 1fr;
  }
  .hero-home { padding-top: 42px; }
  .hero-photo-card.tall img,
  .hero-photo-card.short img { min-height: auto; }
  .site-header { position: sticky; }
  .contact-panel,
  .thanks-card { padding: 24px; }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* --- Brand refresh adjustments --- */
.deep-bg .section-heading h2,
.deep-bg .section-heading p,
.deep-bg .feature-card h3,
.deep-bg .feature-card p,
.cta-band .section-heading h2,
.cta-band .section-heading p,
.cta-band .cta-row h2,
.cta-band .cta-row p {
  color: #fff;
}

.deep-bg .glass-card {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
}

.inline-meta {
  display: inline-flex;
  margin-top: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0, 176, 80, 0.1);
  color: var(--green-deep);
  font-size: 0.82rem;
  font-weight: 800;
}

.info-panel {
  padding: 22px;
  margin-bottom: 24px;
}

.info-panel h3 {
  margin: 0 0 12px;
  color: var(--navy-deep);
}

.plain-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.plain-list li + li {
  margin-top: 8px;
}

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

.styled-form select {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(21, 42, 99, 0.16);
  padding: 14px 16px;
  font: inherit;
  color: var(--ink);
  background: #fdfefe;
}

.styled-form select:focus {
  outline: none;
  border-color: rgba(0, 176, 80, 0.45);
  box-shadow: 0 0 0 4px rgba(0, 176, 80, 0.12);
}

.form-note {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.site-footer .contact-list strong,
.site-footer .contact-list li,
.site-footer .footer-copy {
  color: rgba(255, 255, 255, 0.84);
}

.hero-home .hero-photo-card img {
  object-fit: cover;
}

.hero-home .hero-photo-card.tall img {
  min-height: 520px;
  object-position: center center;
}

.hero-home .hero-photo-card.short img {
  min-height: 245px;
  object-position: center center;
}

@media (max-width: 820px) {
  .form-split {
    grid-template-columns: 1fr;
  }
}


/* --- polish pass v3 --- */
.pricing-card,
.pricing-card strong,
.pricing-card small,
.pricing-card p {
  font-variant-numeric: tabular-nums;
}

.scheme-highlight {
  background:
    radial-gradient(circle at top right, rgba(0, 176, 80, 0.08), transparent 30%),
    linear-gradient(135deg, #f8fbff, #eef5ff 55%, #f7fafc);
}

.scheme-header {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.scheme-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(0, 176, 80, 0.12);
  color: var(--green-deep);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.scheme-subtext {
  color: var(--navy);
  font-weight: 700;
}

.scheme-note {
  padding: 20px 22px;
  margin-bottom: 16px;
  border-top: 4px solid var(--green);
  background: linear-gradient(135deg, rgba(0, 176, 80, 0.08), rgba(21, 42, 99, 0.02));
}

.scheme-note strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy-deep);
}

.scheme-note p {
  margin: 0;
  color: var(--muted);
}

.scheme-highlight .two-column-split > * {
  min-width: 0;
}

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

.scheme-grid .pricing-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px;
  border-radius: 24px;
}

.scheme-grid .pricing-card strong {
  margin-bottom: 2px;
  font-size: clamp(1.55rem, 1.55vw, 1.9rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.scheme-grid .pricing-card p {
  min-height: 78px;
  margin: 0;
}

.scheme-grid .pricing-card small {
  margin-top: auto;
  display: block;
  line-height: 1.5;
}

.scheme-grid .pricing-card.featured {
  background: linear-gradient(180deg, rgba(0, 176, 80, 0.12), rgba(21, 42, 99, 0.03));
  box-shadow: 0 18px 36px rgba(16, 38, 87, 0.08);
}

.brochure-card {
  display: flex;
  flex-direction: column;
}

.brochure-card img {
  aspect-ratio: 4 / 5;
  object-fit: contain;
  object-position: center top;
  background: #fff;
  padding: 16px 16px 0;
}

.brochure-card div {
  padding: 18px 20px 22px;
}

.site-footer {
  padding-top: 44px;
}

.site-footer .container {
  width: min(1260px, calc(100% - 24px));
}

.footer-grid {
  grid-template-columns: 1.1fr 0.82fr 0.82fr 1.06fr;
  gap: 18px;
}

.footer-logo {
  max-width: 210px;
}

.footer-copy {
  max-width: 440px;
}

.site-footer ul {
  gap: 8px;
}

.footer-bottom {
  margin-top: 24px;
  padding: 18px 0 24px;
}

.phone-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 6px;
}

.phone-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(21, 42, 99, 0.12);
  background: rgba(21, 42, 99, 0.04);
  color: var(--navy);
  font-weight: 800;
  text-align: center;
}

.phone-chip:hover {
  border-color: rgba(0, 176, 80, 0.35);
  color: var(--green-deep);
}

.contact-list li.call-item {
  gap: 8px;
}

@media (max-width: 1100px) {
  .scheme-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .scheme-grid,
  .phone-links {
    grid-template-columns: 1fr;
  }

  .scheme-grid .pricing-card p {
    min-height: 0;
  }

  .site-footer .container {
    width: min(100%, calc(100% - 18px));
  }
}
