:root {
  --green-950: #062f23;
  --green-900: #083d2c;
  --green-800: #0a4a34;
  --green-700: #145e43;
  --green-600: #1f7652;
  --lime-500: #b8cf45;
  --lime-400: #c8dc67;
  --lime-100: #f0f5d5;
  --cream: #f7f7ef;
  --paper: #ffffff;
  --ink: #173128;
  --muted: #607068;
  --line: #dce4d9;
  --red: #d94343;
  --blue: #2698bd;
  --shadow-sm: 0 8px 24px rgba(8, 61, 44, 0.08);
  --shadow-md: 0 18px 50px rgba(8, 61, 44, 0.14);
  --shadow-lg: 0 28px 80px rgba(4, 43, 31, 0.22);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

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

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

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

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

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  padding: 10px 14px;
  border-radius: 8px;
  background: white;
  color: var(--green-900);
  box-shadow: var(--shadow-sm);
  transform: translateY(-140%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.announcement-bar {
  background: var(--green-950);
  color: #eff7ed;
  font-size: 0.84rem;
  letter-spacing: 0.02em;
}

.announcement-inner {
  min-height: 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.announcement-inner a {
  color: var(--lime-400);
}

.announcement-inner a:hover {
  color: white;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(247, 247, 239, 0.94);
  border-bottom: 1px solid rgba(8, 61, 44, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-mark {
  width: 48px;
  height: 58px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(8, 61, 44, 0.13);
  border-radius: 13px;
  background: #b9cf56;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.25);
}

.brand-mark img {
  width: 50px;
  height: 58px;
  object-fit: cover;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  color: var(--green-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 1.58rem);
  font-weight: 800;
  letter-spacing: -0.035em;
}

.brand-tagline {
  margin-top: 6px;
  color: var(--green-700);
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #2d4f42;
  font-size: 0.93rem;
  font-weight: 700;
}

.primary-nav > a:not(.nav-cta) {
  position: relative;
  padding-block: 10px;
}

.primary-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 4px;
  height: 2px;
  background: var(--lime-500);
  transition: right 180ms ease;
}

.primary-nav > a:not(.nav-cta):hover::after,
.primary-nav > a:not(.nav-cta):focus-visible::after {
  right: 0;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 43px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--green-800);
  color: white;
  box-shadow: var(--shadow-sm);
}

.nav-cta:hover {
  background: var(--green-700);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  border-radius: 12px;
  background: var(--green-900);
  color: white;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 10%, rgba(184, 207, 69, 0.16), transparent 27%),
    linear-gradient(130deg, var(--green-950) 0%, var(--green-900) 55%, #0d5139 100%);
  color: white;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.1;
  background-image:
    linear-gradient(115deg, transparent 0 46%, rgba(255,255,255,0.18) 46% 48%, transparent 48% 100%);
  background-size: 120px 100%;
}

.hero-stripe {
  position: absolute;
  inset: 0 auto 0 0;
  width: 9px;
  background: linear-gradient(to bottom, var(--red) 0 33.333%, white 33.333% 66.666%, var(--blue) 66.666% 100%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 660px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(42px, 7vw, 86px);
  align-items: center;
  padding-block: 78px 92px;
}

.hero-copy {
  max-width: 590px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--green-700);
  font-size: 0.77rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

.hero h1,
.section h2,
.quote-section h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.03;
}

.hero h1 {
  max-width: 660px;
  font-size: clamp(3.2rem, 6vw, 5.75rem);
}

.hero h1 span {
  color: var(--lime-400);
}

.hero-lead {
  max-width: 580px;
  margin: 26px 0 0;
  color: rgba(244, 250, 246, 0.82);
  font-size: clamp(1.03rem, 1.7vw, 1.22rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button svg {
  width: 20px;
  height: 20px;
  transition: transform 160ms ease;
}

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

.button:hover svg {
  transform: translateX(3px);
}

.button-primary {
  background: var(--lime-500);
  color: var(--green-950);
  box-shadow: 0 13px 30px rgba(184, 207, 69, 0.22);
}

.button-primary:hover {
  background: var(--lime-400);
  box-shadow: 0 16px 36px rgba(184, 207, 69, 0.28);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.06);
  color: white;
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.12);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 30px 0 0;
  padding: 0;
  color: rgba(246, 251, 247, 0.8);
  font-size: 0.86rem;
  font-weight: 700;
  list-style: none;
}

.hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-points svg {
  width: 17px;
  height: 17px;
  padding: 2px;
  border-radius: 50%;
  background: var(--lime-500);
  color: var(--green-950);
  stroke-width: 2.5;
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.hero-photo-wrap {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 6px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  background: var(--green-800);
  box-shadow: var(--shadow-lg);
  transform: rotate(1.2deg);
}

.hero-photo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to top, rgba(4, 36, 26, 0.44), transparent 42%);
}

.hero-photo-wrap > img {
  width: 100%;
  min-height: 500px;
  object-fit: cover;
}

.photo-badge {
  position: absolute;
  z-index: 2;
  left: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: calc(100% - 44px);
  padding: 13px 16px;
  border: 1px solid rgba(255,255,255,0.34);
  border-radius: 15px;
  background: rgba(6, 47, 35, 0.85);
  color: white;
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.16);
}

.photo-badge-icon {
  width: 31px;
  height: 31px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--lime-500);
  color: var(--green-950);
  font-weight: 900;
}

