/* Dual Construct & Garden — Luxury Natural */

:root {
  --forest: #2a3d2a;
  --forest-dark: #1a2a1a;
  --earth: #5c4a3a;
  --earth-light: #8a7355;
  --bark: #2c241c;
  --cream: #faf8f4;
  --cream-dark: #ede8df;
  --sage: #6b7f62;
  --stone: #8a857c;
  --gold: #b8a078;
  --white: #ffffff;
  --shadow: rgba(26, 42, 26, 0.08);
  --shadow-deep: rgba(26, 42, 26, 0.18);
  --font-display: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --radius: 2px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-height: 5.25rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  color: var(--bark);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  color: var(--forest-dark);
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  font-weight: 500;
}

h2 {
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 500;
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.65rem);
}

em, .hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: inherit;
}

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

a {
  color: var(--forest);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--earth-light);
}

.feature-list {
  list-style: none;
  margin: 2rem 0 2.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.service-card ul {
  list-style: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.container {
  width: min(1200px, 90vw);
  margin-inline: auto;
}

/* ── Header — always transparent ── */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  border: none;
  transition: color var(--transition);
}

.site-header.scrolled {
  background: transparent;
  backdrop-filter: none;
  border: none;
  box-shadow: none;
}

.site-header.over-dark .logo-main,
.site-header.over-dark .nav-desktop a,
.site-header.over-dark .header-cta .btn-outline {
  color: var(--white);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.site-header.over-dark .logo-sub {
  color: rgba(255, 255, 255, 0.72);
}

.site-header.over-dark .nav-desktop a:hover,
.site-header.over-dark .nav-desktop a.active {
  color: var(--white);
  border-bottom-color: rgba(255, 255, 255, 0.85);
}

.site-header.over-dark .header-cta .btn-outline {
  border-color: rgba(255, 255, 255, 0.55);
}

.site-header.over-dark .header-cta .btn-outline:hover {
  background: var(--white);
  color: var(--forest-dark);
  text-shadow: none;
}

.site-header.over-dark .menu-toggle span {
  background: var(--white);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

.site-header.over-light .logo-main {
  color: var(--forest-dark);
}

.site-header.over-light .logo-sub {
  color: var(--sage);
}

.site-header.over-light .nav-desktop a {
  color: var(--bark);
}

.site-header.over-light .nav-desktop a:hover,
.site-header.over-light .nav-desktop a.active {
  color: var(--forest-dark);
  border-bottom-color: var(--forest);
}

.site-header.over-light .header-cta .btn-outline {
  color: var(--forest-dark);
  border-color: var(--forest);
}

.site-header.over-light .menu-toggle span {
  background: var(--forest-dark);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.35rem 0;
  gap: 2rem;
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.logo-main {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  line-height: 1.2;
  transition: color var(--transition);
}

.logo-sub {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  transition: color var(--transition);
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav-desktop a {
  padding: 0.35rem 0;
  margin: 0 0.9rem;
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  border-radius: 0;
  background: none;
  border-bottom: 1px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}

.nav-desktop a:hover,
.nav-desktop a.active {
  background: none;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 1.6rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}

.btn-primary:hover {
  background: var(--forest-dark);
  border-color: var(--forest-dark);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}

.btn-outline:hover {
  background: var(--forest);
  color: var(--white);
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  border-color: #25d366;
}

.btn-whatsapp:hover {
  background: #1da851;
  border-color: #1da851;
  color: #fff;
}

.btn-lg {
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--forest-dark);
  transition: var(--transition);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 1rem 0 1.5rem;
  border-top: 1px solid rgba(255, 252, 247, 0.1);
}

.nav-mobile.open {
  display: flex;
  background: rgba(30, 51, 30, 0.94);
  border-radius: var(--radius);
  padding: 1rem 1.25rem 1.5rem;
  margin-top: 0.5rem;
}

.nav-mobile.open {
  display: flex;
  background: rgba(26, 42, 26, 0.96);
  backdrop-filter: blur(12px);
  border-radius: var(--radius);
  padding: 1rem 1.25rem 1.5rem;
  margin-top: 0.5rem;
}

.nav-mobile a {
  padding: 0.75rem 0;
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-mobile a.active {
  color: var(--white);
}

/* ── Hero ── */

.hero {
  position: relative;
  height: 100svh;
  height: 100dvh;
  min-height: 600px;
  overflow: hidden;
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  animation: heroZoom 18s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(12, 18, 12, 0.62) 0%, rgba(12, 18, 12, 0.18) 28%, transparent 48%),
    linear-gradient(to top, rgba(12, 18, 12, 0.88) 0%, rgba(12, 18, 12, 0.45) 28%, transparent 52%);
  pointer-events: none;
}

.hero-layout {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-top {
  position: absolute;
  top: var(--nav-height);
  left: 0;
  right: 0;
  padding: 0.5rem clamp(1rem, 5vw, 2rem) 0;
  text-align: center;
  pointer-events: auto;
}

.hero-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem clamp(1rem, 5vw, 2rem);
  padding-bottom: max(1.25rem, env(safe-area-inset-bottom, 1.25rem));
  text-align: center;
  pointer-events: auto;
}

.hero-content {
  max-width: 920px;
  margin-inline: auto;
  padding: 0 1.5rem;
  text-align: center;
  color: var(--white);
}

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.38em;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 2.75rem;
}

.hero-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 2.75rem;
}

.hero h1 {
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  font-size: clamp(1.75rem, 6.5vw, 4.5rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.hero h1 .hero-line:first-of-type {
  color: #fffef8;
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.55),
    0 6px 28px rgba(0, 0, 0, 0.45),
    0 0 80px rgba(12, 18, 12, 0.35);
}

.hero-line {
  display: block;
  white-space: normal;
  text-wrap: balance;
}

.hero h1 em.hero-line {
  font-style: italic;
  font-weight: 400;
  color: #e2d4b0;
  margin-top: 0.2em;
  text-shadow:
    0 2px 6px rgba(0, 0, 0, 0.5),
    0 0 48px rgba(184, 160, 120, 0.35);
}

.hero-divider {
  display: none;
}

.hero-lead,
.hero p.hero-lead {
  font-size: clamp(0.95rem, 2.5vw, 1.25rem);
  font-weight: 300;
  line-height: 1.65;
  margin: 0 auto 1rem;
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.92);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.65rem, 2vw, 1rem);
  justify-content: center;
  align-items: center;
  width: 100%;
}

.hero .btn-lg {
  padding: clamp(0.85rem, 2vw, 1.05rem) clamp(1.25rem, 3vw, 2rem);
  font-size: clamp(0.68rem, 1.8vw, 0.76rem);
  letter-spacing: 0.16em;
  min-width: clamp(9rem, 22vw, 11rem);
  flex: 0 1 auto;
}

.hero .btn-primary {
  background: var(--white);
  color: var(--forest-dark);
  border-color: var(--white);
}

.hero .btn-primary:hover {
  background: transparent;
  color: var(--white);
}

.hero .btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
  background: transparent;
}

