@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Playfair+Display:wght@600;700&display=swap");

:root {
  --olive: #899800;
  --olive-dark: #5e6b00;
  --olive-soft: #eef0d8;
  --gold: #d8a72f;
  --ink: #202516;
  --muted: #626756;
  --cream: #faf9f3;
  --white: #ffffff;
  --line: #e6e6dc;
  --shadow: 0 20px 55px rgba(32, 37, 22, 0.11);
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--olive-dark);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  background: var(--gold);
  content: "";
}

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

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.12;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.7rem, 5vw, 5.2rem);
  letter-spacing: -0.04em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 3.6vw, 3.7rem);
  letter-spacing: -0.025em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.16rem;
  line-height: 1.35;
}

.lead {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.08rem;
}

.section {
  padding: 100px 0;
}

.section-sm {
  padding: 70px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 44px;
}

.section-head > div {
  max-width: 710px;
}

.section-head p {
  max-width: 510px;
  margin-bottom: 8px;
  color: var(--muted);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
  background: rgba(250, 249, 243, 0.96);
  box-shadow: 0 8px 30px rgba(32, 37, 22, 0.08);
  backdrop-filter: blur(12px);
}

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

.brand img {
  width: 250px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav > a:not(.btn) {
  position: relative;
  padding: 8px 0;
  color: #343827;
  font-size: 0.92rem;
  font-weight: 600;
}

.site-nav > a:not(.btn)::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--olive);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease;
}

.site-nav > a.active::after,
.site-nav > a:not(.btn):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  transition: transform 0.2s, opacity 0.2s;
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
}

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

.btn-primary {
  color: var(--white);
  background: var(--olive-dark);
  box-shadow: 0 12px 25px rgba(94, 107, 0, 0.2);
}

.btn-primary:hover {
  background: #4d5800;
}

.btn-light {
  color: var(--ink);
  background: var(--white);
}

.btn-outline {
  border-color: #c9cbb9;
  color: var(--ink);
  background: transparent;
}

.hero {
  position: relative;
  display: grid;
  min-height: 760px;
  padding: 150px 0 82px;
  align-items: center;
  overflow: hidden;
}

.hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(250, 249, 243, 0.98) 0%, rgba(250, 249, 243, 0.93) 34%, rgba(250, 249, 243, 0.25) 67%, rgba(250, 249, 243, 0.05) 100%);
  content: "";
}

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

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

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 650px;
}

.hero h1 span {
  color: var(--olive-dark);
}

.hero .lead {
  max-width: 590px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 44px;
  color: #414638;
  font-size: 0.82rem;
  font-weight: 600;
}

.hero-trust span {
  display: flex;
  align-items: center;
  gap: 9px;
}

.hero-trust span::before {
  display: grid;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: var(--white);
  background: var(--olive);
  content: "✓";
  font-size: 0.72rem;
  place-items: center;
}

.audience-strip {
  padding: 23px 0;
  color: var(--white);
  background: var(--ink);
}

.audience-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.audience-list strong {
  color: #c7d03e;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.audience-list span {
  font-size: 0.88rem;
  opacity: 0.82;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 75px;
}

.image-frame {
  position: relative;
}

.image-frame img {
  width: 100%;
  min-height: 520px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.image-frame::before {
  position: absolute;
  z-index: -1;
  right: -20px;
  bottom: -20px;
  width: 68%;
  height: 55%;
  border-radius: var(--radius-lg);
  background: var(--olive-soft);
  content: "";
}

.stat-card {
  position: absolute;
  right: -35px;
  bottom: 36px;
  width: 210px;
  padding: 24px;
  border: 8px solid var(--cream);
  border-radius: var(--radius-md);
  color: var(--white);
  background: var(--olive-dark);
}

.stat-card strong {
  display: block;
  margin-bottom: 3px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
}

.stat-card span {
  font-size: 0.78rem;
  line-height: 1.5;
  opacity: 0.85;
}

.check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
  padding: 0;
  margin: 26px 0 32px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  color: #474c3d;
  font-size: 0.89rem;
  font-weight: 600;
}

.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--olive);
  content: "●";
}

.tint {
  background: #f0f1e4;
}

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

.dark .eyebrow,
.dark .lead,
.dark .section-head p {
  color: #cbd0bc;
}

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

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

.service-card:hover,
.value-card:hover {
  border-color: #d0d5a2;
  box-shadow: 0 18px 40px rgba(32, 37, 22, 0.09);
  transform: translateY(-5px);
}

