﻿:root {
  --ink: #061d2f;
  --muted: #52616c;
  --line: #d9e1e3;
  --paper: #fbfbf8;
  --white: #ffffff;
  --leaf: #5b7d2c;
  --moss: #7a9841;
  --steel: #6f7478;
  --shadow: 0 18px 50px rgba(6, 29, 47, 0.14);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; line-height: 1.5; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.site-header { position: fixed; top: 0; left: 0; z-index: 20; width: 100%; min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 14px clamp(18px, 4vw, 54px); background: rgba(255, 255, 255, 0.9); border-bottom: 1px solid rgba(217, 225, 227, 0.84); backdrop-filter: blur(16px); }
.brand { display: block; width: min(360px, 60vw); }
.brand img { width: 100%; height: auto; }
.site-nav { display: flex; align-items: center; gap: 28px; color: var(--ink); font-size: 0.9rem; font-weight: 700; text-transform: uppercase; }
.site-nav a { position: relative; }
.site-nav a::after { position: absolute; right: 0; bottom: -8px; left: 0; height: 2px; content: ""; transform: scaleX(0); transform-origin: left; background: var(--leaf); transition: transform 180ms ease; }
.site-nav a:hover::after { transform: scaleX(1); }
.nav-toggle { display: none; width: 42px; height: 42px; padding: 10px; border: 1px solid var(--line); background: var(--white); }
.nav-toggle span { display: block; height: 2px; margin: 5px 0; background: var(--ink); }
.hero { position: relative; min-height: 92vh; display: flex; align-items: flex-end; overflow: hidden; padding: 152px clamp(18px, 6vw, 78px) 72px; color: var(--white); }
.hero-media { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6, 29, 47, 0.88), rgba(6, 29, 47, 0.5) 48%, rgba(6, 29, 47, 0.18)), url("https://images.unsplash.com/photo-1600585154526-990dced4db0d?auto=format&fit=crop&w=1800&q=82") center / cover; }
.hero-content { position: relative; max-width: 760px; }
.eyebrow { margin: 0 0 12px; color: var(--leaf); font-size: 0.78rem; font-weight: 800; letter-spacing: 0; text-transform: uppercase; }
.hero .eyebrow, .proof .eyebrow { color: #bcd68a; }
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 18px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(4.4rem, 10vw, 8.5rem); line-height: 0.9; font-weight: 500; }
h2 { margin-bottom: 0; font-size: clamp(2rem, 4vw, 4rem); line-height: 1.03; }
h3 { margin-bottom: 10px; font-size: 1.28rem; line-height: 1.15; }
.hero p:not(.eyebrow) { max-width: 660px; color: rgba(255, 255, 255, 0.9); font-size: clamp(1.05rem, 2.2vw, 1.35rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; padding: 13px 20px; border: 1px solid transparent; border-radius: 4px; font-weight: 800; transition: transform 180ms ease, background 180ms ease, border-color 180ms ease; }
.button:hover { transform: translateY(-2px); }
.button.primary { color: var(--white); background: var(--leaf); }
.button.primary:hover { background: #486723; }
.button.secondary { color: var(--white); border-color: rgba(255,255,255,0.62); background: rgba(255,255,255,0.08); }
.section-band { padding: clamp(58px, 8vw, 108px) clamp(18px, 5vw, 72px); }
.section-inner { width: min(1180px, 100%); margin: 0 auto; }
.split { display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.85fr); gap: clamp(28px, 7vw, 90px); align-items: start; }
.intro, .process { background: var(--white); }
.intro p:last-child, .contact p { color: var(--muted); font-size: 1.1rem; }
.section-heading { max-width: 760px; margin-bottom: 34px; }
.service-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.service-card { display: flex; min-height: 100%; flex-direction: column; overflow: hidden; border: 1px solid var(--line); border-radius: 8px; background: var(--white); box-shadow: 0 10px 24px rgba(6, 29, 47, 0.06); }
.service-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.service-card div { padding: 22px; }
.service-card p, .project-grid p, .proof-points span, .steps span { color: var(--muted); }
.projects { background: #eef3ee; }
.project-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; overflow: hidden; border: 1px solid #cfd9d2; border-radius: 8px; background: #cfd9d2; }
.project-grid article { min-height: 248px; padding: 26px; background: var(--white); }
.project-grid span { display: inline-block; margin-bottom: 26px; color: var(--moss); font-weight: 900; }
.steps { display: grid; gap: 18px; margin: 0; padding: 0; list-style: none; counter-reset: step; }
.steps li { position: relative; padding-left: 68px; counter-increment: step; }
.steps li::before { position: absolute; top: 0; left: 0; width: 42px; height: 42px; display: grid; place-items: center; content: counter(step); color: var(--white); border-radius: 50%; background: var(--ink); font-weight: 900; }
.steps strong, .proof-points strong { display: block; margin-bottom: 5px; }
.proof { color: var(--white); background: var(--ink); }
.proof-inner { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1fr); gap: clamp(28px, 7vw, 78px); }
.proof-points { display: grid; gap: 1px; overflow: hidden; border: 1px solid rgba(255,255,255,0.14); border-radius: 8px; background: rgba(255,255,255,0.14); }
.proof-points div { padding: 22px; background: rgba(255,255,255,0.06); }
.proof-points span { color: rgba(255,255,255,0.72); }
.contact { background: linear-gradient(rgba(251,251,248,0.92), rgba(251,251,248,0.92)), url("https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?auto=format&fit=crop&w=1600&q=80") center / cover; }
.contact-inner { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.75fr); gap: clamp(28px, 8vw, 96px); align-items: start; }
.contact-form { display: grid; gap: 16px; padding: clamp(22px, 4vw, 32px); border: 1px solid var(--line); border-radius: 8px; background: var(--white); box-shadow: var(--shadow); }
label { display: grid; gap: 7px; color: var(--ink); font-size: 0.9rem; font-weight: 800; }
input, select, textarea { width: 100%; min-height: 46px; padding: 12px 13px; color: var(--ink); border: 1px solid #cbd5d8; border-radius: 4px; background: var(--white); font: inherit; }
textarea { resize: vertical; }
.site-footer { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 28px clamp(18px, 5vw, 72px); color: var(--white); background: #041523; }
.site-footer div { display: grid; gap: 3px; }
.site-footer span, .site-footer a { color: rgba(255,255,255,0.72); }
@media (max-width: 1040px) { .service-grid, .project-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 760px) {
  .site-header { min-height: 70px; }
  .brand { width: min(250px, 68vw); }
  .nav-toggle { display: block; }
  .site-nav { position: absolute; top: 100%; right: 14px; left: 14px; display: none; flex-direction: column; align-items: stretch; gap: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 8px; background: var(--white); box-shadow: var(--shadow); }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 16px 18px; border-bottom: 1px solid var(--line); }
  .site-nav a:last-child { border-bottom: 0; }
  .site-nav a::after { display: none; }
  .hero { min-height: 86vh; padding-top: 118px; padding-bottom: 44px; }
  .hero-media { background: linear-gradient(rgba(6, 29, 47, 0.83), rgba(6, 29, 47, 0.5)), url("https://images.unsplash.com/photo-1600585154526-990dced4db0d?auto=format&fit=crop&w=1200&q=82") center / cover; }
  h1 { font-size: clamp(3.5rem, 18vw, 5.4rem); }
  .split, .proof-inner, .contact-inner { grid-template-columns: 1fr; }
  .service-grid, .project-grid { grid-template-columns: 1fr; }
  .project-grid article { min-height: 0; }
  .site-footer { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 420px) { .hero-actions, .button { width: 100%; } }

.page-hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 150px clamp(18px, 6vw, 78px) 70px;
  color: var(--white);
}

.page-hero-media {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 29, 47, 0.9), rgba(6, 29, 47, 0.56) 52%, rgba(6, 29, 47, 0.2)), url("https://images.unsplash.com/photo-1600573472550-8090b5e0745e?auto=format&fit=crop&w=1800&q=82") center / cover;
}

