@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background: #F7F9F7;
}

body {
  background: #F7F9F7;
  color: #4A5A58;
  font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: #3D6B6A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: rgb(126.2884615385, 176.7115384615, 171.4038461538);
}

h1, h2, h3, h4, h5 {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #3D6B6A;
  line-height: 1.2;
  font-weight: 600;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

main {
  padding-top: 228px;
}
@media (max-width: 960px) {
  main {
    padding-top: 180px;
  }
}
@media (max-width: 768px) {
  main {
    padding-top: 130px;
  }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.logo-bar {
  background: #FFFFFF;
  height: 180px;
  border-bottom: 1px solid #D5E0DE;
}
.logo-bar-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0 24px;
}
@media (max-width: 768px) {
  .logo-bar {
    height: 130px;
  }
}

.site-logo {
  display: block;
}
.site-logo img {
  height: 140px;
  width: auto;
}
@media (max-width: 768px) {
  .site-logo img {
    height: 90px;
  }
}

.menu-icon {
  display: none;
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  padding: 6px;
}
.menu-icon svg {
  width: 24px;
  height: 24px;
  fill: #3D6B6A;
}
@media (max-width: 960px) {
  .menu-icon {
    display: flex;
    align-items: center;
  }
}

.nav-trigger {
  display: none;
  position: absolute;
}

.nav-bar {
  background: #8FAD8C;
  height: 48px;
  display: flex;
  align-items: center;
  position: relative;
  padding: 0 24px;
}
.nav-bar a {
  color: #FFFFFF;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}
.nav-bar a:hover, .nav-bar a.active {
  color: #FFFFFF;
  border-bottom-color: #C4B45A;
}
.nav-bar .nav-left {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
}
.nav-bar .nav-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-bar .nav-social {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-bar .nav-social a {
  display: flex;
  align-items: center;
  border-bottom: none;
  padding-bottom: 0;
}
.nav-bar .nav-social a svg {
  width: 18px;
  height: 18px;
  fill: #FFFFFF;
  transition: opacity 0.2s;
}
.nav-bar .nav-social a:hover svg {
  opacity: 0.75;
}
.nav-bar .nav-phone {
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
  border-bottom: none !important;
  padding-bottom: 0 !important;
}
@media (max-width: 960px) {
  .nav-bar {
    display: none;
  }
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1001;
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: pointer;
}
@media (max-width: 960px) {
  .nav-overlay {
    display: block;
    pointer-events: none;
  }
}

.nav-trigger:checked ~ .nav-overlay {
  opacity: 1;
  pointer-events: all;
}

.nav-drawer {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 100%;
  background: #8FAD8C;
  z-index: 1002;
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  flex-direction: column;
  overflow-y: auto;
}
@media (max-width: 960px) {
  .nav-drawer {
    display: flex;
  }
}

.nav-trigger:checked ~ .nav-drawer {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

.drawer-close {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 8px;
  border-radius: 3px;
  transition: background 0.2s;
}
.drawer-close:hover {
  background: rgba(255, 255, 255, 0.12);
}
.drawer-close svg {
  width: 22px;
  height: 22px;
  stroke: #FFFFFF;
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  padding: 8px 0;
  flex: 1;
}
.drawer-nav a {
  color: #FFFFFF;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 18px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.2s;
}
.drawer-nav a:hover, .drawer-nav a.active {
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
}
.drawer-nav a:last-child {
  border-bottom: none;
}

.drawer-footer {
  padding: 24px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}
.drawer-footer .drawer-phone {
  display: block;
  color: #FFFFFF;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 18px;
  transition: color 0.2s;
}
.drawer-footer .drawer-phone:hover {
  color: #C4B45A;
}
.drawer-footer .drawer-social {
  display: flex;
  gap: 16px;
}
.drawer-footer .drawer-social a {
  display: flex;
  align-items: center;
}
.drawer-footer .drawer-social a svg {
  width: 20px;
  height: 20px;
  fill: rgba(255, 255, 255, 0.75);
  transition: fill 0.2s;
}
.drawer-footer .drawer-social a:hover svg {
  fill: #FFFFFF;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  height: calc(100dvh - 228px);
  min-height: 360px;
}
@media (max-width: 960px) and (min-width: 769px) {
  .hero {
    height: calc(100dvh - 180px);
    min-height: 360px;
  }
}
.hero {
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: 38% 62%;
    height: calc(100svh - 130px);
    min-height: 520px;
  }
}
@media (max-width: 768px) and (max-height: 700px) {
  .hero {
    min-height: unset;
  }
}
.hero-text {
  background: #3D6B6A;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 56px;
  min-width: 0;
}
@media (max-width: 960px) {
  .hero-text {
    padding: 48px 36px;
  }
}
@media (min-width: 769px) and (max-height: 650px) {
  .hero-text {
    padding: 24px 40px;
  }
  .hero-text h1 {
    font-size: clamp(0.95rem, 1.8vw, 1.6rem);
  }
  .hero-text .tagline-line {
    margin-bottom: 0.3rem;
  }
  .hero-text .hero-eyebrow {
    font-size: 0.7rem;
    margin-bottom: 0.3rem;
  }
  .hero-text .hero-subtitle {
    font-size: 0.82rem;
    margin-bottom: 0.8rem;
  }
  .hero-text .hero-buttons {
    margin-top: 1rem;
  }
}
@media (max-width: 768px) {
  .hero-text {
    order: 2;
    padding: 24px 20px;
    justify-content: flex-start;
    overflow: hidden;
  }
}
@media (max-width: 768px) and (max-height: 700px) {
  .hero-text {
    padding: 16px 20px;
    font-size: 0.82rem;
  }
  .hero-text .hero-eyebrow {
    font-size: 0.68rem;
    margin-bottom: 0.4rem;
  }
  .hero-text .tagline-line {
    font-size: 0.92rem;
    margin-bottom: 0.4rem;
  }
  .hero-text .hero-subtitle {
    font-size: 0.78rem;
    margin-bottom: 0.6rem;
  }
  .hero-text .hero-buttons {
    display: none;
  }
}
.hero-image {
  background-size: cover;
  background-position: center;
  background-color: #3D6B6A;
  min-width: 0;
}
@media (max-width: 768px) {
  .hero-image {
    order: 1;
  }
}
.hero-eyebrow {
  font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #C4B45A;
  margin-bottom: 1.2rem;
}
.hero h1 {
  font-size: clamp(1.2rem, 2.2vw, 2.4rem);
  color: #FFFFFF;
  font-weight: 700;
  margin-bottom: 1.2rem;
}
.hero .tagline-line {
  display: block;
  margin-bottom: 1.2rem;
}
.hero .tagline-line:last-child {
  margin-bottom: 0;
}
.hero-subtitle {
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.4rem;
  max-width: 100%;
}
.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 3rem;
}
.hero-btn {
  display: inline-block;
  padding: 13px 28px;
  font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
.hero-btn--primary {
  background: #C4B45A;
  color: #3D6B6A;
}
.hero-btn--primary:hover {
  background: rgb(180.6160714286, 163.1017857143, 64.5839285714);
  transform: translateY(-2px);
}
.hero-btn--outline {
  background: transparent;
  color: #FFFFFF;
  border: 2px solid rgba(255, 255, 255, 0.6);
}
.hero-btn--outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #FFFFFF;
}

.mobile-hero-cta {
  display: none;
}
@media (max-width: 768px) and (max-height: 700px) {
  .mobile-hero-cta {
    display: flex;
    gap: 10px;
    padding: 12px 20px;
    background: #FFFFFF;
    border-top: 2px solid #D5E0DE;
  }
  .mobile-hero-cta .hero-btn {
    flex: 1;
    text-align: center;
    padding: 10px 12px;
    font-size: 0.75rem;
    white-space: nowrap;
  }
  .mobile-hero-cta .hero-btn.hero-btn--primary {
    background: #3D6B6A;
    color: #FFFFFF;
  }
  .mobile-hero-cta .hero-btn.hero-btn--outline {
    background: transparent;
    color: #3D6B6A;
    border-color: #3D6B6A;
  }
}

.stats-band {
  background: #3D6B6A;
  padding: 56px 0;
}
.stats-band .stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: center;
}
@media (max-width: 768px) {
  .stats-band .stats-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.stats-band .stat {
  padding: 0 20px;
}
.stats-band .stat + .stats-band .stat {
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}
@media (max-width: 768px) {
  .stats-band .stat + .stats-band .stat {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 32px;
  }
}
.stats-band .stat-number {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 700;
  color: #C4B45A;
  line-height: 1;
  margin-bottom: 10px;
}
.stats-band .stat-label {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

.services {
  padding: 90px 0;
  background: #FFFFFF;
}
.services-intro {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 52px;
}
.services-intro h2 {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}
.services-intro p {
  color: #7A8F8D;
  font-size: 1.05rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 820px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}
.services-card {
  background: #F7F9F7;
  border-top: 4px solid #9EC4C0;
  padding: 32px 26px;
  border-radius: 3px;
}
.services-card:nth-child(2) {
  border-top-color: #8FAD8C;
}
.services-card:nth-child(3) {
  border-top-color: #C4B45A;
}
.services-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}
.services-card p {
  color: #7A8F8D;
  font-size: 0.95rem;
  line-height: 1.65;
}
.services-card--link {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.services-card--link:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  color: inherit;
}

.services-card-cta {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: #3D6B6A;
  letter-spacing: 0.03em;
}
.services-card:hover .services-card-cta {
  color: rgb(46.1857142857, 81.0142857143, 80.2571428571);
}

.portfolio-preview {
  padding: 80px 0;
  background: #F7F9F7;
}
.portfolio-preview .section-intro {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
}
.portfolio-preview .section-intro h2 {
  font-size: 2rem;
  margin-bottom: 0.6rem;
}
.portfolio-preview .section-intro p {
  color: #7A8F8D;
  font-size: 1.05rem;
}

.view-all {
  text-align: center;
  margin-top: 44px;
}

.btn-outline {
  display: inline-block;
  border: 2px solid #3D6B6A;
  color: #3D6B6A;
  padding: 12px 30px;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover {
  background: #3D6B6A;
  color: #FFFFFF;
}

.cta-band {
  background: rgb(53.5928571429, 94.0071428571, 93.1285714286);
  padding: 80px 0;
  text-align: center;
}
.cta-band h2 {
  color: #FFFFFF;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}
.cta-band p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}
.cta-band .phone-link {
  display: inline-block;
  font-size: 1.7rem;
  color: #C4B45A;
  font-weight: 700;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  transition: color 0.2s;
}
.cta-band .phone-link:hover {
  color: rgb(212.1196428571, 200.4910714286, 135.0803571429);
}

.portfolio-header {
  padding: 64px 0 44px;
  text-align: center;
}
.portfolio-header h1 {
  font-size: 2.4rem;
}
.portfolio-header p {
  color: #7A8F8D;
  margin-top: 0.6rem;
  font-size: 1.05rem;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding-bottom: 80px;
}
@media (max-width: 960px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}

.portfolio-card {
  background: #FFFFFF;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
}
.portfolio-card > a {
  color: inherit;
  display: block;
}
.portfolio-card-image {
  height: 220px;
  background: #D5E0DE;
  overflow: hidden;
}
.portfolio-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.portfolio-card-image.no-image {
  background: linear-gradient(135deg, #9EC4C0, #8FAD8C);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.portfolio-card:hover .portfolio-card-image img {
  transform: scale(1.04);
}
.portfolio-card-body {
  padding: 20px 22px 24px;
}
.portfolio-card-body h2, .portfolio-card-body h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.portfolio-card-body .card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.8rem;
  color: #7A8F8D;
  margin-bottom: 10px;
}
.portfolio-card-body .card-meta span + span::before {
  content: "·";
  margin-right: 10px;
}
.portfolio-card-body p {
  font-size: 0.9rem;
  color: #4A5A58;
  line-height: 1.55;
}

.empty-state {
  padding: 80px 0;
  text-align: center;
  color: #7A8F8D;
  font-size: 1.1rem;
}

.post-hero {
  height: 55vh;
  min-height: 340px;
  background: #3D6B6A;
  background-size: cover;
  background-position: center;
  position: relative;
}
.post-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.1) 60%);
  display: flex;
  align-items: flex-end;
}
.post-hero-overlay .container {
  padding-bottom: 44px;
}
.post-hero-overlay h1 {
  color: #FFFFFF;
  font-size: clamp(1.8rem, 4vw, 3rem);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}