.card-number,
.icon-box {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  border-radius: 14px;
  color: var(--olive-dark);
  background: var(--olive-soft);
  font-size: 0.82rem;
  font-weight: 700;
  place-items: center;
}

.service-card p,
.value-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.service-card a {
  display: inline-block;
  margin-top: 18px;
  color: var(--olive-dark);
  font-size: 0.82rem;
  font-weight: 700;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.16);
}

.process-step {
  min-height: 260px;
  padding: 34px 28px;
  background: #292f1d;
}

.process-step b {
  display: block;
  margin-bottom: 44px;
  color: #bdc83e;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
}

.process-step p {
  margin-bottom: 0;
  color: #bbc0ad;
  font-size: 0.88rem;
}

.testimonial-wrap {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.45s ease;
}

.testimonial {
  min-width: 100%;
  padding: 10px 8%;
  text-align: center;
}

.quote-mark {
  color: var(--olive);
  font-family: Georgia, serif;
  font-size: 4.5rem;
  line-height: 0.7;
}

.testimonial blockquote {
  max-width: 850px;
  margin: 20px auto 28px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  line-height: 1.45;
}

.testimonial cite {
  color: var(--muted);
  font-size: 0.86rem;
  font-style: normal;
  font-weight: 600;
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.slider-controls button {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: start;
  gap: 70px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 23px 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  text-align: left;
  cursor: pointer;
  font-weight: 600;
}

.faq-question span:last-child {
  color: var(--olive-dark);
  font-size: 1.4rem;
  transition: transform 0.25s;
}

.faq-item.open .faq-question span:last-child {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 0 45px 22px 0;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.cta-panel {
  position: relative;
  display: grid;
  min-height: 390px;
  padding: 65px;
  align-items: center;
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: var(--white);
  background: var(--olive-dark);
}

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

.cta-panel::before {
  top: -190px;
  right: -80px;
  width: 470px;
  height: 470px;
}

.cta-panel::after {
  top: -110px;
  right: 15px;
  width: 280px;
  height: 280px;
}

.cta-panel > div {
  position: relative;
  z-index: 1;
  max-width: 690px;
}

.cta-panel h2 {
  margin-bottom: 16px;
}

.cta-panel p {
  max-width: 590px;
  margin-bottom: 26px;
  color: #e6e9cf;
}

.page-hero {
  padding: 180px 0 95px;
  background: linear-gradient(135deg, #f0f1df 0%, var(--cream) 60%);
}

.page-hero .container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 50px;
}

.page-hero h1 {
  max-width: 780px;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
}

.page-hero p {
  color: var(--muted);
}

.breadcrumbs {
  margin-bottom: 20px;
  color: var(--olive-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.image-band {
  height: 520px;
  overflow: hidden;
}

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

.mission-grid,
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.mission-card {
  min-height: 290px;
  padding: 36px;
  border-radius: var(--radius-md);
  color: var(--white);
  background: var(--ink);
}

.mission-card:nth-child(2) {
  color: var(--ink);
  background: var(--olive-soft);
}

.mission-card:nth-child(3) {
  background: var(--olive-dark);
}

.mission-card .card-number {
  color: inherit;
  background: rgba(255, 255, 255, 0.13);
}

.mission-card p {
  margin-bottom: 0;
  opacity: 0.78;
}

.service-hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: stretch;
}

.service-hero-copy {
  display: grid;
  padding: 65px max(40px, calc((100vw - 1160px) / 2));
  align-content: center;
  color: var(--white);
  background: var(--ink);
}

.service-hero-copy p {
  max-width: 520px;
  color: #cbd0bc;
}

.service-hero-grid img {
  width: 100%;
  min-height: 600px;
  object-fit: cover;
}

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

.services-full .service-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
}

.services-full .card-number {
  margin: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 65px;
}

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

.contact-card {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  padding: 22px;
}

.contact-card .icon-box {
  margin: 0;
}

.contact-card strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.88rem;
}

.contact-card span,
.contact-card a {
  color: var(--muted);
  font-size: 0.85rem;
}

.form-card {
  padding: 42px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.79rem;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  background: #fcfcf8;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--olive);
  box-shadow: 0 0 0 3px rgba(137, 152, 0, 0.1);
}

.field textarea {
  min-height: 135px;
  resize: vertical;
}

.form-status {
  margin: 14px 0 0;
  color: var(--olive-dark);
  font-size: 0.83rem;
  font-weight: 600;
}

.map-card {
  position: relative;
  display: grid;
  min-height: 430px;
  padding: 50px;
  align-items: center;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #e7e8dd;
}

.map-card::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(28deg, transparent 48%, rgba(94, 107, 0, 0.12) 49%, rgba(94, 107, 0, 0.12) 51%, transparent 52%),
    linear-gradient(-24deg, transparent 48%, rgba(32, 37, 22, 0.09) 49%, rgba(32, 37, 22, 0.09) 51%, transparent 52%);
  background-size: 115px 90px, 160px 125px;
  content: "";
}

