:root {
  --green-900: #083f35;
  --green-800: #0c5748;
  --green-700: #126b57;
  --green-600: #168269;
  --green-100: #e4f3ee;
  --green-50: #f3faf7;
  --teal: #1ea6e6;
  --cream: #fffdf8;
  --ink: #16312c;
  --muted: #64756f;
  --white: #ffffff;
  --line: #dbe7e2;
  --shadow: 0 24px 70px rgba(7, 55, 46, 0.14);
  --radius-lg: 28px;
  --radius-md: 18px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.menu-open {
  overflow: hidden;
}

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

img,
svg {
  display: block;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(219, 231, 226, 0.8);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--green-800);
  flex-shrink: 0;
}

.brand-mark {
  width: 92px;
  height: 58px;
  display: grid;
  place-items: center;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
}

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

.brand strong {
  font-size: 1.12rem;
  letter-spacing: 0.14em;
  line-height: 1.05;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.03em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 0.93rem;
  font-weight: 600;
}

.main-nav > a:not(.nav-cta):hover {
  color: var(--green-700);
}

.nav-cta {
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--green-700);
  color: var(--white);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: var(--green-50);
  padding: 11px;
}

.menu-button span {
  display: block;
  height: 2px;
  background: var(--green-800);
  margin: 5px 0;
  border-radius: 2px;
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(140deg, var(--cream) 0%, #f0faf6 58%, #e5f7f1 100%);
  min-height: 720px;
  display: flex;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.38;
  background-image: linear-gradient(rgba(18, 107, 87, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(18, 107, 87, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 88%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  opacity: 0.55;
}

.hero-glow-one {
  width: 420px;
  height: 420px;
  background: rgba(66, 194, 160, 0.19);
  top: -190px;
  right: -80px;
}

.hero-glow-two {
  width: 270px;
  height: 270px;
  background: rgba(18, 107, 87, 0.12);
  bottom: -110px;
  left: 16%;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 80px;
  align-items: center;
  padding: 110px 0 94px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green-700);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  font-weight: 800;
}

.hero h1,
.section h2,
.location-grid h2,
.contact-card h2 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.hero h1 {
  max-width: 690px;
  font-size: clamp(3.2rem, 6vw, 5.7rem);
  color: var(--green-900);
}

.hero-text {
  max-width: 650px;
  margin: 26px 0 0;
  color: #526a63;
  font-size: 1.12rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  margin-top: 34px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--green-700);
  box-shadow: 0 12px 25px rgba(18, 107, 87, 0.22);
}

.button-primary:hover {
  background: var(--green-800);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--line);
  color: var(--green-800);
  flex-shrink: 0;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 30px;
  color: var(--green-800);
  font-weight: 600;
  font-size: 0.87rem;
}

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

.hero-points span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}

.hero-card {
  position: relative;
  min-height: 455px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 36px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(224, 246, 239, 0.77));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: rgba(66, 194, 160, 0.18);
  right: -70px;
  bottom: -70px;
}

.scan-visual {
  width: min(320px, 90%);
  aspect-ratio: 1;
  margin: 0 auto;
  position: relative;
  display: grid;
  place-items: center;
}

.scan-ring {
  position: absolute;
  border-radius: 50%;
}

.ring-one {
  inset: 0;
  border: 1px dashed rgba(18, 107, 87, 0.3);
  animation: spin 18s linear infinite;
}

.ring-two {
  inset: 28px;
  border: 18px solid rgba(18, 107, 87, 0.08);
  box-shadow: inset 0 0 0 1px rgba(18, 107, 87, 0.09);
}

.scan-center {
  width: 152px;
  height: 152px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--green-700), var(--green-900));
  color: var(--white);
  box-shadow: 0 20px 45px rgba(8, 63, 53, 0.25);
}

.scan-center svg {
  width: 86px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.hero-card-content {
  position: relative;
  z-index: 2;
  margin-top: 22px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--green-900);
  font-weight: 650;
}

.hero-card-content p {
  margin: 0;
}

.status-dot {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 6px rgba(66, 194, 160, 0.14);
}

.trust-strip {
  position: relative;
  z-index: 4;
  margin-top: -38px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 18px 42px rgba(20, 63, 53, 0.09);
}

.trust-grid > div {
  padding: 28px 32px;
}

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

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

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

