:root {
  --forest: #0f6a36;
  --forest-dark: #134f2d;
  --forest-deep: #0b3d20;
  --forest-soft: #6f9a5d;
  --paper: #f8f4eb;
  --paper-deep: #efe7d8;
  --line: rgba(22, 88, 44, 0.28);
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(22, 52, 28, 0.18);
  --poster-width: 1024px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Montserrat", sans-serif;
  color: var(--forest-deep);
  background:
    radial-gradient(circle at top, rgba(255, 224, 158, 0.28), transparent 24%),
    linear-gradient(180deg, #f7f2e7 0%, #efe7d7 100%);
}

a,
img {
  display: block;
}

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

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

.poster-page {
  width: min(100%, calc(var(--poster-width) + 2rem));
  margin: 0 auto;
  padding: 0 1rem 2rem;
}

.poster-page::before {
  content: "";
  position: fixed;
  inset: auto auto 8% 50%;
  width: min(95vw, 62rem);
  height: 18rem;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(12, 87, 38, 0.09), transparent 66%);
  pointer-events: none;
  z-index: -1;
}

.masthead,
.content-section,
.contact-zone {
  background: linear-gradient(180deg, rgba(255, 252, 245, 0.98), rgba(248, 243, 233, 0.98));
  box-shadow: var(--shadow);
}

.masthead {
  overflow: hidden;
  border-radius: 0 0 18px 18px;
}

.hero-image,
.map-image {
  width: 100%;
  height: auto;
}

.brand-strip {
  display: flex;
  justify-content: center;
  padding: 1rem 1.25rem;
  background: linear-gradient(180deg, #fffef8 0%, #f5f0de 100%);
  border-bottom: 1px solid rgba(18, 79, 45, 0.12);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.brand-logo {
  width: clamp(4.8rem, 11vw, 7rem);
  height: auto;
  flex: none;
  filter: drop-shadow(0 10px 18px rgba(16, 56, 24, 0.22));
}

.brand-copy {
  display: grid;
  gap: 0.35rem;
}

.brand-label,
.brand-summary {
  margin: 0;
}

.brand-label {
  color: var(--forest-soft);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.brand-title {
  margin: 0;
  color: var(--forest-dark);
  font-size: clamp(1.65rem, 4vw, 3.25rem);
  font-weight: 900;
  letter-spacing: 0.03em;
  line-height: 1.05;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(255, 255, 255, 0.55);
}

.brand-summary {
  max-width: 38rem;
  color: rgba(11, 61, 32, 0.86);
  font-size: clamp(0.98rem, 1.6vw, 1.08rem);
  line-height: 1.55;
}

.hero-banner {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem 1.3rem;
  background: linear-gradient(180deg, rgba(255, 252, 245, 0.98), rgba(245, 239, 223, 0.95));
}

.quick-link {
  padding: 0.8rem 1.1rem;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--forest-dark);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(18, 79, 45, 0.12);
  box-shadow: 0 10px 24px rgba(18, 52, 28, 0.08);
}

.quick-link:hover,
.quick-link:focus-visible {
  background: rgba(255, 255, 255, 0.96);
}

.content-section {
  margin-top: 1rem;
  padding: 1.35rem 2rem 2rem;
  border-radius: 18px;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 0 0 1.7rem;
  font-size: clamp(1.9rem, 3.4vw, 3rem);
  font-weight: 800;
  color: var(--forest-dark);
  text-align: center;
}

.section-title::before,
.section-title::after {
  content: "";
  flex: 1 1 0;
  max-width: 19rem;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--forest-soft) 28%, transparent 100%);
}

.section-title span {
  white-space: nowrap;
}

.section-intro {
  max-width: 54rem;
  margin: 0 auto 1.5rem;
  color: rgba(11, 61, 32, 0.82);
  font-size: 1rem;
  line-height: 1.7;
  text-align: center;
}

.services-grid,
.works-grid {
  display: grid;
}

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

.service-item,
.work-card {
  text-align: center;
}

.service-item {
  position: relative;
  padding: 0.25rem 1rem 0;
}

.service-item + .service-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12%;
  bottom: 10%;
  width: 1px;
  background: rgba(21, 89, 44, 0.14);
}

.service-visual {
  width: min(100%, 19rem);
  margin: 0 auto 1rem;
  border-radius: 2px;
}

.service-item h3,
.work-card h3 {
  margin: 0;
  color: var(--forest-dark);
  font-size: clamp(1.2rem, 2vw, 2.1rem);
  font-weight: 800;
}

.works-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
}

.work-photo {
  width: 100%;
  aspect-ratio: 5 / 3;
  object-fit: cover;
  margin-bottom: 0.9rem;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(18, 52, 28, 0.16);
  border: 1px solid rgba(17, 68, 35, 0.12);
}

.work-photo-portrait {
  aspect-ratio: 5 / 3;
  object-fit: contain;
  object-position: center;
  padding: 0.35rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 239, 226, 0.96));
}

