/* ============================================================
   FONTANERÍA JARDÍN BOTÁNICO — Shop-front design system
   Warm paper + botanical green + terracotta. Serif signage type.
   ============================================================ */

:root {
  --paper:      #f6f1e2;
  --paper-dim:  #ece2c9;
  --ink:        #2a2318;
  --ink-soft:   #5c5240;
  --ink-faint:  #8a7f6a;
  --green:      #2f4d34;
  --green-dark: #1c301f;
  --green-soft: rgba(47, 77, 52, 0.10);
  --terracotta: #bd5b2c;
  --terracotta-dark: #954822;
  --terracotta-soft: rgba(189, 91, 44, 0.14);
  --line:       rgba(42, 35, 24, 0.14);
  --white:      #fffdf8;

  --r-card: 6px;
  --r-pill: 999px;

  --shadow: 0 14px 40px rgba(42, 35, 24, 0.14);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Work Sans', 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }

h1, h2, h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.eyebrow {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta-dark);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 22px; height: 2px;
  background: var(--terracotta);
  display: block;
}

.container { width: min(92%, 1120px); margin-inline: auto; }
.section { padding-block: 88px; }
.section-sm { padding-block: 48px; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; }

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
  background: var(--green-dark);
  color: rgba(255,255,255,0.82);
  font-size: 0.82rem;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 9px;
  flex-wrap: wrap;
}
.topbar-facts { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar-facts a { color: rgba(255,255,255,0.82); transition: color .2s; }
.topbar-facts a:hover { color: #fff; }
.topbar-facts i { margin-right: 6px; color: var(--terracotta); }
.topbar-lang { display: flex; gap: 10px; align-items: center; }
.topbar-lang a {
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--r-pill);
  padding: 3px 11px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}
.topbar-lang a[aria-current="page"] { background: var(--terracotta); border-color: var(--terracotta); color: #fff; }
.topbar-lang a:hover { color: #fff; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 1000;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s var(--ease), padding .3s var(--ease);
}
.nav.scrolled { box-shadow: 0 6px 24px rgba(42,35,24,0.10); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding-block: 16px;
}
.logo { display: block; }
.logo img { height: 34px; width: auto; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-size: 0.92rem; font-weight: 500; color: var(--ink-soft);
  position: relative; transition: color .2s;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -5px; height: 2px; width: 0;
  background: var(--terracotta); transition: width .25s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--green); color: #fff !important; padding: 10px 20px;
  border-radius: var(--r-pill); font-weight: 600; font-size: 0.88rem;
  display: inline-flex; align-items: center; gap: 8px; transition: background .2s, transform .2s var(--ease);
}
.nav-cta:hover { background: var(--green-dark); transform: translateY(-2px); }
.nav-cta::after { display: none !important; }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.burger span { width: 24px; height: 2px; background: var(--ink); transition: transform .3s, opacity .3s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.drawer {
  position: fixed; inset: 0; z-index: 999; background: var(--green-dark);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 32px;
  opacity: 0; pointer-events: none; transition: opacity .35s var(--ease);
}
.drawer.open { opacity: 1; pointer-events: all; }
.drawer a { font-family: 'Fraunces', serif; font-size: 1.6rem; color: #fff; }
.drawer .nav-cta { font-family: 'Work Sans', sans-serif; font-size: 1rem; }

@media (max-width: 820px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .topbar-facts { display: none; }
}

/* ============================================================
   HERO — shop window, not full-bleed video
   ============================================================ */
.hero { background: var(--paper); padding-block: 56px 0; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center;
}
.hero-title {
  font-size: clamp(2.1rem, 4.4vw, 3.6rem);
  line-height: 1.08;
  margin: 18px 0 22px;
}
.hero-title em { font-style: normal; color: var(--terracotta); }
.hero-lede {
  font-size: 1.08rem; color: var(--ink-soft); max-width: 46ch; margin-bottom: 34px; line-height: 1.75;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-media {
  position: relative; border: 10px solid var(--white); box-shadow: var(--shadow);
  aspect-ratio: 4/5; overflow: hidden;
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
  content: ''; position: absolute; inset: 0; border: 1px solid var(--line); pointer-events: none;
}

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { aspect-ratio: 16/10; order: -1; }
}

/* ---------- tile strip divider ---------- */
.tile-strip {
  height: 12px;
  background: repeating-linear-gradient(
    -45deg,
    var(--green) 0 9px,
    var(--terracotta) 9px 18px
  );
  opacity: 0.9;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 26px; border-radius: var(--r-pill);
  font-weight: 600; font-size: 0.93rem; border: none; cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s, background .2s, color .2s;
}
.btn-primary { background: var(--terracotta); color: #fff; box-shadow: 0 8px 24px rgba(189,91,44,0.32); }
.btn-primary:hover { background: var(--terracotta-dark); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-whatsapp { background: #25d366; color: #fff; }
.btn-whatsapp:hover { background: #1fb958; transform: translateY(-2px); }
.btn-block { width: 100%; justify-content: center; }

/* ============================================================
   FACTS STRIP
   ============================================================ */
.facts { background: var(--paper-dim); border-block: 1px solid var(--line); }
.facts-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.fact-item { display: flex; gap: 14px; align-items: flex-start; }
.fact-item i { color: var(--terracotta); font-size: 1.15rem; margin-top: 3px; }
.fact-item h3 { font-family: 'Work Sans', sans-serif; font-size: 0.98rem; font-weight: 600; margin-bottom: 4px; }
.fact-item p { font-size: 0.88rem; color: var(--ink-soft); }

@media (max-width: 760px) {
  .facts-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 64px; align-items: center; }
.about-media { border: 10px solid var(--white); box-shadow: var(--shadow); aspect-ratio: 4/5; overflow: hidden; }
.about-media img { width: 100%; height: 100%; object-fit: cover; }
.about-title { font-size: clamp(1.7rem, 3vw, 2.5rem); margin: 16px 0 20px; }
.about-body { color: var(--ink-soft); font-size: 1.02rem; line-height: 1.85; margin-bottom: 18px; }
.about-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.badge {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-pill);
  padding: 7px 16px; font-size: 0.84rem; font-weight: 500; color: var(--ink-soft);
  display: inline-flex; align-items: center; gap: 7px;
}
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }

@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-media { aspect-ratio: 16/10; }
}

/* ============================================================
   SERVICES — numbered list, not hover cards
   ============================================================ */
.services { background: var(--white); }
.services-head { max-width: 620px; margin-bottom: 48px; }
.services-head h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); margin-top: 16px; }
.service-list { border-top: 1px solid var(--line); }
.service-item {
  display: grid; grid-template-columns: 90px 1fr; gap: 24px;
  padding: 34px 0; border-bottom: 1px solid var(--line);
}
.service-num {
  font-family: 'Fraunces', serif; font-size: 2.1rem; color: var(--terracotta); font-weight: 500; line-height: 1;
}
.service-item h3 { font-size: 1.18rem; margin-bottom: 8px; }
.service-item p { color: var(--ink-soft); max-width: 60ch; line-height: 1.75; }

@media (max-width: 620px) {
  .service-item { grid-template-columns: 1fr; gap: 8px; }
}

/* ============================================================
   REVIEWS — honest mention, no fabricated quote
   ============================================================ */
.reviews { background: var(--green-dark); color: var(--paper); }
.reviews-inner { max-width: 640px; }
.reviews .eyebrow { color: var(--paper); opacity: 0.8; }
.reviews .eyebrow::before { background: var(--paper); }
.reviews-text { font-family: 'Fraunces', serif; font-size: clamp(1.3rem, 2.4vw, 1.9rem); line-height: 1.5; margin: 18px 0 22px; }
.reviews-link { display: inline-flex; align-items: center; gap: 8px; color: var(--paper); font-weight: 600; border-bottom: 1px solid rgba(246,241,226,0.5); padding-bottom: 2px; }
.reviews-link:hover { border-color: var(--paper); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--paper-dim); }
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: start; }
.contact-title { font-size: clamp(1.7rem, 3vw, 2.5rem); margin: 16px 0 20px; }
.contact-body { color: var(--ink-soft); margin-bottom: 32px; line-height: 1.8; }
.contact-items { display: flex; flex-direction: column; gap: 22px; margin-bottom: 30px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-item-icon {
  width: 42px; height: 42px; border-radius: 10px; background: var(--terracotta-soft);
  color: var(--terracotta-dark); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-item-text strong { display: block; font-size: 0.76rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 3px; }
.contact-item-text a, .contact-item-text span { color: var(--ink); font-size: 0.98rem; }
.contact-item-text a:hover { color: var(--terracotta-dark); }

.form-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-card);
  padding: 40px; box-shadow: var(--shadow);
}
.form-card h3 { font-size: 1.25rem; margin-bottom: 22px; }
.field { margin-bottom: 16px; }
.field input, .field textarea {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--line); border-radius: 4px;
  font-family: 'Work Sans', sans-serif; font-size: 0.95rem; color: var(--ink); background: var(--paper);
  transition: border-color .2s, background .2s; outline: none;
}
.field input:focus, .field textarea:focus { border-color: var(--terracotta); background: #fff; }
.field textarea { resize: vertical; min-height: 110px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-msg { margin-top: 12px; font-size: 0.88rem; text-align: center; }
.form-msg.success { color: var(--green); }
.form-msg.error { color: var(--terracotta-dark); }

@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .field-row { grid-template-columns: 1fr; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); color: rgba(246,241,226,0.7); padding-block: 40px; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-logo img { height: 26px; width: auto; filter: brightness(0) invert(1); opacity: 0.92; }
.footer-address { font-size: 0.86rem; }
.footer-address a { color: rgba(246,241,226,0.7); }
.footer-address a:hover { color: #fff; }
.footer-wa {
  width: 38px; height: 38px; border-radius: 50%; background: rgba(246,241,226,0.1);
  display: flex; align-items: center; justify-content: center; color: rgba(246,241,226,0.85);
  transition: background .2s, color .2s;
}
.footer-wa:hover { background: #25d366; color: #fff; }

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.wa-float {
  position: fixed; bottom: 26px; right: 26px; z-index: 900;
  width: 54px; height: 54px; border-radius: 50%; background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
  box-shadow: 0 10px 30px rgba(37,211,102,0.45);
  transition: transform .25s var(--ease);
}
.wa-float:hover { transform: scale(1.08) translateY(-2px); }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