.photo-badge strong,
.photo-badge small {
  display: block;
}

.photo-badge strong {
  font-size: 0.86rem;
}

.photo-badge small {
  margin-top: 2px;
  color: rgba(255,255,255,0.7);
  font-size: 0.69rem;
}

.hero-note {
  position: absolute;
  right: -22px;
  top: -22px;
  z-index: 4;
  width: 155px;
  padding: 15px 17px;
  border: 1px solid rgba(8, 61, 44, 0.12);
  border-radius: 16px;
  background: var(--lime-500);
  color: var(--green-950);
  box-shadow: var(--shadow-md);
  transform: rotate(3deg);
}

.hero-note span,
.hero-note strong {
  display: block;
}

.hero-note span {
  margin-bottom: 3px;
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-note strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  line-height: 1.12;
}

.trust-strip {
  position: relative;
  z-index: 5;
  margin-top: -34px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid rgba(8, 61, 44, 0.12);
  border-radius: 20px;
  background: white;
  box-shadow: var(--shadow-md);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 15px;
  min-height: 112px;
  padding: 24px 28px;
}

.trust-item + .trust-item {
  border-left: 1px solid var(--line);
}

.icon-box {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--lime-100);
  color: var(--green-700);
}

.icon-box svg {
  width: 25px;
  height: 25px;
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  color: var(--green-900);
  font-size: 0.92rem;
}

.trust-item div > span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.section {
  padding-block: 112px;
}

.section-heading {
  margin-bottom: 48px;
}

.section-heading.centered {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.section-heading.compact {
  margin-bottom: 38px;
}

.section-heading h2,
.about-copy h2 {
  color: var(--green-900);
  font-size: clamp(2.2rem, 4.1vw, 4.15rem);
}

.section-heading > p:last-child {
  max-width: 660px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.services {
  padding-top: 132px;
  background: var(--cream);
}

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

.service-card {
  position: relative;
  min-height: 326px;
  overflow: hidden;
  padding: 30px 27px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: white;
  box-shadow: 0 12px 34px rgba(8, 61, 44, 0.05);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card::after {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -40px;
  width: 135px;
  height: 135px;
  border-radius: 50%;
  background: var(--lime-100);
  opacity: 0.58;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(20, 94, 67, 0.25);
  box-shadow: var(--shadow-md);
}

.service-number {
  position: absolute;
  top: 22px;
  right: 23px;
  color: #b7c3bc;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.service-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--green-900);
  color: var(--lime-400);
  box-shadow: 0 12px 24px rgba(8, 61, 44, 0.16);
}

.service-icon svg {
  width: 28px;
  height: 28px;
}

.service-card h3 {
  position: relative;
  z-index: 1;
  margin: 30px 0 10px;
  color: var(--green-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.38rem;
  letter-spacing: -0.025em;
}

.service-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.work {
  overflow: hidden;
  background: white;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.75fr);
  gap: 60px;
  align-items: end;
}

.split-heading > p {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 1rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  gap: 14px;
}

.gallery-grid figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 18px;
  background: var(--green-900);
  box-shadow: 0 10px 24px rgba(8, 61, 44, 0.08);
}

.gallery-feature {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-grid figure:nth-child(4),
.gallery-grid figure:nth-child(5) {
  grid-column: span 1;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms cubic-bezier(.2,.75,.2,1);
}

.gallery-grid figure:hover img {
  transform: scale(1.045);
}

.gallery-grid figure::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to top, rgba(4, 35, 25, 0.58), transparent 45%);
}

.gallery-grid figcaption {
  position: absolute;
  z-index: 2;
  left: 18px;
  bottom: 15px;
  color: white;
  font-size: 0.82rem;
  font-weight: 800;
  text-shadow: 0 2px 8px rgba(0,0,0,0.35);
}

.about {
  position: relative;
  overflow: hidden;
  background: var(--lime-100);
}

.about::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.24;
  pointer-events: none;
  background-image: repeating-linear-gradient(115deg, transparent 0 90px, rgba(10,74,52,.08) 90px 92px);
}