.hero .btn-outline:hover {
  background: var(--white);
  color: var(--forest-dark);
  border-color: var(--white);
}

.hero .btn-whatsapp {
  background: #25d366;
  color: #fff;
  border-color: #25d366;
}

.hero .btn-whatsapp:hover {
  background: #1da851;
  border-color: #1da851;
  color: #fff;
}

/* hero-scroll removed */

/* ── Page Hero (inner pages) ── */

.page-hero {
  padding: 8rem 0 4.5rem;
  background: linear-gradient(160deg, #1a2a1a 0%, #2a3d2a 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.page-hero p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  opacity: 0.78;
  max-width: 520px;
  margin-inline: auto;
  letter-spacing: 0.01em;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1.25rem;
  opacity: 0.55;
}

.breadcrumb a {
  color: var(--cream);
}

.breadcrumb a:hover {
  color: var(--white);
}

/* ── Sections ── */

section {
  padding: 6.5rem 0;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--sage);
  margin-bottom: 1.25rem;
}

.section-tag::before,
.section-tag::after {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.section-header h2 {
  margin-bottom: 0;
}

.section-header p {
  color: var(--stone);
  margin-top: 1.25rem;
  font-size: 0.98rem;
  font-weight: 300;
  line-height: 1.8;
}

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

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

/* ── Intro split ── */

.intro-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 5rem;
  align-items: center;
}

