:root {
  --ink: #102322;
  --muted: #5e6a66;
  --line: #d9e2dc;
  --surface: #f7faf7;
  --white: #ffffff;
  --pine: #153f3a;
  --pine-2: #1f5f58;
  --coral: #e7694a;
  --sun: #f4c96f;
  --aqua: #69b8ae;
  --shadow: 0 24px 70px rgba(16, 35, 34, 0.16);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(21, 63, 58, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(21, 63, 58, 0.045) 1px, transparent 1px),
    var(--surface);
  background-size: 32px 32px;
}

a {
  color: inherit;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 36px rgba(16, 35, 34, 0.1);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.site-header.is-scrolled .brand-mark {
  border-color: rgba(21, 63, 58, 0.14);
  background: rgba(21, 63, 58, 0.06);
}

.brand-mark svg {
  width: 22px;
  height: 22px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.98rem;
  line-height: 1.1;
}

.brand small {
  margin-top: 2px;
  color: currentColor;
  font-size: 0.78rem;
  opacity: 0.72;
}

nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

.site-header.is-scrolled nav {
  border-color: rgba(21, 63, 58, 0.12);
  background: rgba(21, 63, 58, 0.04);
}

nav a {
  padding: 9px 13px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 700;
}

nav a:hover {
  background: rgba(255, 255, 255, 0.18);
}

.site-header.is-scrolled nav a:hover {
  background: rgba(21, 63, 58, 0.08);
}

.header-call {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 15px;
  border-radius: 999px;
  background: var(--coral);
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(231, 105, 74, 0.28);
}

.header-call svg,
.button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(10, 32, 30, 0.88) 0%, rgba(10, 32, 30, 0.68) 34%, rgba(10, 32, 30, 0.16) 70%),
    linear-gradient(0deg, rgba(10, 32, 30, 0.7) 0%, transparent 38%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1140px, calc(100% - 36px));
  margin: 0 auto;
  padding: 148px 0 34px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero .eyebrow {
  color: var(--sun);
}

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

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.25rem, 8.6vw, 7.8rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 665px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.04rem, 1.9vw, 1.35rem);
  line-height: 1.6;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font: inherit;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button.primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 18px 34px rgba(231, 105, 74, 0.28);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 980px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
}

.hero-facts div {
  padding: 18px;
  background: rgba(8, 33, 29, 0.48);
  backdrop-filter: blur(18px);
}

dt {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero-facts dt {
  color: rgba(255, 255, 255, 0.58);
}

dd {
  margin: 5px 0 0;
  line-height: 1.35;
  font-weight: 760;
}

.trust-strip,
.section {
  width: min(1140px, calc(100% - 36px));
  margin-inline: auto;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: -18px;
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.trust-strip div {
  min-height: 164px;
  padding: 28px;
  background: var(--white);
}

.mesh-dot {
  display: block;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(21, 63, 58, 0.28) 1px, transparent 1px),
    linear-gradient(0deg, rgba(21, 63, 58, 0.28) 1px, transparent 1px),
    #e9f2ed;
  background-size: 7px 7px;
}

.trust-strip strong {
  display: block;
  margin-bottom: 8px;
}

.trust-strip p,
.section-heading p,
.photo-copy p,
.proof-copy p,
.quote-copy p,
.process-list p,
.service-card p,
footer p {
  color: var(--muted);
  line-height: 1.65;
}

.section {
  padding: clamp(64px, 9vw, 112px) 0 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: end;
  gap: clamp(28px, 6vw, 84px);
  margin-bottom: 34px;
}

.section-heading.compact {
  display: block;
  max-width: 700px;
}

h2 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.6vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.photo-copy p,
.proof-copy p,
.quote-copy p {
  margin-bottom: 0;
  font-size: 1.02rem;
}

.photo-section {
  display: grid;
  grid-template-columns: 0.52fr 1fr;
  gap: clamp(24px, 6vw, 72px);
  align-items: center;
}

.photo-copy h2 {
  margin-bottom: 18px;
}

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

.photo-frame {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.photo-frame.featured {
  grid-row: span 2;
}

.photo-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.photo-frame.featured img {
  height: 100%;
  min-height: 420px;
  aspect-ratio: auto;
}

.photo-frame figcaption {
  padding: 13px 16px 15px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

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

.service-card {
  min-height: 285px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(31, 95, 88, 0.26);
  box-shadow: 0 18px 42px rgba(16, 35, 34, 0.1);
}

.service-card svg {
  width: 36px;
  height: 36px;
  margin-bottom: 30px;
  color: var(--pine-2);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
  line-height: 1.2;
}

.proof-section {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: clamp(24px, 6vw, 80px);
  align-items: center;
}

.proof-copy h2 {
  margin-bottom: 18px;
}

.proof-panel {
  padding: 30px;
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    var(--pine);
  background-size: 18px 18px;
  box-shadow: var(--shadow);
}

.proof-panel > span {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--sun);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0;
}

.proof-panel dl {
  margin: 0;
}

.proof-panel div {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.proof-panel dt {
  color: rgba(255, 255, 255, 0.58);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 32px 0 0;
  list-style: none;
}

.process-list li {
  min-height: 240px;
  padding: 28px;
  border-left: 4px solid var(--aqua);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(16, 35, 34, 0.06);
}

.process-list span {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--coral);
  font-weight: 900;
}

.quote-section {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: clamp(24px, 6vw, 76px);
  align-items: start;
  padding-bottom: clamp(64px, 8vw, 98px);
}

.quote-copy h2 {
  margin-bottom: 18px;
}

address {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-style: normal;
  line-height: 1.7;
}

address strong {
  display: block;
  color: var(--ink);
}

.quote-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}

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

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cfd9d3;
  border-radius: 8px;
  background: #fbfdfb;
  color: var(--ink);
  font: inherit;
  font-weight: 500;
}

input,
select {
  min-height: 48px;
  padding: 0 13px;
}

textarea {
  resize: vertical;
  padding: 13px;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(105, 184, 174, 0.28);
  border-color: var(--pine-2);
}

.quote-form .button {
  width: 100%;
  margin-top: 4px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--pine-2);
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.45;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  background: var(--white);
}

footer p {
  margin: 0;
  font-size: 0.9rem;
}

footer p:first-child {
  color: var(--ink);
  font-weight: 850;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  nav {
    display: none;
  }

  .hero-facts,
  .trust-strip,
  .section-heading,
  .photo-section,
  .photo-gallery,
  .service-grid,
  .proof-section,
  .process-list,
  .quote-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 94svh;
  }

  .service-card,
  .process-list li {
    min-height: 0;
  }
}

@media (max-width: 620px) {
  .site-header {
    gap: 10px;
    padding: 12px 14px;
  }

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

  .brand strong {
    max-width: 150px;
    font-size: 0.88rem;
  }

  .brand small,
  .header-call span {
    display: none;
  }

  .header-call {
    min-width: 44px;
    padding: 0;
    justify-content: center;
  }

  .hero-content {
    width: min(100% - 28px, 1140px);
    padding-bottom: 22px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(10, 32, 30, 0.86), rgba(10, 32, 30, 0.42)),
      linear-gradient(0deg, rgba(10, 32, 30, 0.78) 0%, transparent 44%);
  }

  h1 {
    font-size: clamp(3rem, 17vw, 4.8rem);
  }

  .hero-actions,
  footer {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .trust-strip,
  .section {
    width: min(100% - 28px, 1140px);
  }

  .trust-strip div,
  .service-card,
  .process-list li,
  .proof-panel,
  .quote-form {
    padding: 22px;
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3.1rem);
  }
}