.about-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(48px, 8vw, 96px);
  align-items: center;
}

.about-card {
  position: relative;
  max-width: 490px;
  padding: 26px;
  border: 1px solid rgba(8, 61, 44, 0.12);
  border-radius: 28px;
  background: rgba(255,255,255,0.76);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(8px);
}

.about-card img {
  width: 100%;
  border-radius: 18px;
}

.barber-stripes {
  position: absolute;
  top: -20px;
  left: 28px;
  right: 28px;
  height: 10px;
  border: 4px solid white;
  border-radius: 999px;
  background: linear-gradient(to right, var(--red) 0 33.333%, white 33.333% 66.666%, var(--blue) 66.666% 100%);
  box-shadow: var(--shadow-sm);
}

.about-copy > p:not(.eyebrow) {
  margin: 24px 0 0;
  color: #4b645a;
  font-size: 1.02rem;
  line-height: 1.8;
}

.about-checks {
  display: grid;
  gap: 17px;
  margin-top: 31px;
}

.about-checks > div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.about-checks svg {
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  margin-top: 2px;
  padding: 5px;
  border-radius: 50%;
  background: var(--green-900);
  color: var(--lime-400);
  stroke-width: 2.5;
}

.about-checks strong,
.about-checks small {
  display: block;
}

.about-checks strong {
  color: var(--green-900);
}

.about-checks small {
  margin-top: 3px;
  color: #607068;
  line-height: 1.5;
}

.process {
  background: var(--cream);
}

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

.process-grid::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 16.666%;
  right: 16.666%;
  height: 2px;
  background: linear-gradient(to right, var(--green-700), var(--lime-500), var(--green-700));
  opacity: 0.35;
}

.process-grid li {
  position: relative;
  padding: 0 26px;
  text-align: center;
}

.process-grid li > span {
  position: relative;
  z-index: 2;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  border: 5px solid var(--cream);
  border-radius: 50%;
  background: var(--green-900);
  color: var(--lime-400);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-weight: 800;
  box-shadow: 0 0 0 1px rgba(8,61,44,.12), var(--shadow-sm);
}

.process-grid h3 {
  margin: 0 0 8px;
  color: var(--green-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.process-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.7;
}

.quote-section {
  position: relative;
  overflow: hidden;
  padding-block: 105px;
  background:
    radial-gradient(circle at 88% 15%, rgba(184,207,69,0.16), transparent 25%),
    linear-gradient(135deg, var(--green-950), var(--green-900));
  color: white;
}

.quote-section::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.08;
  pointer-events: none;
  background-image: repeating-linear-gradient(115deg, transparent 0 80px, white 80px 82px);
}

.quote-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(500px, 1.2fr);
  gap: clamp(48px, 8vw, 90px);
  align-items: start;
}

.eyebrow.light {
  color: var(--lime-400);
}

.quote-section h2 {
  max-width: 560px;
  font-size: clamp(2.7rem, 5vw, 4.7rem);
}

.quote-copy > p:not(.eyebrow):not(.service-area) {
  max-width: 480px;
  margin: 24px 0 0;
  color: rgba(244,250,246,.76);
  font-size: 1.03rem;
  line-height: 1.75;
}

.direct-contact {
  margin-top: 30px;
}

.direct-contact a {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding: 15px 18px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 16px;
  background: rgba(255,255,255,.07);
  transition: transform 160ms ease, background 160ms ease;
}

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

