*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: #1E2A1A;
}

body {
  font-family: "Lato", system-ui, sans-serif;
  font-size: 1rem;
  color: #3D4A38;
  background-color: #FFFFFF;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

ul,
ol {
  list-style: none;
}

button {
  font-family: "Lato", system-ui, sans-serif;
  cursor: pointer;
  border: none;
  background: none;
}

h1, h2, h3, h4 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.2;
  color: #1E2A1A;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 2rem;
}
@media (max-width: 768px) {
  .container {
    padding-inline: 1rem;
  }
}

.section-label {
  font-family: "Lato", system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #5AA827;
}

.section-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: #1E2A1A;
  margin-top: 0.5rem;
  line-height: 1.2;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #E8EDE6;
  transition: box-shadow 0.32s ease;
}
.header--scrolled {
  box-shadow: 0 2px 20px rgba(30, 42, 26, 0.08);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 2rem;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.header__logo img {
  height: 40px;
  width: auto;
}
.header__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.header__logo-text-name {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #1E2A1A;
  font-style: italic;
}
.header__logo-text-tagline {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #5AA827;
  font-weight: 600;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 900px) {
  .header__nav {
    display: none;
  }
  .header__nav--open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: #FFFFFF;
    padding: 2rem;
    border-bottom: 2px solid #5AA827;
    gap: 1rem;
    z-index: 99;
  }
}
.header__nav-link {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #3D4A38;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.18s ease;
}
.header__nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #5AA827;
  transition: width 0.32s ease;
}
.header__nav-link:hover, .header__nav-link--active {
  color: #5AA827;
}
.header__nav-link:hover::after, .header__nav-link--active::after {
  width: 100%;
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.header__lang-switcher {
  display: flex;
  align-items: center;
  border: 1.5px solid #E8EDE6;
  border-radius: 6px;
  overflow: hidden;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.header__lang-btn {
  padding: 0.3rem 0.55rem;
  color: #6B7A65;
  transition: background 0.18s ease, color 0.18s ease;
  line-height: 1;
}
.header__lang-btn--active {
  background: #5AA827;
  color: #FFFFFF;
}
.header__lang-btn:hover:not(.header__lang-btn--active) {
  background: #E8F4DF;
  color: #3D7A1A;
}
.header__contact-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: #5AA827;
  color: #FFFFFF;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.55rem 1.2rem;
  border-radius: 6px;
  transition: background 0.18s ease, transform 0.18s ease;
}
.header__contact-btn:hover {
  background: #3D7A1A;
  transform: translateY(-1px);
}
.header__contact-btn img {
  width: 14px;
  height: 14px;
  filter: brightness(0) invert(1);
}
@media (max-width: 640px) {
  .header__contact-btn {
    display: none;
  }
}
.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}
@media (max-width: 900px) {
  .header__hamburger {
    display: flex;
  }
}
.header__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #1E2A1A;
  border-radius: 2px;
  transition: transform 0.32s ease, opacity 0.32s ease;
}
.header__hamburger--open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header__hamburger--open span:nth-child(2) {
  opacity: 0;
}
.header__hamburger--open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  padding-top: 72px;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
}
.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7rem 2rem 4rem;
  position: relative;
  z-index: 2;
}
@media (max-width: 900px) {
  .hero__content {
    padding: 4rem 1rem 2rem;
  }
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.hero__eyebrow span {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #5AA827;
}
.hero__eyebrow::before {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  background: #5AA827;
}
.hero__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  color: #1E2A1A;
  line-height: 1.08;
  margin-bottom: 2rem;
}
.hero__title em {
  color: #5AA827;
  font-style: italic;
}
.hero__description {
  font-size: 1.1rem;
  color: #3D4A38;
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 4rem;
}
@media (max-width: 900px) {
  .hero__description {
    margin-bottom: 2rem;
  }
}
.hero__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.hero__cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #5AA827;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.9rem 2rem;
  border-radius: 6px;
  transition: background 0.18s ease, transform 0.18s ease;
  letter-spacing: 0.02em;
}
.hero__cta-primary:hover {
  background: #3D7A1A;
  transform: translateY(-2px);
}
.hero__cta-primary img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}
.hero__cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #1E2A1A;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.9rem 1.2rem;
  border-radius: 6px;
  border: 1.5px solid #E8EDE6;
  transition: border-color 0.18s ease, color 0.18s ease;
}
.hero__cta-secondary:hover {
  border-color: #5AA827;
  color: #5AA827;
}
.hero__image-side {
  position: relative;
  overflow: hidden;
}
@media (max-width: 900px) {
  .hero__image-side {
    height: 50vw;
    min-height: 280px;
  }
}
.hero__main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.15) 0%, transparent 40%);
}
.hero__stat-badge {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background: #FFFFFF;
  border-radius: 14px;
  padding: 1rem 2rem;
  box-shadow: 0 8px 32px rgba(30, 42, 26, 0.12);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero__stat-badge-number {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: #5AA827;
  line-height: 1;
}
.hero__stat-badge-label {
  font-size: 0.875rem;
  color: #6B7A65;
  font-weight: 500;
}
@media (max-width: 480px) {
  .hero__stat-badge {
    bottom: 1rem;
    left: 1rem;
    padding: 0.6rem 1rem;
  }
  .hero__stat-badge-number {
    font-size: 1.5rem;
  }
}
.hero__deco {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 1;
}
@media (max-width: 900px) {
  .hero__deco {
    display: none;
  }
}
.hero__deco svg {
  width: 100%;
  height: 100%;
}

.about {
  padding: 7rem 0;
  background: #F4F6F3;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .about {
    padding: 4rem 0;
  }
}
@media (max-width: 480px) {
  .about {
    padding: 3rem 0;
  }
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: center;
}
@media (max-width: 900px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}
@media (max-width: 600px) {
  .about__grid {
    gap: 2rem;
  }
  .about__image-accent {
    display: none;
  }
}
.about__image-wrapper {
  position: relative;
}
@media (max-width: 900px) {
  .about__image-wrapper {
    order: -1;
  }
}
.about__image {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 28px;
}
.about__image-accent {
  position: absolute;
  top: -2rem;
  right: -2rem;
  width: 55%;
  aspect-ratio: 1;
  background: #E8F4DF;
  border-radius: 28px;
  z-index: -1;
}
.about__founder-card {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: #FFFFFF;
  border-radius: 14px;
  padding: 1rem 2rem;
  box-shadow: 0 8px 32px rgba(30, 42, 26, 0.1);
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 600px) {
  .about__founder-card {
    bottom: 1rem;
    right: 1rem;
  }
}
.about__founder-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: #E8F4DF;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.about__founder-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about__founder-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.about__founder-info-name {
  font-weight: 700;
  font-size: 0.875rem;
  color: #1E2A1A;
}
.about__founder-info-role {
  font-size: 0.75rem;
  color: #6B7A65;
  letter-spacing: 0.04em;
}
.about__content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.about__text {
  font-size: 1.05rem;
  color: #3D4A38;
  line-height: 1.75;
}
.about__signature {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}
.about__signature-line {
  width: 40px;
  height: 2px;
  background: #5AA827;
  flex-shrink: 0;
}
.about__signature-text {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-size: 1.05rem;
  color: #1E2A1A;
}
.about__deco-leaf {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  opacity: 0.04;
  pointer-events: none;
}
.about__deco-leaf img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.services {
  padding: 7rem 0;
  background: #FFFFFF;
}
@media (max-width: 768px) {
  .services {
    padding: 4rem 0;
  }
}
.services__header {
  text-align: center;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .services__header {
    margin-bottom: 2rem;
  }
}
.services__header .section-title {
  max-width: 600px;
  margin-inline: auto;
  margin-top: 0.5rem;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1rem;
}
@media (max-width: 600px) {
  .services__grid {
    grid-template-columns: 1fr;
  }
}
.services__card {
  background: #F4F6F3;
  border-radius: 14px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 1.5px solid transparent;
  transition: border-color 0.32s ease, box-shadow 0.32s ease, transform 0.32s ease;
  cursor: default;
}
.services__card:hover {
  border-color: #8DC94E;
  box-shadow: 0 6px 28px rgba(90, 168, 39, 0.1);
  transform: translateY(-3px);
}
.services__card-icon {
  width: 48px;
  height: 48px;
  background: #E8F4DF;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.services__card-icon img {
  width: 26px;
  height: 26px;
}
.services__card-body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.services__card-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.1rem;
  color: #1E2A1A;
  font-weight: 700;
  line-height: 1.3;
}
.services__card-desc {
  font-size: 0.875rem;
  color: #6B7A65;
  line-height: 1.6;
}
.services__card--featured {
  background: #5AA827;
  border-color: #5AA827;
  grid-column: span 2;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 900px) {
  .services__card--featured {
    grid-column: span 1;
    flex-direction: column;
  }
}
.services__card--featured .services__card-icon {
  background: rgba(255, 255, 255, 0.18);
  width: 64px;
  height: 64px;
  flex-shrink: 0;
}
.services__card--featured .services__card-title {
  color: #FFFFFF;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}
.services__card--featured .services__card-desc {
  color: rgba(255, 255, 255, 0.82);
}
.services__card--featured:hover {
  border-color: #3D7A1A;
  box-shadow: 0 10px 40px rgba(61, 122, 26, 0.25);
}

.works {
  padding: 7rem 0;
  background: #F4F6F3;
  overflow: hidden;
}
@media (max-width: 768px) {
  .works {
    padding: 4rem 0;
  }
}
.works__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
  flex-wrap: wrap;
  gap: 1rem;
}
@media (max-width: 768px) {
  .works__header {
    margin-bottom: 2rem;
  }
}
.works__header-left {
  display: flex;
  flex-direction: column;
}
.works__view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 0.875rem;
  color: #5AA827;
  border-bottom: 1.5px solid #5AA827;
  padding-bottom: 2px;
  transition: color 0.18s ease;
}
.works__view-all:hover {
  color: #3D7A1A;
  border-color: #3D7A1A;
}
.works__featured-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .works__featured-grid {
    margin-bottom: 2rem;
  }
}
@media (max-width: 768px) {
  .works__featured-grid {
    grid-template-columns: 1fr;
  }
}
.works__featured-item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  cursor: pointer;
}
.works__featured-item--large {
  grid-row: span 2;
}
@media (max-width: 768px) {
  .works__featured-item--large {
    grid-row: span 1;
  }
}
.works__featured-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
  min-height: 220px;
}
.works__featured-item--large img {
  min-height: 480px;
}
@media (max-width: 768px) {
  .works__featured-item--large img {
    min-height: 260px;
  }
}
.works__featured-item:hover img {
  transform: scale(1.04);
}
.works__featured-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(30, 42, 26, 0.75) 0%, transparent 100%);
  color: #FFFFFF;
  transform: translateY(4px);
  opacity: 0.88;
  transition: opacity 0.32s ease;
}
.works__featured-caption-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
}
.works__featured-caption-sub {
  font-size: 0.875rem;
  opacity: 0.8;
  margin-top: 2px;
}
.works__featured-item:hover .works__featured-caption {
  opacity: 1;
  transform: translateY(0);
}
.works__scroll-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.works__scroll-label span {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6B7A65;
}
.works__scroll-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #E8EDE6;
}
.works__strip {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
}
.works__strip:active {
  cursor: grabbing;
}
.works__strip {
  /* Hide scrollbar but keep functionality */
  scrollbar-width: thin;
  scrollbar-color: #E8EDE6 transparent;
}
.works__strip::-webkit-scrollbar {
  height: 4px;
}
.works__strip::-webkit-scrollbar-track {
  background: transparent;
}
.works__strip::-webkit-scrollbar-thumb {
  background: #E8EDE6;
  border-radius: 4px;
}
.works__strip-item {
  flex-shrink: 0;
  width: 220px;
  height: 160px;
  border-radius: 6px;
  overflow: hidden;
  scroll-snap-align: start;
  position: relative;
  cursor: pointer;
}
.works__strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.32s ease;
}
.works__strip-item:hover img {
  transform: scale(1.06);
}