.intro-image {
  position: relative;
  overflow: hidden;
}

.intro-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.intro-text .section-tag {
  justify-content: flex-start;
}

.intro-text .section-tag::before {
  display: none;
}

.intro-text h2 {
  margin-bottom: 1.5rem;
}

.intro-text p {
  margin-bottom: 1.25rem;
  color: var(--stone);
  font-weight: 300;
  line-height: 1.85;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--cream-dark);
}

.feature-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 0.55rem;
}

.service-card {
  background: var(--white);
  border: none;
  border-top: 1px solid var(--cream-dark);
  padding: 2.5rem 0 0;
  transition: transform var(--transition);
}

.service-card::after {
  display: none;
}

.service-card:hover {
  transform: none;
  box-shadow: none;
}

.service-icon {
  width: auto;
  height: auto;
  background: none;
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.service-card h3 {
  margin-bottom: 1rem;
  font-weight: 500;
}

.service-card p {
  font-weight: 300;
  line-height: 1.75;
}

.service-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.88rem;
  font-weight: 400;
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--cream-dark);
}

.service-card ul li::before {
  content: "";
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  margin-top: 0.5rem;
  background: var(--sage);
  border-radius: 50%;
}

/* ── Equipment banner ── */

.equipment-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  background: var(--forest-dark);
  border-radius: var(--radius);
  overflow: hidden;
  color: var(--white);
}

.equipment-item {
  padding: 2.5rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.equipment-item + .equipment-item {
  border-left: 1px solid rgba(255, 252, 247, 0.12);
}

.equipment-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.equipment-item h3 {
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.equipment-item p {
  font-size: 0.95rem;
  opacity: 0.85;
}

/* ── Gallery ── */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
}

.gallery-grid--preview {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 760px;
  margin-inline: auto;
  gap: 1.5rem;
}

.gallery-preview-cta {
  text-align: center;
  margin-top: 2.25rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/4;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(to top, rgba(15, 22, 15, 0.8), transparent 55%);
  opacity: 1;
  padding: 1.5rem;
}

.gallery-overlay span {
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(20, 30, 20, 0.92);
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-height: 85vh;
  max-width: 90vw;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.8;
  transition: opacity var(--transition);
}

.lightbox-close:hover {
  opacity: 1;
}

/* ── Stats ── */

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.stat-item {
  padding: 1.5rem;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 500;
  color: var(--forest-dark);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--stone);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

/* ── About page ── */

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.value-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
}

.value-icon {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.value-card h3 {
  margin-bottom: 0.65rem;
}

.value-card p {
  font-size: 0.95rem;
  color: var(--stone);
}

/* ── Contact page ── */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
}

.contact-info-card {
  background: var(--forest-dark);
  color: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
}

.contact-info-card h3 {
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.contact-item-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.contact-item strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.7;
  margin-bottom: 0.25rem;
}

.contact-item a {
  color: var(--cream);
  font-size: 1.05rem;
  font-weight: 500;
}

.contact-item a:hover {
  color: var(--white);
}

.contact-item span {
  font-size: 1.05rem;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: 2.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: var(--forest-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--bark);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--forest);
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

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

.map-container {
  margin-top: 3rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 30px var(--shadow);
  height: 350px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ── Services detail page ── */

.service-category {
  margin-bottom: 4rem;
}

.service-category-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--cream-dark);
}

.category-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--forest);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 1.6rem;
}

.service-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.service-list-item {
  display: flex;
  gap: 0.85rem;
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}