.page-hero-content {
  position: relative;
  width: min(790px, 100%);
}

.page-hero .eyebrow {
  color: #bcd68a;
}

.page-hero p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2.2vw, 1.34rem);
}

.service-detail-row {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.82fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
}

.service-detail-row.reverse {
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 0.9fr);
}

.service-detail-row.reverse .service-detail-copy {
  order: 2;
}

.service-detail-row img {
  width: 100%;
  min-height: 420px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.service-detail-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.alt-band {
  background: var(--white);
}

.tick-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.tick-list li {
  position: relative;
  padding-left: 30px;
  color: var(--ink);
  font-weight: 700;
}

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

.service-packages {
  background: #eef3ee;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.package-grid article {
  min-height: 230px;
  padding: 28px;
  border: 1px solid #cfd9d2;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(6, 29, 47, 0.06);
}

.package-grid p {
  color: var(--muted);
}

.service-cta {
  color: var(--white);
  background: var(--ink);
}

.service-cta .eyebrow {
  color: #bcd68a;
}

.service-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.service-cta-inner h2 {
  max-width: 820px;
}

@media (max-width: 900px) {
  .service-detail-row,
  .service-detail-row.reverse {
    grid-template-columns: 1fr;
  }

  .service-detail-row.reverse .service-detail-copy {
    order: 0;
  }

  .service-detail-row img {
    min-height: 300px;
  }

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

  .service-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  .page-hero {
    min-height: 68vh;
    padding-top: 118px;
    padding-bottom: 44px;
  }
}

.contact-hero-media {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 29, 47, 0.9), rgba(6, 29, 47, 0.56) 52%, rgba(6, 29, 47, 0.2)), url("https://images.unsplash.com/photo-1600566752355-35792bedcfea?auto=format&fit=crop&w=1800&q=82") center / cover;
}