.before-after {
  padding: 7rem 0;
  background: #FFFFFF;
}
@media (max-width: 768px) {
  .before-after {
    padding: 4rem 0;
  }
}
.before-after__header {
  text-align: center;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .before-after__header {
    margin-bottom: 2rem;
  }
}
.before-after__subtitle {
  font-size: 1.05rem;
  color: #6B7A65;
  max-width: 520px;
  margin: 1rem auto 0;
}
.before-after__slider-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.before-after__comparison {
  position: relative;
  width: 100%;
  aspect-ratio: 16/7;
  border-radius: 28px;
  overflow: hidden;
  user-select: none;
  cursor: ew-resize;
  box-shadow: 0 8px 40px rgba(30, 42, 26, 0.1);
}
@media (max-width: 600px) {
  .before-after__comparison {
    aspect-ratio: 4/3;
  }
}
.before-after__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.before-after__img--before {
  z-index: 1;
}
.before-after__img--after {
  z-index: 2;
  clip-path: inset(0 50% 0 0);
  transition: clip-path 0.05s linear;
}
.before-after__divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: #FFFFFF;
  z-index: 3;
  transform: translateX(-50%);
  transition: left 0.05s linear;
}
.before-after__divider-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 14px rgba(30, 42, 26, 0.2);
}
.before-after__divider-handle img {
  width: 22px;
  height: 22px;
}
.before-after__label {
  position: absolute;
  top: 1rem;
  padding: 0.3rem 0.8rem;
  background: rgba(30, 42, 26, 0.6);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 6px;
  z-index: 4;
}
.before-after__label--before {
  left: 1rem;
}
.before-after__label--after {
  right: 1rem;
  background: rgba(61, 122, 26, 0.75);
}
.before-after__nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}
.before-after__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #E8EDE6;
  border: none;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease;
}
.before-after__dot--active {
  background: #5AA827;
  transform: scale(1.3);
}