.contact-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--lime-500);
  color: var(--green-950);
}

.contact-icon svg {
  width: 22px;
  height: 22px;
}

.direct-contact small,
.direct-contact strong {
  display: block;
}

.direct-contact small {
  color: rgba(255,255,255,.62);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.direct-contact strong {
  margin-top: 2px;
  color: white;
  font-size: 1.15rem;
}

.service-area {
  max-width: 470px;
  margin: 29px 0 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.15);
  color: rgba(244,250,246,.66);
  font-size: .88rem;
}

.service-area strong {
  color: white;
}

.quote-form {
  padding: 33px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 25px;
  background: white;
  color: var(--ink);
  box-shadow: var(--shadow-lg);
}

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

.quote-form label {
  display: block;
  margin-bottom: 17px;
  color: var(--green-900);
  font-size: .82rem;
  font-weight: 800;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  margin-top: 7px;
  border: 1px solid #cfd9d2;
  border-radius: 12px;
  background: #fbfcfa;
  color: var(--ink);
  outline: none;
  transition: border-color 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

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

.quote-form textarea {
  min-height: 118px;
  padding: 12px 13px;
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--green-600);
  background: white;
  box-shadow: 0 0 0 4px rgba(31,118,82,.12);
}

.quote-form ::placeholder {
  color: #95a39b;
}

.checkbox-label {
  display: flex !important;
  align-items: flex-start;
  gap: 9px;
  margin: 4px 0 20px !important;
  color: #52655c !important;
  font-weight: 600 !important;
  line-height: 1.45;
}

.checkbox-label input {
  width: 18px;
  min-height: 18px;
  margin: 2px 0 0;
  accent-color: var(--green-700);
}

.form-submit {
  width: 100%;
  border: 0;
}

.form-note {
  margin: 12px 0 0;
  color: #7c8a83;
  font-size: 0.72rem;
  text-align: center;
}

.hidden-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.site-footer {
  padding: 48px 0 28px;
  background: #052b20;
  color: rgba(255,255,255,.68);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr auto;
  gap: 50px;
  align-items: center;
}

.footer-brand .brand-name {
  color: white;
}

.footer-brand .brand-tagline {
  color: var(--lime-400);
}

.footer-grid > p {
  margin: 0;
  max-width: 360px;
  font-size: .84rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 9px 26px;
  justify-content: end;
  font-size: .82rem;
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--lime-400);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.48);
  font-size: .73rem;
}

.mobile-contact-bar {
  display: none;
}

:focus-visible {
  outline: 3px solid var(--lime-500);
  outline-offset: 3px;
}

@media (max-width: 1060px) {
  .primary-nav {
    gap: 18px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1.05fr);
    gap: 48px;
  }

  .hero-photo-wrap > img {
    min-height: 450px;
  }

  .trust-item {
    padding: 22px 20px;
  }

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

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

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

  .gallery-feature {
    grid-column: span 2;
  }

  .gallery-grid figure:nth-child(4),
  .gallery-grid figure:nth-child(5) {
    grid-column: span 1;
  }

  .quote-grid {
    grid-template-columns: minmax(0, .82fr) minmax(430px, 1.18fr);
    gap: 46px;
  }
}