.service-list-item:hover {
  border-color: var(--sage);
}

.service-list-item .check {
  color: var(--forest);
  font-weight: 700;
  flex-shrink: 0;
}

.service-list-item h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--forest-dark);
  margin-bottom: 0.25rem;
}

.service-list-item p {
  font-size: 0.88rem;
  color: var(--stone);
}

/* ── Footer ── */

.site-footer {
  background: linear-gradient(180deg, var(--forest-dark) 0%, #121f12 100%);
  color: rgba(255, 252, 247, 0.72);
  padding: 2.5rem 0 0;
  border-top: 1px solid rgba(255, 252, 247, 0.08);
}

.footer-top {
  text-align: center;
  padding-bottom: 1.5rem;
}

.footer-brand {
  max-width: 420px;
  margin-inline: auto;
}

.footer-logo {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 0.4rem;
}

.footer-tagline {
  font-size: 0.82rem;
  opacity: 0.72;
  margin-bottom: 0.65rem;
}

.footer-phone {
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream);
  transition: color var(--transition);
}

.footer-phone:hover {
  color: var(--white);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.25rem 0;
  padding: 1.15rem 0;
  border-top: 1px solid rgba(255, 252, 247, 0.08);
  border-bottom: 1px solid rgba(255, 252, 247, 0.08);
}

.footer-nav a {
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 252, 247, 0.68);
  padding: 0.4rem 0.85rem;
  transition: color var(--transition);
}

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

.footer-nav a + a::before {
  content: "·";
  margin-right: 0.85rem;
  opacity: 0.35;
  pointer-events: none;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 1.1rem;
  padding: 1rem 0;
  font-size: 0.7rem;
  line-height: 1.5;
  letter-spacing: 0.03em;
  opacity: 0.5;
}

.footer-legal span:not(:first-child)::before {
  content: "|";
  margin-right: 1.1rem;
  opacity: 0.35;
}

.footer-credits {
  padding: 1.75rem 0 2rem;
  border-top: 1px solid rgba(255, 252, 247, 0.06);
  text-align: center;
}

.footer-copy {
  font-size: 0.72rem;
  opacity: 0.45;
  margin: 0 0 1.75rem;
  max-width: 32rem;
  margin-inline: auto;
  line-height: 1.6;
}

.footer-nextera {
  max-width: 520px;
  margin-inline: auto;
  padding: 1.5rem 1.25rem 1.25rem;
  border: 1px solid rgba(184, 160, 120, 0.22);
  background: linear-gradient(145deg, rgba(184, 160, 120, 0.07) 0%, rgba(12, 18, 12, 0.4) 100%);
  border-radius: var(--radius);
}

.footer-nextera-label {
  display: block;
  font-size: 0.62rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(255, 252, 247, 0.45);
  margin-bottom: 1rem;
}

.footer-nextera-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.35rem 0.6rem;
  padding: 0.9rem 1.85rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(184, 160, 120, 0.55);
  background: rgba(184, 160, 120, 0.1);
  text-decoration: none;
  transition: all var(--transition);
  cursor: pointer;
}

.footer-nextera-link:hover {
  background: rgba(184, 160, 120, 0.22);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.28);
}