.reference {
  padding: 7rem 0;
  background: #1E2A1A;
  color: #FFFFFF;
  overflow: hidden;
  position: relative;
}
@media (max-width: 768px) {
  .reference {
    padding: 4rem 0;
  }
}
.reference__deco {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 600px 400px at 80% 50%, rgba(90, 168, 39, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.reference__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: center;
}
@media (max-width: 900px) {
  .reference__inner {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}
.reference__content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.reference__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8DC94E;
}
.reference__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: #FFFFFF;
  line-height: 1.2;
}
.reference__address {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}
.reference__address img {
  width: 14px;
  height: 14px;
  filter: brightness(0) invert(0.6);
}
.reference__description {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
}
.reference__photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0.5rem;
}
@media (max-width: 600px) {
  .reference__photos {
    grid-template-columns: 1fr;
  }
}
.reference__photo {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}
.reference__photo--large {
  grid-row: span 2;
  grid-column: 1;
}
@media (max-width: 600px) {
  .reference__photo--large {
    grid-row: span 1;
  }
}
.reference__photo img {
  width: 100%;
  height: 100%;
  min-height: 160px;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.reference__photo--large img {
  min-height: 360px;
}
@media (max-width: 600px) {
  .reference__photo--large img {
    min-height: 220px;
  }
}
.reference__photo:hover img {
  transform: scale(1.05);
}

.contact {
  padding: 7rem 0 4rem;
  background: #F4F6F3;
}
@media (max-width: 768px) {
  .contact {
    padding: 4rem 0 3rem;
  }
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: start;
}
@media (max-width: 900px) {
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.contact__info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.contact__info-text {
  font-size: 1.05rem;
  color: #3D4A38;
  line-height: 1.7;
  max-width: 440px;
}
.contact__detail-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact__detail {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.contact__detail-icon {
  width: 40px;
  height: 40px;
  background: #E8F4DF;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact__detail-icon img {
  width: 20px;
  height: 20px;
}
.contact__detail-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.contact__detail-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6B7A65;
}
.contact__detail-value {
  font-weight: 600;
  color: #1E2A1A;
  font-size: 1rem;
}
.contact__detail-value a {
  transition: color 0.18s ease;
}
.contact__detail-value a:hover {
  color: #5AA827;
}
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #FFFFFF;
  border-radius: 28px;
  padding: 4rem;
  box-shadow: 0 4px 24px rgba(30, 42, 26, 0.06);
}
@media (max-width: 600px) {
  .contact__form {
    padding: 2rem;
  }
}
.contact__form-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: #1E2A1A;
  margin-bottom: 0.5rem;
}
.contact__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 600px) {
  .contact__form-row {
    grid-template-columns: 1fr;
  }
}
.contact__field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.contact__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #3D4A38;
}
.contact__input, .contact__textarea {
  font-family: "Lato", system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: #1E2A1A;
  background: #F4F6F3;
  border: 1.5px solid #E8EDE6;
  border-radius: 6px;
  padding: 0.7rem 1rem;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
  resize: none;
}
.contact__input::placeholder, .contact__textarea::placeholder {
  color: #9AAA94;
}
.contact__input:focus, .contact__textarea:focus {
  border-color: #5AA827;
  box-shadow: 0 0 0 3px rgba(90, 168, 39, 0.12);
}
.contact__textarea {
  min-height: 120px;
}
.contact__phone-wrapper {
  display: flex;
  align-items: stretch;
  background: #F4F6F3;
  border: 1.5px solid #E8EDE6;
  border-radius: 6px;
  overflow: hidden;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.contact__phone-wrapper:focus-within {
  border-color: #5AA827;
  box-shadow: 0 0 0 3px rgba(90, 168, 39, 0.12);
}
.contact__phone-wrapper.contact__input--error {
  border-color: #c0392b !important;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.12) !important;
}
.contact__phone-prefix {
  display: flex;
  align-items: center;
  padding: 0 0.75rem 0 1rem;
  font-family: "Lato", system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 600;
  color: #3D4A38;
  border-right: 1.5px solid #E8EDE6;
  background: #EDF0EB;
  white-space: nowrap;
  user-select: none;
}
.contact__input--phone {
  flex: 1;
  min-width: 0;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0;
  background: transparent;
  padding-left: 0.75rem;
  padding-right: 1rem;
  letter-spacing: 0.05em;
}
.contact__input--phone:focus {
  border: none !important;
  box-shadow: none !important;
}
.contact__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #5AA827;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.9rem;
  border-radius: 6px;
  transition: background 0.18s ease, transform 0.18s ease;
  margin-top: 0.5rem;
}
.contact__submit:hover {
  background: #3D7A1A;
  transform: translateY(-2px);
}
.contact__submit img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}
.contact__input--error,
.contact__textarea--error {
  border-color: #c0392b !important;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.12) !important;
}
.contact__error {
  display: none;
  font-size: 0.8rem;
  color: #c0392b;
  margin-top: 0.1rem;
}
.contact__error--visible {
  display: block;
}

.footer {
  background: #1E2A1A;
  color: rgba(255, 255, 255, 0.6);
  padding: 2rem 0;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #FFFFFF;
}
.footer__brand img {
  height: 30px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.footer__brand-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.footer__brand-name {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-size: 1rem;
  color: #FFFFFF;
}
.footer__brand-tagline {
  font-family: "Lato", system-ui, sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.footer__copy {
  font-size: 0.875rem;
  text-align: center;
}
.footer__links {
  display: flex;
  gap: 1rem;
}
.footer__links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.18s ease;
}
.footer__links a:hover {
  color: #8DC94E;
}
@media (max-width: 600px) {
  .footer__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer__links {
    justify-content: center;
    flex-wrap: wrap;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

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