/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  color: #1a1a1a;
  background: #fff;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ── Variables ── */
:root {
  --green:      #1c3d2a;
  --green-mid:  #2d6b45;
  --green-light:#e8f2ec;
  --gold:       #b8952a;
  --cream:      #f7f5f2;
  --cream-dark: #ede9e3;
  --text:       #1a1a1a;
  --text-mid:   #555;
  --text-light: #999;
  --border:     #e0ddd9;
  --w:          1100px;
  --radius:     3px;
}

/* ── Layout ── */
.wrap { max-width: var(--w); margin: 0 auto; padding: 0 28px; }

/* ── HEADER / NAV ── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-top {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--green);
  text-transform: uppercase;
}
.logo-sub {
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}
nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2rem;
}
nav a {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-mid);
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: color .25s, border-color .25s;
}
nav a:hover, nav a.active {
  color: var(--green);
  border-bottom-color: var(--green);
}
/* dropdown */
.has-drop { position: relative; }
.has-drop > a::after { content: ' ▾'; font-size: .65em; }
.drop {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: #fff;
  border: 1px solid var(--border);
  min-width: 200px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  z-index: 200;
}
.has-drop:hover .drop { display: block; }
.drop li { border-bottom: 1px solid var(--border); }
.drop li:last-child { border-bottom: none; }
.drop a {
  display: block;
  padding: .65rem 1.1rem;
  font-size: .76rem;
  letter-spacing: .05em;
  border-bottom: none;
  white-space: nowrap;
}
.drop a:hover { background: var(--green-light); color: var(--green); border-bottom: none; }
/* mobile burger */
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.burger span { display: block; width: 24px; height: 1.5px; background: var(--text); transition: all .3s; }
#mobile-nav {
  display: none;
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 1rem 28px 1.5rem;
}
#mobile-nav a {
  display: block;
  padding: .6rem 0;
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border);
}
#mobile-nav a:hover { color: var(--green); }
#mobile-nav.open { display: block; }

/* ── HERO ── */
.hero {
  position: relative;
  height: 88vh;
  min-height: 520px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 26, 15, .48);
}
.hero-content {
  position: relative;
  text-align: center;
  color: #fff;
  padding: 0 24px;
  max-width: 720px;
}
.hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.hero-content h1 em { font-style: italic; }
.hero-content p {
  font-size: 1rem;
  font-weight: 300;
  opacity: .85;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-no-img {
  height: 340px;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-no-img .hero-content h1 { font-size: clamp(2rem,5vw,3.2rem); }

/* ── PAGE HERO (subpages) ── */
.page-hero {
  background: var(--green);
  padding: 4rem 28px 3.5rem;
  text-align: center;
  color: #fff;
}
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
}
.page-hero p {
  font-size: .95rem;
  opacity: .7;
  margin-top: .6rem;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: .75rem 2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all .25s;
}
.btn-white {
  background: #fff;
  color: var(--green);
}
.btn-white:hover { background: var(--cream); }
.btn-green {
  background: var(--green);
  color: #fff;
}
.btn-green:hover { background: var(--green-mid); }
.btn-outline {
  background: transparent;
  border: 1px solid var(--green);
  color: var(--green);
}
.btn-outline:hover { background: var(--green); color: #fff; }

/* ── SECTIONS ── */
section { padding: 5rem 0; }
.section-cream { background: var(--cream); }
.section-green { background: var(--green); color: #fff; }
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 300;
  color: var(--green);
  margin-bottom: .5rem;
  line-height: 1.2;
}
.section-title em { font-style: italic; }
.section-tag {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: .6rem;
}
.section-lead {
  font-size: .95rem;
  color: var(--text-mid);
  max-width: 560px;
  line-height: 1.8;
  margin-top: .6rem;
}

/* ── INTRO (home) ── */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.intro-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.intro-img-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: .85rem;
}

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}
.service-card {
  text-align: center;
}
.service-img-wrap {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.2rem;
  background: var(--cream-dark);
}
.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.service-card:hover .service-img-wrap img { transform: scale(1.07); }
.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--green);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: .4rem;
}
.service-card p {
  font-size: .85rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ── ACTIVITY ROWS ── */
.act-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 3px;
}
.act-row.reverse { direction: rtl; }
.act-row.reverse > * { direction: ltr; }
.act-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--cream-dark);
}
.act-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.act-row:hover .act-img img { transform: scale(1.04); }
.act-text {
  background: var(--cream);
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.act-text.green { background: var(--green); color: #fff; }
.act-text.green .section-title { color: #fff; }
.act-text.green .section-lead { color: rgba(255,255,255,.7); }
.act-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--border);
  line-height: 1;
  margin-bottom: .5rem;
}
.act-text.green .act-num { color: rgba(255,255,255,.2); }
.act-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: 1.2rem; }
.tag {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .75rem;
  border: 1px solid var(--green-mid);
  color: var(--green-mid);
}
.act-text.green .tag { border-color: rgba(255,255,255,.3); color: rgba(255,255,255,.7); }

/* ── TEAM ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.team-card { text-align: center; }
.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1rem;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-initial {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--green-mid);
}
.team-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: .2rem;
}
.team-card .role {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: .4rem;
}
.team-card p {
  font-size: .8rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ── PRICES ── */
