:root {
  --bg: #faf6f0;
  --bg-alt: #f1ebe0;
  --surface: #ffffff;
  --ink: #1f2a24;
  --ink-soft: #4b5751;
  --muted: #8a8278;
  --line: #e6dfd2;
  --primary: #2e5d4a;
  --primary-strong: #214437;
  --primary-soft: #d8e6df;
  --accent: #e89336;
  --accent-soft: #f4e4d4;
  --whatsapp: #25d366;
  --whatsapp-strong: #128c7e;
  --shadow-sm: 0 1px 2px rgba(20, 30, 25, 0.06);
  --shadow-md: 0 8px 24px rgba(20, 30, 25, 0.08);
  --shadow-lg: 0 24px 60px rgba(20, 30, 25, 0.12);
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --container: 1140px;
  --serif: "Fraunces", "Georgia", serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

a:hover {
  text-decoration: underline;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 12px 16px;
  border-radius: 0 0 var(--radius-sm) 0;
  z-index: 100;
}
.skip-link:focus {
  left: 0;
}

/* Typography */
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 0.4em;
}

h1 {
  font-size: clamp(2.4rem, 5vw + 1rem, 4rem);
  font-weight: 500;
}

h1 em {
  font-style: italic;
  color: var(--primary);
}

h2 {
  font-size: clamp(1.7rem, 2vw + 1rem, 2.4rem);
}

h3 {
  font-size: 1.2rem;
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: 0;
}

p {
  margin: 0 0 1em;
  color: var(--ink-soft);
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin: 0 0 14px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 240, 0.85);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 5px;
  padding-bottom: 5px;
}

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

.brand:hover {
  text-decoration: none;
}

.brand-logo {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  object-fit: contain;
  background: var(--surface);
  padding: 4px;
  box-shadow: var(--shadow-sm);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.05rem;
}

