:root {
  --color-bg: #07150d;
  --color-bg-soft: #0d1d14;
  --color-surface: #112519;
  --color-surface-2: #162d1f;
  --color-text: #e9e4d5;
  --color-text-soft: #c6cfbf;
  --color-dark: #061109;
  --color-line: rgba(255,255,255,.08);

  --green-900: #052510;
  --green-800: #0a3418;
  --green-700: #0f4c23;
  --green-600: #1c6d2f;
  --green-500: #2f8a37;
  --green-400: #46aa32;

  --gold-700: #8e7522;
  --gold-600: #b6932b;
  --gold-500: #d8c267;
  --gold-400: #efdf9a;
  --gold-300: #f5ebbe;

  --gradient-gold: linear-gradient(135deg, #8e7522 0%, #d8c267 45%, #f5ebbe 100%);
  --gradient-green: linear-gradient(135deg, #0c2b15 0%, #1f6d2f 55%, #46aa32 100%);

  --shadow-lg: 0 20px 60px rgba(0, 0, 0, .35);
  --shadow-md: 0 12px 30px rgba(0, 0, 0, .2);

  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;

  --header-height: 102px;
  --container: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(14px);
  background: rgba(6, 17, 9, 0.75);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: .3s ease;
}

.site-header.scrolled {
  background: rgba(4, 14, 8, 0.92);
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
}

.header__wrap {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  flex: 0 0 auto;
}

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

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  font-size: .92rem;
  letter-spacing: .12em;
  font-weight: 600;
  color: var(--color-text);
  transition: color .25s ease, opacity .25s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--gold-400);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--color-text);
  transition: .25s ease;
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(6, 17, 9, .65), rgba(6, 17, 9, .82)),
    url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?q=80&w=1800&auto=format&fit=crop') center/cover no-repeat;
  transform: scale(1.03);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-block: 96px;
}

.hero__text {
  max-width: 760px;
}

.eyebrow,
.section__eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-400);
}

.hero h1,
.section__heading h2,
.service-card h3,
.contact-box__intro h2,
.footer__info h3,
.mini-card h3 {
  font-family: "Aboreto", serif;
  letter-spacing: 0.06em;
}

.hero h1 {
  font-size: clamp(2.8rem, 5vw, 3rem);
  line-height: 1.05;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero p {
  max-width: 680px;
  font-size: 1.08rem;
  color: var(--color-text-soft);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: .02em;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}

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

.btn--primary {
  color: #0a120d;
  background: var(--gradient-gold);
  box-shadow: 0 12px 30px rgba(216, 194, 103, .25);
}

.btn--ghost {
  color: var(--color-text);
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.04);
}

.btn--ghost.dark {
  color: var(--color-dark);
  border-color: rgba(6,17,9,.12);
  background: rgba(6,17,9,.05);
}

/* Sections */
.section {
  padding: 96px 0;
}

.section--light {
  background: linear-gradient(180deg, #f5f0df 0%, #efe6cc 100%);
  color: #112519;
}

.section--services {
  background:
    radial-gradient(circle at top left, rgba(216,194,103,.08), transparent 25%),
    linear-gradient(180deg, #07150d 0%, #0b1d12 100%);
}

.section--contact {
  background:
    linear-gradient(180deg, rgba(10,31,18,1) 0%, rgba(6,17,9,1) 100%);
}

.section__heading {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 48px;
}

.section__heading h2 {
  font-size: clamp(1.2rem, 3vw, 2.5rem);
  line-height: 1.1;
  margin-bottom: 12px;
}

.section__heading p {
  color: inherit;
  opacity: .82;
}

/* About */
.about {
  display: grid;
  grid-template-columns: 1.2fr .9fr;
  gap: 32px;
  align-items: start;
}

.about__content p + p {
  margin-top: 18px;
}

.about__cards {
  display: grid;
  gap: 18px;
}

.mini-card {
  background: rgba(17, 37, 25, .07);
  border: 1px solid rgba(17, 37, 25, .08);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-md);
}

.mini-card h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: #0d3a1a;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.service-card {
  background: linear-gradient(180deg, rgba(255,255,255,.03) 0%, rgba(255,255,255,.02) 100%);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(216,194,103,.28);
  box-shadow: var(--shadow-lg);
}

.service-card__icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  margin-bottom: 18px;
  color: var(--gold-400);
  background: rgba(216,194,103,.08);
  border: 1px solid rgba(216,194,103,.16);
}

.service-card__icon svg {
  width: 34px;
  height: 34px;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.service-card p {
  color: var(--color-text-soft);
  font-size: .98rem;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  min-height: 280px;
  background: #d8d8d8;
  box-shadow: var(--shadow-md);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
  transition: transform .45s ease, filter .35s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(.92);
}

/* Contact */
.contact-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: start;
  padding: 38px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow-lg);
}

.contact-box__intro h2 {
  font-size: clamp(2.1rem, 4vw, 2.4rem);
  line-height: 1;
  margin-bottom: 16px;
}

.contact-box__intro p {
  color: var(--color-text-soft);
}

.contact-list {
  display: grid;
  gap: 18px;
}

.contact-item {
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}

.contact-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--gold-400);
}

.contact-item a {
  color: var(--color-text);
  word-break: break-word;
}

.contact-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}

/* Footer */
.site-footer {
  background: #030b06;
  color: #d7dfd4;
  border-top: 1px solid rgba(255,255,255,.05);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr .9fr .8fr;
  gap: 32px;
  padding: 56px 0 34px;
}

.footer__brand img {
  max-width: 360px;
  margin-bottom: 18px;
}

.footer__brand p,
.footer__info li,
.footer__info a {
  color: #b9c5b7;
}

.footer__info h3 {
  font-size: 1.8rem;
  color: var(--gold-400);
  margin-bottom: 10px;
}

.footer__info ul {
  display: grid;
  gap: 10px;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.05);
  padding: 18px 0 24px;
}

.footer__bottom p {
  color: #91a08f;
  font-size: .75rem;
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #1fa64a 0%, #25d366 100%);
  box-shadow: 0 14px 28px rgba(37, 211, 102, .35);
  z-index: 1200;
  animation: floatPulse 2.2s infinite ease-in-out;
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
}

@keyframes floatPulse {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

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

/* Responsive */
@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about,
  .contact-box,
  .footer__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 86px;
  }

  .brand img {
    width: 58px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    padding: 14px;
    border-radius: 18px;
    background: rgba(6, 17, 9, .98);
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: .25s ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .hero__content {
    padding-block: 72px;
  }

  .section {
    padding: 78px 0;
  }

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

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

  .contact-box {
    padding: 26px;
  }
}

@media (max-width: 560px) {
  .hero h1 {
    font-size: 1.7rem;
  }

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

  .services-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .hero__actions,
  .contact-actions {
    flex-direction: column;
  }

  .footer__brand img {
    max-width: 260px;
  }

  .whatsapp-float {
    width: 58px;
    height: 58px;
    right: 14px;
    bottom: 14px;
  }
}

.titlesection {
  color:#112519 !important;
}

.flex-spacebetween {
  display: flex;
  justify-content: space-between;
}

.link-important {
  color: var(--gold-400) !important;
  transition: all 0.2s;
  text-decoration: none;
}

.link-important:hover {
  color: #fff;
}