.contact-zone {
  position: relative;
  margin-top: 1rem;
  padding-top: 0.01rem;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(248, 244, 235, 0.98) 0%, rgba(248, 244, 235, 0.94) 58%, rgba(232, 239, 214, 0.9) 100%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.contact-zone::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 7.5rem;
  background:
    linear-gradient(180deg, rgba(248, 244, 235, 0) 0%, rgba(219, 231, 191, 0.86) 100%),
    repeating-linear-gradient(
      100deg,
      rgba(110, 146, 67, 0.14) 0,
      rgba(110, 146, 67, 0.14) 4px,
      transparent 4px,
      transparent 18px
    );
  pointer-events: none;
}

.contact-zone > * {
  position: relative;
  z-index: 1;
}

.contact-section {
  margin-top: 0;
  box-shadow: none;
  background: transparent;
}

.contact-intro {
  max-width: 42rem;
}

.contact-stack {
  width: min(100%, 38rem);
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.contact-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 5rem;
  gap: 0.9rem;
}

.contact-btn,
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 4.5rem;
  padding: 0.9rem 1.15rem;
  border-radius: 10px;
  color: var(--white);
  background: linear-gradient(135deg, #2f943f 0%, #3d8f2f 45%, #226822 100%);
  box-shadow: 0 14px 26px rgba(18, 67, 30, 0.24);
  transition:
    transform 180ms ease,
    filter 180ms ease;
}

.contact-btn:hover,
.contact-btn:focus-visible,
.whatsapp-btn:hover,
.whatsapp-btn:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.02);
}

.contact-btn svg,
.whatsapp-btn svg {
  width: 1.8rem;
  height: 1.8rem;
  fill: currentColor;
  flex: none;
}

.contact-btn span,
.whatsapp-btn span {
  font-size: clamp(1.05rem, 2.3vw, 1.55rem);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.contact-btn-icon {
  padding: 0;
}

.contact-btn-icon span {
  display: none;
}

.whatsapp-btn {
  width: min(100%, 18rem);
  min-height: 4.25rem;
  margin: 0.35rem auto 0;
  border-radius: 999px;
}

.map-wrap {
  margin: 0 2rem 2rem;
  padding: 0;
  overflow: hidden;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 34px rgba(17, 45, 25, 0.16);
}

.map-frame {
  background: #ffffff;
}

.seo-copy {
  margin: 0 2rem 2rem;
  padding: 1.4rem 1.5rem 1.6rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 34px rgba(17, 45, 25, 0.12);
}

.seo-copy-title,
.seo-copy-text {
  margin: 0;
}

.seo-copy-title {
  color: var(--forest-dark);
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  font-weight: 800;
  text-align: center;
}

.seo-copy-text {
  margin-top: 0.9rem;
  color: rgba(11, 61, 32, 0.84);
  font-size: 0.98rem;
  line-height: 1.75;
  text-align: center;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 500ms ease,
    transform 500ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 820px) {
  .poster-page {
    padding-inline: 0.7rem;
  }

  .content-section {
    padding-inline: 1rem;
  }

  .section-title {
    gap: 0.6rem;
  }

  .section-title span {
    white-space: normal;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.3rem;
  }

  .service-item {
    padding: 0;
  }

  .service-item + .service-item {
    padding-top: 1.2rem;
    border-top: 1px solid rgba(21, 89, 44, 0.14);
  }

  .service-item + .service-item::before {
    display: none;
  }

  .service-visual {
    width: min(100%, 22rem);
  }

  .map-wrap {
    margin-inline: 1rem;
  }

  .seo-copy {
    margin-inline: 1rem;
  }
}

@media (max-width: 960px) {
  .works-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .poster-page {
    padding-inline: 0;
    padding-bottom: 0;
  }

  .masthead,
  .content-section,
  .contact-zone,
  .map-wrap {
    border-radius: 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .brand-strip {
    padding: 0.85rem 1rem;
  }

  .brand-lockup {
    gap: 0.7rem;
    align-items: flex-start;
  }

  .brand-label {
    font-size: 0.75rem;
    letter-spacing: 0.18em;
  }

  .brand-title {
    font-size: 1.5rem;
    letter-spacing: 0.03em;
  }

  .brand-summary {
    font-size: 0.92rem;
    line-height: 1.45;
  }

  .content-section {
    padding-top: 1.2rem;
    padding-bottom: 1.5rem;
  }

  .quick-links {
    gap: 0.55rem;
    padding: 0.9rem 0.75rem 1rem;
  }

  .quick-link {
    padding: 0.72rem 0.95rem;
    font-size: 0.92rem;
  }

  .section-intro {
    font-size: 0.96rem;
    margin-bottom: 1.25rem;
  }

  .works-grid {
    grid-template-columns: 1fr;
    gap: 1.3rem;
  }

  .contact-row {
    grid-template-columns: minmax(0, 1fr) 4.3rem;
  }

  .contact-btn,
  .whatsapp-btn {
    min-height: 3.85rem;
  }

  .contact-btn span,
  .whatsapp-btn span {
    font-size: 1rem;
  }

  .map-wrap {
    margin: 0;
  }

  .seo-copy {
    margin: 0;
    padding: 1.2rem 1rem 1.4rem;
    border-radius: 0;
  }

  .seo-copy-text {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .map-frame {
    min-height: 0;
  }
}

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

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