@media (max-width: 880px) {
  .announcement-inner span:first-child {
    display: none;
  }

  .announcement-inner {
    justify-content: center;
  }

  .header-inner {
    min-height: 72px;
  }

  .nav-toggle {
    display: block;
    position: relative;
    z-index: 1002;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .primary-nav {
    position: fixed;
    top: 107px;
    left: 20px;
    right: 20px;
    z-index: 1001;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(8,61,44,.12);
    border-radius: 19px;
    background: white;
    box-shadow: var(--shadow-lg);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-12px) scale(.98);
    transform-origin: top;
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  }

  .primary-nav.open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  .primary-nav > a:not(.nav-cta) {
    padding: 13px 14px;
    border-bottom: 1px solid #edf1ed;
  }

  .primary-nav > a:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    margin-top: 10px;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 54px;
    padding-block: 74px 92px;
  }

  .hero-copy {
    max-width: 700px;
  }

  .hero-visual {
    max-width: 690px;
    margin-inline: auto;
  }

  .hero-photo-wrap > img {
    min-height: 0;
  }

  .hero-note {
    right: -8px;
  }

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

  .trust-item + .trust-item {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .trust-item {
    min-height: 94px;
  }

  .section {
    padding-block: 88px;
  }

  .services {
    padding-top: 110px;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 230px;
  }

  .gallery-feature {
    grid-column: span 2;
  }

  .gallery-grid figure:nth-child(4),
  .gallery-grid figure:nth-child(5) {
    grid-column: span 1;
  }

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

  .about-card {
    max-width: 570px;
    margin-inline: auto;
  }

  .process-grid::before {
    display: none;
  }

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

  .quote-copy {
    max-width: 660px;
  }

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

  .footer-grid > p {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

@media (max-width: 620px) {
  html {
    scroll-padding-top: 90px;
  }

  body {
    padding-bottom: 67px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .announcement-bar {
    display: none;
  }

  .site-header {
    top: 0;
  }

  .header-inner {
    min-height: 67px;
  }

  .brand {
    gap: 9px;
  }

  .brand-mark {
    width: 39px;
    height: 48px;
    border-radius: 10px;
  }

  .brand-mark img {
    width: 42px;
    height: 49px;
  }

  .brand-name {
    font-size: 1.2rem;
  }

  .brand-tagline {
    margin-top: 4px;
    font-size: .49rem;
    letter-spacing: .1em;
  }

  .primary-nav {
    top: 78px;
    left: 14px;
    right: 14px;
  }

  .hero-stripe {
    width: 6px;
  }

  .hero-grid {
    gap: 43px;
    padding-block: 58px 78px;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 13vw, 4.2rem);
  }

  .hero-lead {
    margin-top: 21px;
    font-size: .98rem;
  }

  .hero-actions {
    display: grid;
    margin-top: 28px;
  }

  .button {
    width: 100%;
  }

  .hero-points {
    display: grid;
    gap: 9px;
  }

  .hero-photo-wrap {
    border-width: 4px;
    border-radius: 22px;
    transform: none;
  }

  .hero-note {
    display: none;
  }

  .photo-badge {
    left: 13px;
    right: 13px;
    bottom: 13px;
    max-width: none;
  }

  .trust-strip {
    margin-top: -24px;
  }

  .trust-item {
    padding: 20px;
  }

  .section {
    padding-block: 72px;
  }

  .services {
    padding-top: 92px;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2,
  .about-copy h2 {
    font-size: clamp(2.15rem, 11vw, 3.1rem);
  }

  .section-heading > p:last-child {
    margin-top: 15px;
    font-size: .95rem;
  }

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

  .service-card {
    min-height: 0;
    padding: 26px 24px;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: 235px;
  }

  .gallery-feature,
  .gallery-grid figure:nth-child(4),
  .gallery-grid figure:nth-child(5) {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-feature {
    min-height: 315px;
  }

  .about-grid {
    gap: 42px;
  }

  .about-card {
    padding: 16px;
    border-radius: 22px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .process-grid li {
    padding: 0 8px;
  }

  .quote-section {
    padding-block: 76px;
  }

  .quote-section h2 {
    font-size: clamp(2.55rem, 13vw, 3.8rem);
  }

  .quote-grid {
    gap: 38px;
  }

  .quote-form {
    padding: 24px 18px;
    border-radius: 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-grid > p {
    grid-column: auto;
    grid-row: auto;
  }

  .footer-links {
    justify-content: start;
  }

  .footer-bottom {
    display: grid;
  }

  .mobile-contact-bar {
    position: fixed;
    z-index: 1200;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    min-height: 67px;
    padding-bottom: env(safe-area-inset-bottom);
    border-top: 1px solid rgba(255,255,255,.14);
    background: rgba(6,47,35,.97);
    color: white;
    box-shadow: 0 -10px 30px rgba(4,35,25,.2);
    backdrop-filter: blur(12px);
  }

  .mobile-contact-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: .78rem;
    font-weight: 800;
  }

  .mobile-contact-bar a + a {
    border-left: 1px solid rgba(255,255,255,.12);
  }

  .mobile-contact-bar a:last-child {
    background: var(--lime-500);
    color: var(--green-950);
  }

  .mobile-contact-bar svg {
    width: 19px;
    height: 19px;
  }
}

@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;
  }
}