.contact-page {
  background: var(--paper);
}

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(360px, 1fr);
  gap: clamp(28px, 7vw, 86px);
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 16px;
}

.contact-method,
.contact-note {
  display: grid;
  gap: 6px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(6, 29, 47, 0.06);
}

.contact-method span {
  color: var(--leaf);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-method strong {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  overflow-wrap: anywhere;
}

.contact-note {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.contact-note p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.contact-page-form {
  position: sticky;
  top: 112px;
}

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

@media (max-width: 900px) {
  .contact-page-grid {
    grid-template-columns: 1fr;
  }

  .contact-page-form {
    position: static;
  }
}

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

.projects-hero-media {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 29, 47, 0.9), rgba(6, 29, 47, 0.54) 52%, rgba(6, 29, 47, 0.2)), url("https://images.unsplash.com/photo-1600566753190-17f0baa2a6c3?auto=format&fit=crop&w=1800&q=82") center / cover;
}

.process-hero-media {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 29, 47, 0.9), rgba(6, 29, 47, 0.56) 52%, rgba(6, 29, 47, 0.2)), url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1800&q=82") center / cover;
}

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

.case-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(6, 29, 47, 0.06);
}

.case-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.case-card div {
  padding: 24px;
}

.case-card span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--leaf);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.case-card p,
.planning-list p,
.timeline-list p,
.prep-cards p {
  color: var(--muted);
}

.planning-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid #cfd9d2;
  border-radius: 8px;
  background: #cfd9d2;
}

.planning-list article {
  padding: 22px;
  background: var(--white);
}

.planning-list p {
  margin-bottom: 0;
}

.project-cta {
  color: var(--white);
  background: var(--ink);
}

.project-cta .eyebrow {
  color: #bcd68a;
}

.timeline-list {
  display: grid;
  gap: 18px;
}

.timeline-list article {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 22px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(6, 29, 47, 0.05);
}

.timeline-list span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  background: var(--ink);
  font-weight: 900;
}

.timeline-list p {
  margin-bottom: 0;
}

.prep-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(28px, 7vw, 86px);
}

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

.prep-cards article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.prep-cards p {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .case-grid,
  .prep-grid,
  .prep-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .timeline-list article {
    grid-template-columns: 1fr;
  }
}

.popup{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.6);
    z-index:9999;
    justify-content:center;
    align-items:center;
}

.popup-content{
    background:#fff;
    padding:30px;
    border-radius:10px;
    max-width:400px;
    width:90%;
    text-align:center;
}

.popup-content h3{
    margin-top:0;
}

.popup-content button{
    margin-top:15px;
    padding:10px 20px;
    cursor:pointer;
}