@media (max-width: 768px) {
  .post-hero {
    height: 40vh;
    min-height: 260px;
  }
}

.post-meta-bar {
  background: #FFFFFF;
  border-bottom: 1px solid #D5E0DE;
  padding: 16px 0;
}
.post-meta-bar .meta-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
.post-meta-bar .meta-item {
  color: #7A8F8D;
  font-size: 0.88rem;
}
.post-meta-bar .meta-item strong {
  color: #3D6B6A;
  font-weight: 700;
}

.post-body {
  max-width: 760px;
  margin: 56px auto 60px;
  padding: 0 24px;
}
.post-body p {
  margin-bottom: 1.3rem;
  font-size: 1.05rem;
}
.post-body h2, .post-body h3 {
  margin: 2rem 0 0.8rem;
}
.post-body ul, .post-body ol {
  margin: 0 0 1.2rem 1.4rem;
}
.post-body li {
  margin-bottom: 0.4rem;
}

.post-gallery {
  background: #FFFFFF;
  padding: 50px 0 80px;
}
.post-gallery h2 {
  font-size: 1.6rem;
  margin-bottom: 24px;
}
.post-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 960px) {
  .post-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .post-gallery-grid {
    grid-template-columns: 1fr;
  }
}
.post-gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 3px;
  transition: opacity 0.2s;
}
.post-gallery-grid img:hover {
  opacity: 0.88;
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}
.lightbox.is-open {
  display: flex;
}
.lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 3px;
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.6);
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: #FFFFFF;
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.75;
  transition: opacity 0.2s;
  padding: 4px 10px;
}
.lightbox-close:hover {
  opacity: 1;
}

