:root {
  --green-dark: #071b10;
  --green-main: #123d25;
  --green: #1f7a3a;
  --green-light: #e8f5e9;
  --gold: #d6a51f;
  --cream: #f7f2e6;
  --white: #ffffff;
  --black: #101413;
  --gray: #69746e;
  --border: rgba(18, 61, 37, 0.14);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
  --radius: 26px;
  --max: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--cream);
  color: var(--black);
  line-height: 1.6;
}

body.modal-open {
  overflow: hidden;
}

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

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

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

.container {
  width: min(100% - 36px, var(--max));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  padding: 16px 0;
  transition: 0.25s ease;
}

.site-header.scrolled {
  background: rgba(7, 27, 16, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.22);
}

.navbar {
  width: min(100% - 36px, var(--max));
  margin: 0 auto;
  min-height: 76px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(7, 27, 16, 0.56);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
  background: var(--white);
  border-radius: 50%;
  padding: 4px;
}

.brand strong {
  display: block;
  line-height: 1;
  letter-spacing: 0.5px;
}

.brand span {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.75);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--white);
  font-size: 15px;
}

.nav-links a:hover {
  color: var(--gold);
}

.menu-btn,
.language-btn,
.header-call,
.btn,
.contact-options button,
.sticky-actions button,
.modal-close {
  border: none;
  cursor: pointer;
}

.menu-btn {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--white);
  color: var(--green-dark);
  font-size: 22px;
  font-weight: 900;
}

.language-btn {
  background: rgba(255, 255, 255, 0.13);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 800;
}

.header-call {
  background: var(--white);
  color: var(--green-dark);
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 900;
}

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 160px 0 100px;
  background:
    linear-gradient(90deg, rgba(7, 27, 16, 0.82), rgba(7, 27, 16, 0.44)),
    url("assets/imagenes/hero-grass.jpg");
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 20%, rgba(214, 165, 31, 0.28), transparent 34%),
    radial-gradient(circle at 16% 82%, rgba(31, 122, 58, 0.25), transparent 30%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100% - 36px, var(--max));
  margin: 0 auto;
  color: var(--white);
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-size: 13px;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 14px;
}

.hero h1 {
  max-width: 880px;
  font-size: clamp(44px, 7vw, 86px);
  line-height: 0.95;
  letter-spacing: -3px;
  margin-bottom: 24px;
}

.hero-text {
  max-width: 720px;
  font-size: clamp(18px, 2vw, 22px);
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 34px;
}

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

.btn {
  min-height: 54px;
  padding: 14px 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  transition: 0.2s ease;
}

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

.btn.primary {
  background: linear-gradient(135deg, var(--green), #31a75a);
  color: var(--white);
  box-shadow: 0 18px 40px rgba(31, 122, 58, 0.28);
}

.btn.secondary {
  background: var(--white);
  color: var(--green-dark);
}

.btn.full {
  width: 100%;
}

.quick-actions {
  width: min(100% - 36px, var(--max));
  margin: -44px auto 0;
  position: relative;
  z-index: 10;
  background: var(--white);
  border-radius: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
}

.quick-actions a,
.quick-actions button {
  background: var(--white);
  border: none;
  text-align: left;
  padding: 24px;
  border-right: 1px solid var(--border);
  cursor: pointer;
}

.quick-actions a:last-child,
.quick-actions button:last-child {
  border-right: none;
}

.quick-actions strong {
  display: block;
  color: var(--green-main);
  font-size: 19px;
}

.quick-actions span {
  color: var(--gray);
}

.section {
  padding: 100px 0;
}

.section-heading {
  max-width: 790px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading h2,
.about-content h2,
.areas-grid h2,
.contact-card h2 {
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--green-dark);
}

.section-heading p,
.about-content p,
.areas-grid p,
.contact-card p {
  color: var(--gray);
  font-size: 18px;
  margin-top: 14px;
}

.services-section {
  background: var(--cream);
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 28px;
  box-shadow: 0 14px 38px rgba(7, 27, 16, 0.07);
  transition: 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.service-card span {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  background: var(--green-light);
  border-radius: 18px;
  font-size: 26px;
  margin-bottom: 20px;
}

.service-card h3 {
  color: var(--green-main);
  font-size: 23px;
  margin-bottom: 8px;
}

.service-card p {
  color: var(--gray);
}

.service-card.featured {
  background: linear-gradient(135deg, var(--green-dark), var(--green-main));
}

.service-card.featured h3,
.service-card.featured p {
  color: var(--white);
}

.about-section {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
}

.about-image img {
  height: 620px;
  object-fit: cover;
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.about-list {
  display: grid;
  gap: 12px;
  margin: 28px 0;
}

.about-list div {
  background: var(--cream);
  padding: 14px 16px;
  border-radius: 16px;
  color: var(--green-main);
  font-weight: 800;
}

.gallery-section {
  background: var(--green-dark);
}

.section-heading.light h2 {
  color: var(--white);
}

.section-heading.light p {
  color: rgba(255, 255, 255, 0.72);
}

.gallery-slider {
  position: relative;
}

.gallery-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 8px 4px 18px;
}

.gallery-track::-webkit-scrollbar {
  height: 10px;
}

.gallery-track::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 999px;
}

.gallery-track figure {
  min-width: 340px;
  height: 430px;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.26);
  background: var(--white);
}