.trust-grid span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.88rem;
}

.section {
  padding: 110px 0;
}

.section-soft {
  background: var(--green-50);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 52px;
}

.section-heading h2,
.about-copy h2,
.location-grid h2,
.contact-card h2 {
  font-size: clamp(2.25rem, 4.5vw, 4rem);
  color: var(--green-900);
}

.section-heading > p:last-child,
.about-copy > p,
.location-copy {
  color: var(--muted);
  font-size: 1.04rem;
}

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

.service-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(14, 77, 64, 0.1);
}

.icon-box {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--green-100);
  color: var(--green-700);
}

.icon-box svg {
  width: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin: 24px 0 10px;
  color: var(--green-900);
  font-size: 1.28rem;
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.about-grid,
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  min-height: 430px;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(145deg, var(--green-900), var(--green-600));
}

.about-visual::before,
.about-visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.about-visual::before {
  width: 360px;
  height: 360px;
  right: -100px;
  top: -80px;
}

.about-visual::after {
  width: 230px;
  height: 230px;
  left: -70px;
  bottom: -80px;
}

.visual-panel {
  position: absolute;
  z-index: 2;
  border-radius: 20px;
  backdrop-filter: blur(12px);
}

.panel-main {
  left: 34px;
  right: 34px;
  bottom: 34px;
  padding: 30px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.panel-main strong,
.panel-small strong,
.panel-small span,
.mini-label {
  display: block;
}

.panel-main strong {
  margin-top: 12px;
  font-size: 2rem;
  line-height: 1.12;
}

.mini-label {
  color: #bff5e6;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
}

.panel-small {
  right: 34px;
  top: 34px;
  width: 210px;
  padding: 22px;
  color: var(--green-900);
  background: rgba(255, 255, 255, 0.88);
}

.panel-small span {
  color: var(--green-700);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.panel-small strong {
  margin-top: 8px;
  line-height: 1.25;
}

.check-list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  margin: 14px 0;
  padding-left: 34px;
  color: #425a53;
  font-weight: 550;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-700);
  font-size: 0.78rem;
  font-weight: 900;
}

.location-copy {
  margin: 18px 0 28px;
}

.map-card {
  position: relative;
  min-height: 390px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #eaf4f0;
  border: 1px solid var(--line);
}

.map-card::before,
.map-card::after,
.map-lines {
  content: "";
  position: absolute;
  inset: 0;
}

.map-card::before {
  background-image: linear-gradient(28deg, transparent 46%, rgba(18, 107, 87, 0.13) 47%, rgba(18, 107, 87, 0.13) 50%, transparent 51%), linear-gradient(105deg, transparent 46%, rgba(18, 107, 87, 0.11) 47%, rgba(18, 107, 87, 0.11) 50%, transparent 51%);
  background-size: 170px 140px, 210px 170px;
}

.map-lines {
  opacity: 0.55;
  background-image: radial-gradient(circle at 20% 30%, rgba(18, 107, 87, 0.15) 0 4px, transparent 5px), radial-gradient(circle at 74% 68%, rgba(18, 107, 87, 0.15) 0 4px, transparent 5px);
}

.map-pin {
  position: relative;
  z-index: 2;
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--green-700);
  box-shadow: 0 18px 40px rgba(8, 63, 53, 0.18);
}

.map-pin svg {
  width: 38px;
  fill: currentColor;
}

.map-pin svg circle {
  fill: var(--white);
}

.map-card span {
  position: absolute;
  z-index: 2;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  max-width: calc(100% - 40px);
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--green-900);
  background: rgba(255, 255, 255, 0.9);
  font-size: 0.87rem;
  font-weight: 700;
}

.contact-section {
  padding: 30px 0 90px;
}

.contact-card {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 50px;
  align-items: center;
  padding: 58px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--green-900), var(--green-700));
  color: var(--white);
  box-shadow: 0 24px 60px rgba(8, 63, 53, 0.2);
}

.eyebrow-light {
  color: #baf2e3;
}

.contact-card h2 {
  color: var(--white);
}

.contact-card p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.contact-actions {
  justify-content: flex-end;
}

.button-light {
  background: var(--white);
  color: var(--green-900);
}

.button-outline-light {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.44);
}