.brand-tag {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.primary-nav a {
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 0.95rem;
}

.primary-nav a:hover {
  color: var(--primary);
  text-decoration: none;
}

.primary-nav .nav-cta {
  background: var(--primary);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.primary-nav .nav-cta:hover {
  background: var(--primary-strong);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 100px;
}

.hero .container::before {
  content: "";
  position: absolute;
  inset: -10% -10% 30% 40%;
  background: radial-gradient(
      55% 55% at 50% 50%,
      rgba(46, 93, 74, 0.18),
      transparent 70%
    ),
    radial-gradient(40% 40% at 80% 30%, rgba(201, 122, 59, 0.18), transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: 720px;
}

.hero-lead {
  font-size: 1.1rem;
  max-width: 560px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.hero-highlights {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.hero-highlights li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-art {
  position: absolute;
  top: 60px;
  right: -60px;
  width: 480px;
  height: 460px;
  pointer-events: none;
  display: none;
}

.hero-art-card {
  position: absolute;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.hero-art-card-1 {
  width: 240px;
  height: 300px;
  right: 110px;
  top: 0;
  background: linear-gradient(135deg, #2e5d4a, #61917f);
}

.hero-art-card-2 {
  width: 200px;
  height: 240px;
  right: 0;
  top: 120px;
  background: linear-gradient(135deg, #c97a3b, #e9b07a);
}

.hero-art-card-3 {
  width: 160px;
  height: 160px;
  right: 200px;
  bottom: 0;
  background: linear-gradient(135deg, #f4e4d4, #d8e6df);
}

@media (min-width: 980px) {
  .hero-art {
    display: block;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease,
    border-color 0.2s ease, box-shadow 0.2s ease;
  line-height: 1;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: var(--primary-strong);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.btn-ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-lg {
  padding: 18px 30px;
  font-size: 1.05rem;
}

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

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

.section-head {
  max-width: 720px;
  margin-bottom: 48px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Cards grid */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  color: var(--ink);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-soft);
  text-decoration: none;
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--primary-soft);
  font-size: 1.6rem;
}

.card p {
  margin: 0;
}

.card-link {
  margin-top: auto;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.card-link::after {
  content: "→";
  transition: transform 0.2s ease;
}

.card:hover .card-link::after {
  transform: translateX(3px);
}

/* Two column blocks */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 880px) {
  .two-col {
    grid-template-columns: 1.1fr 1fr;
  }
  .two-col.reverse > :first-child {
    order: 2;
  }
}

.two-col-text .btn {
  margin-top: 12px;
}

.callout {
  background: var(--accent-soft);
  color: var(--ink);
  border-left: 3px solid var(--accent);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  margin: 0 0 24px;
}

/* Pricing */
.pricing {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
}

.pricing-title {
  margin-bottom: 18px;
}

.pricing-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pricing-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: var(--bg);
  position: relative;
}

.pricing-list li.featured {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.pricing-list li.featured .pricing-price,
.pricing-list li.featured .pricing-qty {
  color: #fff;
}

.pricing-qty {
  font-weight: 500;
  color: var(--ink);
}

.pricing-price {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--primary);
}

.pricing-tag {
  position: absolute;
  top: -10px;
  right: 14px;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--accent);
  color: #fff;
  padding: 4px 10px;
  border-radius: 999px;
}

.pricing-note {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
}

/* Info panel */
.info-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.info-panel h3 {
  margin-bottom: 16px;
  font-size: 1.1rem;
}

.info-panel ol,
.info-panel ul {
  padding-left: 20px;
  margin: 0;
  color: var(--ink-soft);
}

.info-panel li {
  margin-bottom: 8px;
}

.checklist,
.bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.checklist li,
.bullets li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-soft);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--primary-soft);
  border: 2px solid var(--primary);
}

.bullets li::before {
  content: "•";
  position: absolute;
  left: 6px;
  top: 0;
  color: var(--accent);
  font-weight: 700;
}

/* Cities */
.cities {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}

.cities li {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  text-align: center;
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--ink);
}

/* Final CTA */
.section-cta {
  background: var(--primary);
  color: #fff;
  text-align: center;
}

.section-cta h2,
.section-cta p {
  color: #fff;
}

.section-cta p {
  opacity: 0.85;
  max-width: 520px;
  margin: 0 auto 28px;
}

.cta-inner {
  padding: 40px 0;
}

.section-cta .btn-primary {
  background: var(--accent);
  color: #fff;
}

.section-cta .btn-primary:hover {
  background: #b66830;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: #d3d8d4;
  padding: 56px 0 24px;
}

.site-footer h2,
.site-footer p,
.site-footer a {
  color: #d3d8d4;
}

.footer-inner {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
  align-items: start;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 760px) {
  .footer-inner {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand .brand-logo {
  background: rgba(255, 255, 255, 0.06);
  width: 180px;
  height: 120px;
}

.footer-name {
  font-family: var(--serif);
  font-size: 1.1rem;
  margin: 0 0 4px;
  color: #fff;
}

.footer-region {
  margin: 0;
  color: #9aa39d;
  font-size: 0.9rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a {
  color: #b9c0bb;
  font-size: 0.95rem;
}

.footer-nav a:hover {
  color: #fff;
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #d3d8d4;
  font-size: 0.95rem;
}

.social-link:hover {
  color: #fff;
  text-decoration: none;
}

.footer-bottom {
  padding-top: 20px;
  font-size: 0.85rem;
  color: #8a938d;
}

/* WhatsApp floating button */
.wa-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 60px;
  height: 60px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 60;
  transition: transform 0.2s ease, background 0.2s ease;
}

.wa-fab:hover {
  transform: scale(1.25);
}

/* Mobile nav */
@media (max-width: 880px) {
  .nav-toggle {
    display: flex;
  }

  .primary-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 16px 24px 24px;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

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

  .primary-nav a {
    padding: 10px 4px;
    border-bottom: 1px solid var(--line);
  }

  .primary-nav a:last-child {
    border-bottom: none;
  }

  .primary-nav .nav-cta {
    margin-top: 8px;
    text-align: center;
    border-bottom: none;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 64px 0;
  }
  .hero {
    padding: 56px 0 72px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