.footer-nextera-brand {
  font-family: "Syne", "Outfit", sans-serif;
  font-size: clamp(1.15rem, 3.5vw, 1.55rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #f0e8d8;
}

.footer-nextera-online {
  font-family: "Syne", "Outfit", sans-serif;
  font-size: clamp(0.75rem, 2vw, 0.88rem);
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer-nextera-arrow {
  font-size: 1.15rem;
  line-height: 1;
  color: var(--gold);
  transition: transform var(--transition);
}

.footer-nextera-link:hover .footer-nextera-arrow {
  transform: translate(3px, -3px);
}

.footer-nextera-rights {
  font-size: 0.68rem;
  line-height: 1.65;
  opacity: 0.5;
  margin: 0;
  text-align: center;
}

.footer-nextera-rights a {
  color: rgba(226, 212, 176, 0.85);
  border-bottom: 1px solid rgba(184, 160, 120, 0.35);
  transition: color var(--transition), border-color var(--transition);
}

.footer-nextera-rights a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* ── Legal page ── */

.legal-page {
  padding: 4rem 0 5rem;
}

.legal-content {
  max-width: 720px;
  margin-inline: auto;
}

.legal-updated {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--sage);
  margin-bottom: 2.5rem;
}

.legal-content h2 {
  font-size: 1.45rem;
  margin: 2.25rem 0 0.85rem;
}

.legal-content p {
  color: var(--stone);
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 1rem;
}

.legal-list {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
}

.legal-list li {
  position: relative;
  padding: 0.4rem 0 0.4rem 1.1rem;
  color: var(--stone);
  font-weight: 300;
  line-height: 1.7;
  border-bottom: 1px solid var(--cream-dark);
}

.legal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.legal-content a {
  color: var(--forest);
  border-bottom: 1px solid rgba(42, 61, 42, 0.2);
}

.legal-content a:hover {
  color: var(--forest-dark);
}

/* ── WhatsApp float — removed ── */

/* ── Animations ── */

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */

@media (max-width: 900px) {
  .nav-desktop,
  .header-cta .btn-outline {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .intro-grid,
  .contact-grid,
  .equipment-banner {
    grid-template-columns: 1fr;
  }

  .equipment-item + .equipment-item {
    border-left: none;
    border-top: 1px solid rgba(255, 252, 247, 0.12);
  }

  .footer-main,
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .footer-nav {
    gap: 0.15rem;
  }

  .footer-nav a {
    padding: 0.35rem 0.55rem;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
  }

  .footer-nav a + a::before {
    margin-right: 0.55rem;
  }

  .footer-nextera {
    padding: 1.25rem 1rem;
  }

  .footer-nextera-link {
    width: 100%;
    padding: 0.85rem 1rem;
  }

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

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

  .hero-top {
    padding-left: clamp(0.65rem, 3.5vw, 1.25rem);
    padding-right: clamp(0.65rem, 3.5vw, 1.25rem);
  }

  .hero h1 {
    font-size: clamp(1.95rem, 7.5vw, 3.35rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
  }
}

@media (max-width: 600px) {
  section {
    padding: 3.5rem 0;
  }

  .footer-legal span:not(:first-child)::before {
    display: none;
  }

  .footer-legal {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .stats-row {
    grid-template-columns: 1fr 1fr;
  }

  .hero-top {
    padding-top: 0.5rem;
    padding-left: clamp(0.5rem, 3vw, 1rem);
    padding-right: clamp(0.5rem, 3vw, 1rem);
  }

  .hero h1 {
    font-size: clamp(2.15rem, 10vw, 3.25rem);
    line-height: 1.05;
    letter-spacing: -0.035em;
    max-width: 100%;
  }

  .hero h1 .hero-line:first-of-type {
    text-shadow:
      0 2px 6px rgba(0, 0, 0, 0.6),
      0 8px 32px rgba(0, 0, 0, 0.5);
  }

  .hero h1 em.hero-line {
    margin-top: 0.1em;
    font-size: 1.02em;
    text-shadow:
      0 2px 8px rgba(0, 0, 0, 0.55),
      0 0 56px rgba(184, 160, 120, 0.45);
  }

  .hero-bottom {
    padding-bottom: max(1rem, env(safe-area-inset-bottom, 1rem));
  }

  .hero-lead,
  .hero p.hero-lead {
    margin-bottom: 0.85rem;
    font-size: clamp(0.9rem, 3.5vw, 1.05rem);
  }

  .hero-buttons {
    flex-direction: column;
    gap: 0.65rem;
  }

  .hero-buttons .btn {
    width: 100%;
    min-width: 0;
    max-width: none;
  }

  .gallery-grid--preview {
    grid-template-columns: 1fr;
    max-width: 360px;
  }
}