.site-footer {
  padding: 30px 0;
  border-top: 1px solid var(--line);
  background: var(--cream);
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: var(--muted);
  font-size: 0.87rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-logo {
  width: 74px;
  height: auto;
  object-fit: contain;
  flex: 0 0 auto;
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

.footer-brand strong {
  color: var(--green-900);
}

.footer-wrap p {
  margin: 0;
}

@media (max-width: 900px) {
  .menu-button {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: 79px 0 auto;
    padding: 26px 20px 32px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 38px rgba(17, 53, 45, 0.1);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 13px 16px;
    border-radius: 12px;
  }

  .main-nav > a:not(.nav-cta):hover {
    background: var(--green-50);
  }

  .nav-cta {
    text-align: center;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .about-grid,
  .location-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 50px;
    padding: 88px 0 96px;
  }

  .hero-card {
    min-height: 410px;
  }

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

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

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

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

  .about-grid,
  .location-grid {
    gap: 50px;
  }

  .contact-actions {
    justify-content: flex-start;
  }
}

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

  .nav-wrap {
    min-height: 72px;
  }

  .main-nav {
    inset: 73px 0 auto;
  }

  .hero-grid {
    padding-top: 72px;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 14vw, 4rem);
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-actions .button,
  .contact-actions .button {
    width: 100%;
  }

  .hero-points {
    flex-direction: column;
    gap: 10px;
  }

  .hero-card {
    min-height: 365px;
    padding: 24px;
    border-radius: 26px;
  }

  .scan-center {
    width: 124px;
    height: 124px;
  }

  .scan-center svg {
    width: 70px;
  }

  .section {
    padding: 82px 0;
  }

  .service-card {
    padding: 28px;
  }

  .about-visual {
    min-height: 380px;
  }

  .panel-main {
    left: 22px;
    right: 22px;
    bottom: 22px;
    padding: 24px;
  }

  .panel-main strong {
    font-size: 1.55rem;
  }

  .panel-small {
    right: 22px;
    top: 22px;
    width: 190px;
  }

  .contact-card {
    padding: 38px 26px;
    gap: 30px;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* Photography */
.hero-photo-card {
  padding: 14px;
  justify-content: flex-start;
  background: rgba(255, 255, 255, 0.9);
}

.hero-photo-wrap {
  position: relative;
  min-height: 360px;
  flex: 1;
  overflow: hidden;
  border-radius: 27px;
  background: var(--green-100);
}

.hero-photo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 63, 53, 0.25), transparent 52%);
  pointer-events: none;
}

.hero-photo,
.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo {
  position: absolute;
  inset: 0;
}

.photo-label {
  position: absolute;
  z-index: 3;
  top: 16px;
  left: 16px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  color: var(--white);
  background: rgba(8, 63, 53, 0.66);
  backdrop-filter: blur(8px);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-photo-card .hero-card-content {
  margin: 0;
  padding: 22px 16px 14px;
}

.about-visual {
  isolation: isolate;
  background: var(--green-900);
}

.about-photo {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.about-photo-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(150deg, rgba(8, 63, 53, 0.16) 10%, rgba(8, 63, 53, 0.77) 88%);
}

.about-visual::before,
.about-visual::after {
  z-index: -1;
}

.about-photo-label {
  top: 28px;
  left: 28px;
}

.footer-meta {
  max-width: 620px;
  text-align: right;
}

.photo-credit {
  margin-top: 4px !important;
  font-size: 0.73rem;
  line-height: 1.4;
}

@media (max-width: 900px) {
  .hero-photo-wrap {
    min-height: 430px;
  }
}

@media (max-width: 600px) {
  .hero-photo-card {
    padding: 10px;
  }

  .hero-photo-wrap {
    min-height: 330px;
    border-radius: 21px;
  }

  .hero-photo-card .hero-card-content {
    padding: 19px 12px 12px;
  }

  .about-photo-label {
    top: 20px;
    left: 20px;
  }

  .footer-meta {
    text-align: left;
  }
}


@media (max-width: 600px) {
  .brand { gap: 10px; }
  .brand-mark { width: 78px; height: 50px; }
  .brand strong { font-size: 1rem; letter-spacing: 0.11em; }
  .brand small { font-size: 0.72rem; }
  .footer-logo { width: 62px; }
}