.map-pin {
  position: relative;
  z-index: 1;
  width: min(420px, 100%);
  padding: 30px;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow);
}

.map-pin::before {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 50% 50% 50% 0;
  color: var(--white);
  background: var(--olive-dark);
  content: "P";
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.5rem;
  place-items: center;
  transform: rotate(-45deg);
}

.map-pin::before {
  line-height: 1;
}

.map-pin h3 {
  font-size: 1.3rem;
}

.map-pin p {
  color: var(--muted);
  font-size: 0.88rem;
}

.site-footer {
  padding: 75px 0 0;
  color: #f5f6ed;
  background: #171b11;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.8fr 1fr;
  gap: 55px;
}

.footer-brand img {
  width: 235px;
  margin-bottom: 22px;
  filter: brightness(1.9) grayscale(1);
}

.footer-brand p,
.footer-col a,
.footer-col address {
  color: #aeb4a1;
  font-size: 0.83rem;
  font-style: normal;
}

.footer-col h3 {
  margin-bottom: 20px;
  color: var(--white);
  font-size: 0.86rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.footer-col a {
  display: block;
  margin-bottom: 10px;
}

.footer-col a:hover {
  color: #c7d03e;
}

.footer-bottom {
  display: flex;
  margin-top: 62px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #8e9582;
  font-size: 0.76rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 86px 0 auto;
    display: grid;
    padding: 30px 22px 36px;
    border-top: 1px solid var(--line);
    background: var(--cream);
    box-shadow: 0 25px 40px rgba(32, 37, 22, 0.12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-15px);
    transition: opacity 0.2s, transform 0.2s;
  }

  .nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-nav .btn {
    width: 100%;
  }

  .hero::after {
    background: linear-gradient(90deg, rgba(250, 249, 243, 0.98) 0%, rgba(250, 249, 243, 0.9) 55%, rgba(250, 249, 243, 0.26) 100%);
  }

  .split,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

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

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

  .page-hero .container {
    grid-template-columns: 1fr;
    gap: 15px;
  }

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

  .service-hero-copy {
    padding: 100px 40px 60px;
  }

  .service-hero-grid img {
    min-height: 450px;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .section {
    padding: 75px 0;
  }

  .section-sm {
    padding: 55px 0;
  }

  .brand img {
    width: 195px;
  }

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

  .site-nav {
    top: 76px;
  }

  .hero {
    min-height: 720px;
    padding-top: 125px;
    align-items: end;
  }

  .hero::after {
    background: linear-gradient(0deg, rgba(250, 249, 243, 1) 0%, rgba(250, 249, 243, 0.94) 54%, rgba(250, 249, 243, 0.2) 100%);
  }

  .hero-media img {
    object-position: 69% center;
  }

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

  .hero-trust {
    gap: 10px 18px;
  }

  .audience-list {
    flex-wrap: wrap;
    justify-content: center;
  }

  .audience-list strong {
    width: 100%;
    text-align: center;
  }

  .section-head {
    display: block;
  }

  .cards,
  .mission-grid,
  .values-grid,
  .services-full,
  .process-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .image-frame img {
    min-height: 380px;
  }

  .stat-card {
    right: 12px;
    bottom: 12px;
    border-width: 5px;
  }

  .check-list {
    grid-template-columns: 1fr;
  }

  .process-step {
    min-height: auto;
  }

  .process-step b {
    margin-bottom: 20px;
  }

  .cta-panel {
    min-height: 410px;
    padding: 38px 28px;
  }

  .page-hero {
    padding: 140px 0 70px;
  }

  .image-band {
    height: 360px;
  }

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

  .form-card {
    padding: 28px 20px;
  }

  .map-card {
    padding: 24px;
  }

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

  .footer-bottom {
    display: block;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
/* @vn-deploy:1784922629556 */