.gallery-thumb {
  cursor: zoom-in;
}

.post-back {
  padding: 36px 0 64px;
}
.post-back a {
  color: #3D6B6A;
  font-size: 0.9rem;
  font-weight: 700;
}
.post-back a::before {
  content: "← ";
}
.post-back a:hover {
  color: #9EC4C0;
}

.about-banner {
  padding: 64px 0 44px;
  text-align: center;
}
.about-banner h1 {
  font-size: 2.4rem;
}
.about-banner p {
  color: #7A8F8D;
  margin-top: 0.5rem;
  font-size: 1.05rem;
}

.about-content {
  max-width: 960px;
  margin: 72px auto 80px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 390px 1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 44px;
  }
}
.about-content-photo img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}
.about-content-photo-placeholder {
  width: 100%;
  padding-top: 120%;
  background: linear-gradient(145deg, #9EC4C0, #8FAD8C);
  border-radius: 4px;
}
.about-content-text h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.about-content-text p {
  margin-bottom: 1.1rem;
  font-size: 1.02rem;
}
.about-content-text .contact-details {
  margin-top: 2rem;
  padding: 20px 24px;
  background: #F7F9F7;
  border-left: 4px solid #9EC4C0;
  border-radius: 0 3px 3px 0;
}
.about-content-text .contact-details p {
  margin-bottom: 6px;
  font-size: 0.95rem;
}
.about-content-text .contact-details a {
  font-weight: 700;
  color: #3D6B6A;
}

.site-footer {
  background: #3D6B6A;
}
.site-footer .footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 56px 0 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
@media (max-width: 960px) {
  .site-footer .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .site-footer .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
.site-footer h4 {
  color: #FFFFFF;
  font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.site-footer p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 6px;
  line-height: 1.6;
}
.site-footer a {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 6px;
}
.site-footer a:hover {
  color: #C4B45A;
}
.site-footer .footer-social-link {
  display: flex;
  align-items: center;
  gap: 8px;
}
.site-footer .footer-social-link svg {
  width: 16px;
  height: 16px;
  fill: rgba(255, 255, 255, 0.65);
  flex-shrink: 0;
  transition: fill 0.2s;
}
.site-footer .footer-social-link:hover svg {
  fill: #C4B45A;
}
.site-footer-bottom {
  padding: 16px 0;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.32);
}

.page-header {
  background: #8FAD8C;
  padding: 60px 0;
  text-align: center;
}
.page-header h1 {
  color: #FFFFFF;
  font-size: 2.4rem;
}

.page-body {
  max-width: 760px;
  margin: 56px auto 80px;
  padding: 0 24px;
}
.page-body p {
  margin-bottom: 1.2rem;
  font-size: 1.02rem;
}
.page-body h2, .page-body h3 {
  margin: 2rem 0 0.75rem;
}

.contact-page {
  padding: 64px 0 96px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 960px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-form .form-group label {
  font-size: 0.88rem;
  font-weight: 700;
  color: #3D6B6A;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.contact-form .form-group input, .contact-form .form-group textarea, .contact-form .form-group select {
  font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  color: #4A5A58;
  background: #FFFFFF;
  border: 1px solid #D5E0DE;
  border-radius: 3px;
  padding: 12px 14px;
  width: 100%;
  transition: border-color 0.2s;
}
.contact-form .form-group input:focus, .contact-form .form-group textarea:focus, .contact-form .form-group select:focus {
  outline: none;
  border-color: #9EC4C0;
}
.contact-form .form-group input::placeholder, .contact-form .form-group textarea::placeholder, .contact-form .form-group select::placeholder {
  color: #7A8F8D;
}
.contact-form .form-group textarea {
  resize: vertical;
}
.contact-form .form-submit {
  align-self: flex-start;
  background: #3D6B6A;
  color: #FFFFFF;
  border: none;
  padding: 14px 36px;
  font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.contact-form .form-submit:hover {
  background: rgb(49.8892857143, 87.5107142857, 86.6928571429);
  transform: translateY(-2px);
}

.contact-details-wrap h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}
.contact-details-wrap p {
  color: #7A8F8D;
  font-size: 0.98rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.contact-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-info-list li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.contact-info-list .contact-info-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7A8F8D;
}
.contact-info-list a {
  font-size: 1rem;
  color: #3D6B6A;
  font-weight: 600;
}
.contact-info-list a:hover {
  color: #9EC4C0;
}

.stats-footnote {
  text-align: center;
  margin-top: 32px;
  font-size: 0.88rem;
}
.stats-footnote a {
  color: rgba(255, 255, 255, 0.65);
}
.stats-footnote a:hover {
  color: #C4B45A;
}

.hs-intro {
  padding: 64px 0;
  background: #FFFFFF;
}

.hs-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 960px) {
  .hs-intro-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
.hs-intro-grid p {
  font-size: 1.05rem;
  margin-bottom: 1.1rem;
}
.hs-intro-grid h2 {
  font-size: 1.7rem;
  margin-bottom: 1rem;
}

.hs-intro-photos {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hs-intro-photos img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  max-height: 320px;
}

.hs-stats {
  padding: 72px 0;
  background: #F7F9F7;
}

.hs-stat-block {
  max-width: 820px;
  margin: 0 auto 60px;
}
.hs-stat-block:last-child {
  margin-bottom: 0;
}
.hs-stat-block h2 {
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
  color: #3D6B6A;
}

.hs-stat-intro {
  color: #7A8F8D;
  font-size: 1rem;
  margin-bottom: 1.4rem;
}

.hs-fact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hs-fact-list li {
  padding: 14px 18px;
  background: #FFFFFF;
  border-left: 4px solid #9EC4C0;
  border-radius: 0 3px 3px 0;
  font-size: 0.97rem;
  line-height: 1.65;
}
.hs-fact-list li:nth-child(2) {
  border-left-color: #8FAD8C;
}
.hs-fact-list li:nth-child(3) {
  border-left-color: #C4B45A;
}
.hs-fact-list li:nth-child(4) {
  border-left-color: #3D6B6A;
}

.hs-compare {
  padding: 72px 0;
  background: #FFFFFF;
}
.hs-compare h2 {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 40px;
}

.hs-compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 820px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .hs-compare-grid {
    grid-template-columns: 1fr;
  }
}

.hs-compare-card {
  border-radius: 4px;
  padding: 32px 28px;
}
.hs-compare-card h3 {
  font-size: 1.15rem;
  margin-bottom: 20px;
}
.hs-compare-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hs-compare-card li {
  font-size: 0.95rem;
  line-height: 1.55;
}
.hs-compare-card--unstaged {
  background: rgb(241.1714285714, 244.6285714286, 241.1714285714);
  border: 1px solid #D5E0DE;
}
.hs-compare-card--unstaged h3 {
  color: #7A8F8D;
}
.hs-compare-card--staged {
  background: #3D6B6A;
}
.hs-compare-card--staged h3, .hs-compare-card--staged li {
  color: #FFFFFF;
}

.hs-compare-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2px;
  opacity: 0.7;
}

.id-process {
  padding: 80px 0;
  background: #F7F9F7;
}
.id-process h2 {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 52px;
}

.id-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .id-steps {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.id-step {
  background: #FFFFFF;
  border-radius: 4px;
  padding: 32px 28px;
  border-top: 4px solid #9EC4C0;
}
.id-step:nth-child(2) {
  border-top-color: #8FAD8C;
}
.id-step:nth-child(3) {
  border-top-color: #C4B45A;
}
.id-step:nth-child(4) {
  border-top-color: #3D6B6A;
}
.id-step h3 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  margin-top: 0.4rem;
}
.id-step p {
  font-size: 0.95rem;
  color: #7A8F8D;
  line-height: 1.65;
}

.id-step-number {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #9EC4C0;
  line-height: 1;
  margin-bottom: 4px;
}

.hs-disclaimer {
  padding: 24px 0;
  background: #F7F9F7;
  border-top: 1px solid #D5E0DE;
}
.hs-disclaimer p {
  font-size: 0.8rem;
  color: #7A8F8D;
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.6;
}

/*# sourceMappingURL=main.css.map */