.price-section { margin-bottom: 3rem; }
.price-section h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: .2rem;
  padding-bottom: .6rem;
  border-bottom: 1px solid var(--border);
}
.price-section .subtitle {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1.2rem;
}
.price-list { list-style: none; }
.price-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: .7rem 0;
  border-bottom: 1px solid var(--border);
  font-size: .9rem;
  color: var(--text-mid);
}
.price-list li:last-child { border-bottom: none; }
.price-list .price-name { flex: 1; padding-right: 1rem; }
.price-list .price-note {
  font-size: .75rem;
  color: var(--text-light);
  font-style: italic;
}
.price-list .price-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--green);
  white-space: nowrap;
}
.price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.price-note-box {
  background: var(--green-light);
  border-left: 3px solid var(--green-mid);
  padding: 1.2rem 1.4rem;
  font-size: .85rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-top: 2rem;
}

/* ── NORMATIVA ── */
.normativa-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.normativa-list li {
  font-size: .88rem;
  color: var(--text-mid);
  padding-left: 1.2rem;
  position: relative;
}
.normativa-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--green-mid);
}

/* ── GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.gallery-item {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--cream-dark);
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item .gi-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(10,26,15,.6));
  color: #fff;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 1.5rem .8rem .6rem;
  opacity: 0;
  transition: opacity .3s;
}
.gallery-item:hover .gi-label { opacity: 1; }

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.ci-block h4 {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .4rem;
}
.ci-block p, .ci-block a {
  font-size: .9rem;
  color: var(--text-mid);
  line-height: 1.7;
}
.ci-block a:hover { color: var(--green); }
/* Form */
.form-row { margin-bottom: 1.2rem; }
label {
  display: block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: .4rem;
}
input, select, textarea {
  width: 100%;
  padding: .8rem 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  font-weight: 300;
  color: var(--text);
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  outline: none;
  transition: border-color .25s;
}
input:focus, select:focus, textarea:focus { border-color: var(--green-mid); }
textarea { resize: vertical; min-height: 120px; }
select { appearance: none; cursor: pointer; }
.form-check {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  margin-bottom: 1.4rem;
}
.form-check input[type="checkbox"] {
  width: auto;
  margin-top: 3px;
  accent-color: var(--green);
  flex-shrink: 0;
}
.form-check label {
  font-size: .75rem;
  letter-spacing: .03em;
  text-transform: none;
  color: var(--text-light);
  line-height: 1.5;
  font-weight: 300;
}
.form-success {
  display: none;
  background: var(--green-light);
  border: 1px solid var(--green-mid);
  padding: 1rem 1.2rem;
  font-size: .88rem;
  color: var(--green);
  margin-top: 1rem;
}

/* ── MAP ── */
.map-wrap {
  width: 100%;
  height: 280px;
  background: var(--cream-dark);
  border: 1px solid var(--border);
  overflow: hidden;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ── CTA STRIP ── */
.cta-strip {
  background: var(--green);
  padding: 4rem 28px;
  text-align: center;
  color: #fff;
}
.cta-strip h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 300;
  margin-bottom: .8rem;
}
.cta-strip p {
  font-size: .9rem;
  opacity: .7;
  margin-bottom: 2rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ── FOOTER ── */
footer {
  background: #111;
  color: rgba(255,255,255,.55);
  padding: 3.5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
.footer-brand .logo-top { color: rgba(255,255,255,.85); }
.footer-brand p {
  font-size: .82rem;
  line-height: 1.8;
  margin-top: .8rem;
  max-width: 280px;
}
.footer-col h5 {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.footer-col a {
  font-size: .82rem;
  transition: color .2s;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
  font-size: .72rem;
}
.social-links { display: flex; gap: .8rem; }
.social-links a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  transition: border-color .25s, color .25s;
}
.social-links a:hover { border-color: rgba(255,255,255,.5); color: #fff; }
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 52px;
  height: 52px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.35);
  z-index: 300;
  transition: transform .3s, box-shadow .3s;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.45); }

/* ── METODO PAGE ── */
.method-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}
.method-block:nth-child(even) { direction: rtl; }
.method-block:nth-child(even) > * { direction: ltr; }
.method-img {
  aspect-ratio: 3/2;
  overflow: hidden;
  background: var(--cream-dark);
}
.method-img img { width: 100%; height: 100%; object-fit: cover; }
.benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-top: 1.2rem;
}
.benefits-list li {
  font-size: .9rem;
  color: var(--text-mid);
  padding-left: 1.2rem;
  position: relative;
}
.benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green-mid);
  font-weight: 600;
}

/* ── BLOG ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.blog-card {
  border: 1px solid var(--border);
  transition: box-shadow .3s;
}
.blog-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.08); }
.blog-card-img {
  aspect-ratio: 3/2;
  overflow: hidden;
  background: var(--cream-dark);
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-body { padding: 1.5rem; }
.blog-card-tag {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: .5rem;
}
.blog-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--green);
  line-height: 1.3;
  margin-bottom: .6rem;
}
.blog-card p {
  font-size: .82rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav ul { display: none; }
  .burger { display: flex; }
  .intro-grid, .contact-grid, .method-block, .act-row { grid-template-columns: 1fr; }
  .method-block:nth-child(even), .act-row.reverse { direction: ltr; }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .act-text { padding: 2.5rem 1.8rem; }
}
@media (max-width: 600px) {
  section { padding: 3.5rem 0; }
  .services-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero { height: 70vh; }
}