.gallery-track img {
  height: 100%;
  object-fit: cover;
}

.gallery-track figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 12px 14px;
  border-radius: 16px;
  color: var(--white);
  background: rgba(7, 27, 16, 0.75);
  backdrop-filter: blur(10px);
  font-weight: 900;
}

.slider-btn {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  z-index: 3;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: var(--white);
  color: var(--green-dark);
  font-size: 34px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.slider-btn.prev {
  left: -12px;
}

.slider-btn.next {
  right: -12px;
}

.reviews-section {
  background: var(--cream);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 34px;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 26px;
  box-shadow: 0 14px 38px rgba(7, 27, 16, 0.07);
}

.review-stars {
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.review-card p {
  color: var(--green-dark);
  font-size: 17px;
  margin-bottom: 18px;
}

.review-card strong {
  color: var(--green-main);
}

.review-card span {
  display: block;
  color: var(--gray);
}

.review-form-box {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  max-width: 760px;
  margin: 0 auto;
}

.review-form-box h3 {
  color: var(--green-main);
  font-size: 28px;
  margin-bottom: 18px;
}

.review-form-box form {
  display: grid;
  gap: 12px;
}

.areas-section {
  background: var(--white);
}

.areas-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: center;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.area-tags span {
  background: var(--green-light);
  color: var(--green-main);
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid var(--border);
}

.map-card {
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.map-card iframe {
  width: 100%;
  height: 430px;
  border: none;
}

.contact-section {
  background: var(--cream);
}

.contact-card {
  background:
    linear-gradient(135deg, rgba(7, 27, 16, 0.96), rgba(31, 122, 58, 0.88)),
    url("assets/imagenes/stone-edge.jpg");
  background-size: cover;
  background-position: center;
  color: var(--white);
  border-radius: 36px;
  padding: 58px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 38px;
  align-items: center;
}

.contact-card h2 {
  color: var(--white);
}

.contact-card p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.contact-options a,
.contact-options button {
  background: rgba(255, 255, 255, 0.13);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 22px;
  padding: 20px;
  text-align: left;
  cursor: pointer;
}

.contact-options strong {
  display: block;
  color: var(--gold);
  font-size: 18px;
}

.contact-options span {
  color: rgba(255, 255, 255, 0.82);
}

.footer {
  background: var(--green-dark);
  color: var(--white);
  padding: 56px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.85fr 0.7fr;
  gap: 42px;
}

.footer-logo {
  width: 150px;
  margin-bottom: 18px;
  background: var(--white);
  border-radius: 22px;
  padding: 8px;
}

.footer p {
  color: rgba(255, 255, 255, 0.72);
  max-width: 440px;
}

.footer h3 {
  color: var(--gold);
  margin-bottom: 14px;
}

.footer a {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 8px;
}

.footer-bottom {
  width: min(100% - 36px, var(--max));
  margin: 34px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.62);
}

.sticky-actions {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
}

.modal.active {
  display: block;
}

.modal-bg {
  position: absolute;
  inset: 0;
  background: rgba(7, 27, 16, 0.78);
  backdrop-filter: blur(8px);
}

.modal-panel {
  position: relative;
  z-index: 2;
  width: min(100% - 32px, 820px);
  max-height: calc(100vh - 32px);
  overflow-y: auto;
  margin: 16px auto;
  background: var(--white);
  border-radius: 30px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.modal-panel h2 {
  color: var(--green-dark);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green-dark);
  color: var(--white);
  font-size: 28px;
}

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

label {
  display: block;
  margin-bottom: 15px;
}

label span {
  display: block;
  color: var(--green-main);
  font-weight: 900;
  margin-bottom: 7px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: var(--cream);
  color: var(--black);
  border-radius: 15px;
  padding: 14px 16px;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(31, 122, 58, 0.12);
}

.form-note {
  color: var(--gray);
  font-size: 14px;
  margin-top: 14px;
}

@media (max-width: 960px) {
  .menu-btn {
    display: grid;
    place-items: center;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 88px;
    left: 18px;
    right: 18px;
    background: var(--green-dark);
    border-radius: 24px;
    padding: 24px;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .nav-links.active {
    display: flex;
  }

  .quick-actions,
  .about-grid,
  .areas-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 640px) {
  .navbar {
    border-radius: 24px;
  }

  .brand-logo {
    width: 48px;
    height: 48px;
  }

  .hero {
    padding-top: 140px;
  }

  .hero h1 {
    letter-spacing: -1.5px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .quick-actions,
  .services-grid,
  .reviews-grid,
  .footer-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .quick-actions a,
  .quick-actions button {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .about-image img {
    height: 420px;
  }

  .section {
    padding: 78px 0;
  }

  .gallery-track figure {
    min-width: 280px;
    height: 380px;
  }

  .contact-card {
    padding: 34px 24px;
  }
.sticky-actions {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 2000;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: auto;
  max-width: calc(100% - 32px);
}

.sticky-actions a,
.sticky-actions button {
  width: 100%;
  min-width: 0;
  min-height: 54px;
  border: none;
  border-radius: 999px;
  font-weight: 900;
  font-size: 16px;
  color: var(--white);
  background: var(--green);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
}

.sticky-actions button {
  background: var(--gold);
  color: var(--green-dark);
}

body {
  padding-bottom: 92px;
}