  :root {
    --white: #ffffff;
    --cream-50: #faf8f4;
    --cream-100: #f3efe6;
    --cream-200: #e8e2d4;
    --sage-50: #f0f5f1;
    --sage-100: #dce8df;
    --sage-200: #b8d4be;
    --sage-500: #4a7c59;
    --sage-600: #3d6649;
    --sage-700: #2f5239;
    --sage-800: #243f2d;
    --forest-900: #1a2e22;
    --gold-500: #b8922a;
    --gold-400: #c9a84a;
    --gold-50: #faf5e8;
    --clay-500: #c45c3a;
    --text: #2a332c;
    --text-muted: #5c6b60;
    --line: rgba(42, 51, 44, 0.1);
    --shadow-sm: 0 2px 12px rgba(26, 46, 34, 0.06);
    --shadow-md: 0 8px 32px rgba(26, 46, 34, 0.08);
    --shadow-lg: 0 16px 48px rgba(26, 46, 34, 0.1);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --max-w: 1280px;
  }

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

  html { scroll-behavior: smooth; }

  body {
    background: var(--cream-50);
    color: var(--text);
    font-family: 'Archivo', sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
  }

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

  h1, h2, h3 {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--forest-900);
  }

  a { color: inherit; }

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

  @media (max-width: 640px) { .wrap { padding: 0 20px; } }

  /* ---------- top bar ---------- */
  .topbar {
    background: var(--sage-700);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.82rem;
  }

  .topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 28px;
    max-width: var(--max-w);
    margin: 0 auto;
    flex-wrap: wrap;
  }

  .topbar span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .topbar svg {
    width: 15px;
    height: 15px;
    opacity: 0.85;
  }

  .topbar-contact {
    display: inline-flex;
    align-items: center;
    gap: 14px;
  }

  .topbar-social {
    display: inline-flex;
    align-items: center;
    gap: 4px;
  }

  .topbar-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    color: inherit;
    border-radius: 50%;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
  }

  .topbar-social a:hover,
  .topbar-social a:focus-visible {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
  }

  .topbar-social svg {
    width: 16px;
    height: 16px;
    opacity: 1;
  }

  @media (max-width: 640px) {
    .topbar-inner {
      padding: 10px 18px;
    }

    .topbar-contact {
      margin-left: auto;
    }
  }

  /* ---------- nav ---------- */
  .site-chrome {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
  }

  header {
    position: relative;
    z-index: 1;
    background: var(--white);
    border-bottom: 1px solid var(--line);
  }

  .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 28px;
    max-width: var(--max-w);
    margin: 0 auto;
    gap: 24px;
  }

  .logo {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Fraunces', serif;
    font-size: 1.85rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--forest-900);
    text-decoration: none;
    line-height: 1;
  }

  .logo img {
    width: 54px;
    height: 54px;
    object-fit: contain;
    flex-shrink: 0;
  }

  .logo em {
    font-style: normal;
    color: var(--sage-500);
  }

  .navlinks {
    display: flex;
    gap: 36px;
    list-style: none;
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
  }

  .navlinks a {
    text-decoration: none;
    color: var(--text-muted);
    transition: color 0.2s;
    text-transform: uppercase;
    font-weight: 600;
  }

  .navlinks a:hover,
  .navlinks a:focus-visible {
    color: var(--sage-600);
  }

  .nav-item.has-submenu {
    position: relative;
  }

  .nav-item.has-submenu > a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }

  .nav-item.has-submenu > a::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    opacity: 0.7;
  }

  .submenu {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    min-width: 168px;
    padding: 10px 0;
    margin: 0;
    list-style: none;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
    z-index: 20;
  }

  .submenu::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -14px;
    height: 14px;
  }

  .submenu a {
    display: block;
    padding: 10px 18px;
    text-transform: none;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text);
    white-space: nowrap;
  }

  .submenu a:hover,
  .submenu a:focus-visible {
    color: var(--sage-700);
    background: var(--sage-50);
  }

  .nav-item.has-submenu:hover > .submenu,
  .nav-item.has-submenu:focus-within > .submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }

  .nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--white);
    cursor: pointer;
    flex-shrink: 0;
  }

  .nav-toggle-bar {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--forest-900);
    border-radius: 1px;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .site-chrome.nav-open .nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-chrome.nav-open .nav-toggle-bar:nth-child(2) {
    opacity: 0;
  }

  .site-chrome.nav-open .nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-mobile-cta {
    display: none;
  }

  @media (max-width: 820px) {
    .nav {
      flex-wrap: wrap;
      gap: 12px 16px;
      padding: 14px 18px;
    }

    .nav-visit {
      display: none;
    }

    .nav-toggle {
      display: inline-flex;
      margin-left: auto;
    }

    .navlinks {
      display: none;
      flex-direction: column;
      gap: 0;
      width: 100%;
      flex-basis: 100%;
      padding: 8px 0 12px;
      border-top: 1px solid var(--line);
      margin-top: 4px;
    }

    .site-chrome.nav-open .navlinks {
      display: flex;
    }

    .navlinks > li {
      border-bottom: 1px solid var(--line);
    }

    .navlinks > li:last-child {
      border-bottom: none;
    }

    .navlinks a {
      display: block;
      padding: 14px 4px;
      font-size: 0.95rem;
    }

    .nav-item.has-submenu {
      position: static;
    }

    .nav-item.has-submenu > a::after {
      display: none;
    }

    .submenu {
      position: static;
      transform: none;
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      min-width: 0;
      padding: 0 0 10px;
      margin: 0;
      border: 0;
      border-radius: 0;
      box-shadow: none;
      background: transparent;
    }

    .submenu::before {
      display: none;
    }

    .submenu a {
      padding: 10px 4px 10px 16px;
      color: var(--text-muted);
      font-size: 0.9rem;
    }

    .nav-mobile-cta {
      display: block;
      padding: 16px 4px 4px;
    }

    .nav-mobile-cta .btn {
      width: 100%;
      justify-content: center;
    }
  }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    font-family: 'Archivo', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  }

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

  .btn:focus-visible {
    outline: 2px solid var(--sage-500);
    outline-offset: 3px;
  }

  .btn-solid {
    background: var(--sage-600);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(61, 102, 73, 0.25);
  }

  .btn-solid:hover {
    background: var(--sage-700);
    box-shadow: 0 6px 20px rgba(61, 102, 73, 0.3);
  }

  .btn-ghost {
    border-color: var(--sage-200);
    color: var(--sage-700);
    background: var(--white);
  }

  .btn-ghost:hover {
    border-color: var(--sage-500);
    background: var(--sage-50);
  }

  .nav .btn {
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 26px;
    padding-right: 26px;
  }

  /* ---------- hero ---------- */
  .hero {
    position: relative;
    overflow: hidden;
    padding: 72px 0 80px;
    background: linear-gradient(160deg, var(--white) 0%, var(--sage-50) 55%, var(--cream-100) 100%);
  }

  .hero::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -80px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(74, 124, 89, 0.08) 0%, transparent 70%);
    pointer-events: none;
  }

  .hero::after {
    content: "";
    position: absolute;
    bottom: -60px;
    left: -40px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184, 146, 42, 0.06) 0%, transparent 70%);
    pointer-events: none;
  }

  .hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 56px;
    align-items: center;
  }

  @media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; }
  }

  .hero-tour {
    background: var(--white);
    border: 1px solid var(--line);
    padding: 12px;
    border-radius: var(--radius-lg);
    line-height: 0;
    box-shadow: var(--shadow-lg);
  }

  .hero-tour iframe {
    display: block;
    width: 100%;
    min-height: 640px;
    border-radius: calc(var(--radius-lg) - 6px);
  }

  @media (max-width: 900px) { .hero-tour iframe { min-height: 480px; } }
  @media (max-width: 560px) { .hero-tour iframe { min-height: 380px; } }

  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--sage-600);
    background: var(--sage-50);
    border: 1px solid var(--sage-100);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 5vw, 3.75rem);
    line-height: 1.08;
    max-width: 13ch;
  }

  .hero p {
    margin-top: 22px;
    max-width: 48ch;
    font-size: 1.08rem;
    color: var(--text-muted);
  }

  .hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 36px;
  }

  /* ---------- gauge ---------- */
  .gauge-section {
    padding: 0 0 72px;
    margin-top: -20px;
    position: relative;
    z-index: 3;
  }

  .gauge-card {
    background: var(--white);
    border: 1px solid var(--line);
    padding: 44px 48px;
    border-radius: var(--radius-lg);
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 48px;
    align-items: center;
    box-shadow: var(--shadow-md);
  }

  @media (max-width: 780px) {
    .gauge-card {
      grid-template-columns: 1fr;
      padding: 32px 24px;
      gap: 32px;
    }
  }

  .gauge-text p {
    font-family: 'Fraunces', serif;
    color: var(--forest-900);
    font-size: clamp(1.35rem, 2.4vw, 1.95rem);
    line-height: 1.25;
    max-width: 24ch;
  }

  .gauge-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--sage-600);
    margin-bottom: 18px;
  }

  .gauge-scale {
    position: relative;
    height: 8px;
    border-radius: 99px;
    background: linear-gradient(90deg, #6ba3d4, var(--sage-500) 35%, var(--sage-500) 65%, var(--clay-500));
    margin: 0 6px;
  }

  .gauge-scale .pin {
    position: absolute;
    top: 50%;
    width: 14px;
    height: 14px;
    background: var(--white);
    border: 3px solid var(--sage-600);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: var(--shadow-sm);
  }

  .gauge-vals {
    display: flex;
    justify-content: space-between;
    margin-top: 18px;
    font-family: 'Fraunces', serif;
  }

  .gauge-vals .v {
    font-size: 2rem;
    font-weight: 600;
    color: var(--forest-900);
  }

  .gauge-vals .lbl {
    font-family: 'Archivo', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    display: block;
    margin-top: 4px;
  }

  /* ---------- sections ---------- */
  section {
    position: relative;
    padding: 80px 0;
  }

  section.alt-bg {
    background: var(--white);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .section-head {
    text-align: center;
    margin-bottom: 52px;
  }

  .section-head .section-num {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--sage-500);
    margin-bottom: 12px;
  }

  .section-head h2 {
    font-size: clamp(1.85rem, 3.2vw, 2.6rem);
    margin-bottom: 14px;
  }

  .section-head .lede {
    max-width: 56ch;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 1.05rem;
  }

  /* ---------- about ---------- */
  .about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
    align-items: center;
  }

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

  .about-grid p {
    color: var(--text-muted);
    margin-bottom: 18px;
    font-size: 1.02rem;
  }

  .about-side {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }

  .about-intro h3 {
    font-size: clamp(1.45rem, 2.6vw, 1.85rem);
    line-height: 1.25;
    margin-bottom: 16px;
  }

  .about-intro p:last-of-type {
    margin-bottom: 0;
  }

  .about-cta {
    margin-top: 24px;
  }

  .page-hero {
    padding: 72px 0 56px;
    background: linear-gradient(160deg, var(--white) 0%, var(--sage-50) 55%, var(--cream-100) 100%);
    border-bottom: 1px solid var(--line);
  }

  .page-hero .eyebrow {
    margin-bottom: 18px;
  }

  .page-hero h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    line-height: 1.1;
    max-width: 18ch;
  }

  .page-hero p {
    margin-top: 18px;
    max-width: 62ch;
    color: var(--text-muted);
    font-size: 1.05rem;
  }

  .page-hero-emphasis {
    font-weight: 600;
    color: var(--forest-900) !important;
  }

  .page-hero .hero-cta {
    margin-top: 28px;
  }

  .page-content {
    padding: 72px 0 88px;
  }

  .page-prose {
    max-width: 68ch;
  }

  .page-prose p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 20px;
  }

  .page-prose p:last-child {
    margin-bottom: 0;
  }

  .about-page-grid {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 56px;
    align-items: start;
  }

  @media (max-width: 840px) {
    .about-page-grid { grid-template-columns: 1fr; }
  }

  .stat-row .num.num-sm {
    font-size: 1.35rem;
  }

  .section-head-left {
    text-align: left;
    margin-bottom: 30px;
  }

  .section-head-left h2 {
    margin-bottom: 0;
    line-height: 1;
  }

  .section-head-left .lede {
    margin-left: 0;
    margin-top: 14px;
  }

  .history-block .section-head,
  .visit-box .section-head,
  .consulta-box .section-head {
    margin-bottom: 20px;
  }

  .history-block .section-head h2,
  .visit-box .section-head h2,
  .consulta-box .section-head h2 {
    margin-bottom: 0;
  }

  .visit-box .section-head .lede,
  .consulta-box .section-head .lede {
    margin-top: 14px;
  }

  .img-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background:
      linear-gradient(135deg, var(--sage-50) 0%, var(--cream-100) 100%);
    border: 1px dashed var(--sage-200);
    color: var(--sage-600);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-align: center;
    padding: 24px;
  }

  .img-placeholder-tall {
    min-height: 320px;
    border-radius: var(--radius-lg);
  }

  .check-list {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
  }

  .check-list li {
    position: relative;
    padding: 8px 0 8px 28px;
    color: var(--text-muted);
    font-size: 1.02rem;
    border-bottom: 1px solid var(--line);
  }

  .check-list li:last-child {
    border-bottom: none;
  }

  .check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 16px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--sage-500);
  }

  .season-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  @media (max-width: 900px) {
    .season-grid { grid-template-columns: repeat(2, 1fr); }
  }

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

  .season-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    box-shadow: var(--shadow-sm);
  }

  .season-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--sage-700);
  }

  .season-card p {
    color: var(--text-muted);
    font-size: 1rem;
    margin: 0;
    line-height: 1.5;
  }

  .info-split {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
  }

  .info-split > * {
    min-width: 0;
  }

  .info-split-reverse {
    grid-template-columns: 0.9fr 1.1fr;
  }

  @media (max-width: 840px) {
    .info-split,
    .info-split-reverse {
      grid-template-columns: 1fr;
    }

    .media-frame {
      min-height: 220px;
    }
  }

  .consulta-box {
    max-width: 820px;
    margin: 0 auto;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    box-shadow: var(--shadow-md);
  }

  @media (max-width: 640px) {
    .consulta-box { padding: 32px 22px; }
  }

  .consulta-copy {
    margin: 0 auto 28px;
    text-align: center;
  }

  .consulta-phone {
    font-size: 1.1rem !important;
    color: var(--forest-900) !important;
  }

  .consulta-phone a {
    color: var(--sage-600);
    text-decoration: none;
    font-weight: 600;
  }

  .consulta-phone a:hover {
    text-decoration: underline;
  }

  .section-cta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 40px;
  }

  .catalog-block {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 40px;
    align-items: center;
    padding: 56px 0;
    border-bottom: 1px solid var(--line);
    scroll-margin-top: 100px;
  }

  .catalog-block:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .catalog-block:first-of-type {
    padding-top: 12px;
  }

  .catalog-block:nth-of-type(even) {
    direction: rtl;
  }

  .catalog-block:nth-of-type(even) > * {
    direction: ltr;
  }

  @media (max-width: 840px) {
    .catalog-block,
    .catalog-block:nth-of-type(even) {
      grid-template-columns: 1fr;
      direction: ltr;
      gap: 24px;
      padding: 40px 0;
    }
  }

  .catalog-block-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    aspect-ratio: 4/3;
    background: var(--sage-100);
    min-height: 220px;
  }

  .catalog-block-image.img-placeholder {
    box-shadow: none;
  }

  .catalog-block-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .catalog-block-text h2,
  .catalog-block-text h3 {
    font-size: clamp(1.45rem, 2.6vw, 1.9rem);
    margin-bottom: 14px;
  }

  .catalog-block-text p {
    color: var(--text-muted);
    font-size: 1.02rem;
    margin-bottom: 14px;
  }

  .catalog-block-text p:last-child {
    margin-bottom: 0;
  }

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

  .page-hero-grid > * {
    min-width: 0;
  }

  @media (max-width: 840px) {
    .page-hero-grid { grid-template-columns: 1fr; gap: 32px; }
  }

  .page-hero-grid .img-placeholder-tall {
    min-height: 360px;
  }

  /* ---------- about page ---------- */
  .media-frame {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 300px;
    aspect-ratio: 16 / 11;
    box-shadow: var(--shadow-md);
  }

  .media-frame img,
  .media-frame video {
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .media-frame img {
    pointer-events: none;
    -webkit-user-drag: none;
    user-select: none;
  }

  .media-frame video {
    background: var(--sage-100);
  }

  .media-frame.img-placeholder {
    border: none;
    background: var(--sage-100);
    color: var(--sage-700);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    font-weight: 600;
  }

  .media-frame-portrait {
    aspect-ratio: 4 / 5;
    min-height: 360px;
  }

  .about-copy .section-num {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--sage-500);
    margin-bottom: 14px;
  }

  .about-copy h2 {
    font-size: clamp(1.7rem, 3vw, 2.35rem);
    line-height: 1.15;
    margin-bottom: 16px;
    max-width: 14ch;
  }

  .about-copy p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 40ch;
    margin: 0;
  }

  .process-timeline {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    position: relative;
  }

  .process-timeline::before {
    content: "";
    position: absolute;
    top: 18px;
    left: 8%;
    right: 8%;
    height: 1px;
    background: var(--sage-200);
  }

  @media (max-width: 980px) {
    .process-timeline {
      grid-template-columns: 1fr;
      gap: 28px;
    }
    .process-timeline::before { display: none; }
  }

  .process-step {
    text-align: center;
    position: relative;
    z-index: 1;
  }

  .process-dot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--sage-300, #b8d4be);
    color: var(--sage-600);
    font-family: 'Fraunces', serif;
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 18px;
  }

  .process-icon {
    width: 42px;
    height: 42px;
    color: var(--sage-600);
    display: block;
    margin: 0 auto 14px;
  }

  .process-step h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }

  .process-step p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.5;
    margin: 0 auto;
    max-width: 18ch;
  }

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

  @media (max-width: 1100px) {
    .process-grid { grid-template-columns: repeat(3, 1fr); }
  }

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

  .process-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 28px 22px;
    box-shadow: var(--shadow-sm);
  }

  .process-num {
    display: block;
    font-family: 'Fraunces', serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--sage-500);
    letter-spacing: 0.06em;
    margin-bottom: 14px;
  }

  .process-card h3 {
    font-size: 1.12rem;
    margin-bottom: 10px;
  }

  .process-card p {
    color: var(--text-muted);
    font-size: 0.94rem;
    margin: 0;
    line-height: 1.5;
  }

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

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

  .area-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
  }

  .area-card-image {
    aspect-ratio: 16/10;
    border: none;
    border-bottom: 1px dashed var(--sage-200);
    border-radius: 0;
  }

  .area-card h3 {
    font-size: 1.2rem;
    margin: 22px 22px 10px;
  }

  .area-card p {
    color: var(--text-muted);
    font-size: 0.96rem;
    margin: 0 22px 24px;
  }

  .history-block {
    max-width: 920px;
  }

  .history-copy {
    margin: 0 auto 36px;
    text-align: center;
  }

  .history-stats {
    max-width: 520px;
    margin: 0 auto;
  }

  .visit-box {
    max-width: 820px;
    margin: 0 auto;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    box-shadow: var(--shadow-md);
  }

  @media (max-width: 640px) {
    .visit-box { padding: 32px 22px; }
  }

  .visit-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin: 8px auto 32px;
    max-width: 560px;
  }

  @media (max-width: 560px) {
    .visit-details { grid-template-columns: 1fr; }
  }

  .visit-detail .k {
    display: block;
    color: var(--sage-600);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
  }

  .visit-detail p {
    color: var(--forest-900);
    font-size: 1.05rem;
    margin: 0;
    line-height: 1.5;
  }

  .visit-detail a {
    color: var(--sage-600);
    text-decoration: none;
    font-weight: 600;
  }

  .visit-detail a:hover {
    text-decoration: underline;
  }

  .about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    aspect-ratio: 16/10;
    background: var(--sage-100);
  }

  .about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .stat-list {
    display: grid;
    gap: 16px;
  }

  .stat-row {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 28px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .stat-row:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
  }

  .stat-row .icon-wrap {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--sage-50);
    border: 1px solid var(--sage-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sage-600);
    font-family: 'Fraunces', serif;
    font-size: 1.1rem;
    font-weight: 700;
  }

  .stat-row .num {
    font-family: 'Fraunces', serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--sage-600);
    line-height: 1;
    margin-bottom: 4px;
  }

  .stat-row .desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.4;
  }

  /* ---------- features ---------- */
  .feat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

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

  .feat {
    background: var(--white);
    padding: 36px 28px;
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }

  .feat:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
  }

  .feat .icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--sage-50);
    border: 1px solid var(--sage-100);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    transition: background 0.25s ease;
  }

  .feat:hover .icon-circle {
    background: var(--sage-100);
  }

  .feat .line-icon {
    width: 30px;
    height: 30px;
    color: var(--sage-600);
    stroke-width: 1.5;
  }

  .feat h3 {
    font-size: 1.12rem;
    margin-bottom: 10px;
  }

  .feat p {
    color: var(--text-muted);
    font-size: 0.94rem;
    line-height: 1.55;
  }

  #porque .section-head h2 {
    font-size: clamp(2.15rem, 3.8vw, 3rem);
  }

  #porque .section-head .lede {
    font-size: 1.18rem;
    max-width: 60ch;
    line-height: 1.7;
  }

  #porque .feat h3 {
    font-size: 1.28rem;
  }

  #porque .feat p {
    font-size: 1.05rem;
    line-height: 1.6;
  }

  /* ---------- catalogo ---------- */
  .cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  @media (max-width: 900px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 560px) { .cat-grid { grid-template-columns: 1fr; } }

  .cat-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0;
    overflow: hidden;
    min-height: 160px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  }

  .cat-item:hover {
    transform: translateY(-3px);
    border-color: var(--sage-200);
    box-shadow: var(--shadow-md);
  }

  .cat-item:focus-visible {
    outline: 2px solid var(--sage-500);
    outline-offset: 3px;
  }

  .cat-image {
    overflow: hidden;
    background: var(--sage-100);
    min-height: 160px;
  }

  .cat-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
  }

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

  .cat-body {
    display: flex;
    align-items: center;
    padding: 20px 22px;
  }

  .cat-item .cat-name {
    font-family: 'Fraunces', serif;
    font-size: 1.05rem;
    line-height: 1.35;
    color: var(--forest-900);
  }

  /* ---------- carousel ---------- */
  .plant-carousel-section {
    background: var(--sage-50);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .carousel-shell { position: relative; }

  .plant-carousel {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 36px) / 3);
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 4px 0;
  }

  .plant-carousel::-webkit-scrollbar { display: none; }

  @media (max-width: 900px) {
    .plant-carousel { grid-auto-columns: calc((100% - 20px) / 2); }
  }

  @media (max-width: 580px) {
    .plant-carousel { grid-auto-columns: 84%; }
  }

  .plant-card {
    position: relative;
    height: 360px;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: var(--white);
    scroll-snap-align: start;
    box-shadow: var(--shadow-md);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
  }

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

  .plant-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .plant-card:hover img { transform: scale(1.05); }

  .plant-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(26, 46, 34, 0.65));
    pointer-events: none;
  }

  .plant-card span {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 20px;
    z-index: 1;
    font-family: 'Fraunces', serif;
    font-size: 1.1rem;
    line-height: 1.25;
    color: var(--white);
  }

  .carousel-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
  }

  .carousel-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--sage-200);
    background: var(--white);
    color: var(--sage-600);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease;
    box-shadow: var(--shadow-sm);
  }

  .carousel-btn:hover {
    border-color: var(--sage-500);
    background: var(--sage-600);
    color: var(--white);
    transform: translateY(-2px);
  }

  .carousel-btn svg {
    width: 20px;
    height: 20px;
    stroke-width: 2;
  }

  /* ---------- contacto ---------- */
  .split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

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

  .visit-notes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 32px;
  }

  @media (max-width: 700px) { .visit-notes { grid-template-columns: 1fr; } }

  .visit-note {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 24px 26px;
    box-shadow: var(--shadow-sm);
  }

  .visit-note h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }

  .visit-note p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
  }

  .schedule-card,
  .contact-block {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    box-shadow: var(--shadow-sm);
  }

  .schedule-card h3,
  .contact-block h3 {
    font-size: 1.2rem;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--sage-100);
  }

  .schedule-card:has([data-schedule-season]:not(:empty)) h3 {
    margin-bottom: 10px;
    padding-bottom: 0;
    border-bottom: none;
  }

  .schedule-season {
    margin: 0 0 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--sage-100);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--sage-600);
    letter-spacing: 0.02em;
  }

  .schedule-season:empty {
    display: none;
  }

  table { width: 100%; border-collapse: collapse; }

  table td {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-size: 0.96rem;
  }

  table td:first-child {
    font-weight: 600;
    color: var(--forest-900);
  }

  table td:last-child {
    text-align: right;
    color: var(--text-muted);
  }

  table tr:last-child td { border-bottom: none; }

  .schedule-note {
    margin-top: 18px;
    font-size: 0.92rem;
    color: var(--text-muted);
    font-style: italic;
  }

  .email-link {
    color: var(--sage-600);
    text-decoration: none;
    font-weight: 500;
  }

  .email-link:hover { text-decoration: underline; }

  .contact-block .row {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    font-size: 0.96rem;
    align-items: flex-start;
  }

  .contact-block .row:last-child { border-bottom: none; }

  .contact-block .k {
    color: var(--sage-600);
    min-width: 88px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding-top: 3px;
    flex-shrink: 0;
  }

  .contact-block .row a {
    color: var(--sage-600);
    text-decoration: none;
    font-weight: 500;
  }

  .contact-block .row a:hover { text-decoration: underline; }

  /* ---------- final cta ---------- */
  .final {
    text-align: left;
    padding: 80px 0;
    background: linear-gradient(135deg, var(--sage-600) 0%, var(--sage-700) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
    scroll-margin-top: 100px;
  }

  .final::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -60px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    pointer-events: none;
  }

  .final-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
  }

  @media (max-width: 840px) {
    .final-grid {
      grid-template-columns: 1fr;
      gap: 32px;
    }
  }

  .final h2 {
    font-size: clamp(1.9rem, 4vw, 2.6rem);
    max-width: 16ch;
    margin: 0 0 28px;
    color: var(--white);
    line-height: 1.2;
  }

  .final .btn-solid {
    background: var(--white);
    color: var(--sage-700);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 16px 36px;
    font-size: 1rem;
  }

  .final .btn-solid:hover {
    background: var(--gold-50);
    color: var(--forest-900);
  }

  .final-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 14px;
  }

  .final .btn-ghost {
    border-color: rgba(255, 255, 255, 0.45);
    color: var(--white);
    background: transparent;
    padding: 16px 36px;
    font-size: 1rem;
  }

  .final .btn-ghost:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.12);
  }

  .final-map {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    line-height: 0;
  }

  .final-map iframe {
    display: block;
    width: 100%;
    height: 360px;
    border: 0;
  }

  @media (max-width: 560px) {
    .final-map iframe { height: 280px; }
  }

  /* ---------- footer ---------- */
  footer {
    padding: 0;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    background: var(--cream-50);
  }

  .footer-bar {
    padding: 36px 0 48px;
    border-top: 1px solid var(--line);
    background: var(--cream-50);
  }

  footer .logo {
    font-size: 1.5rem;
    margin-bottom: 10px;
    justify-content: center;
  }

  footer .logo img {
    width: 46px;
    height: 46px;
  }

  /* ---------- FAQ ---------- */
  .faq-page {
    position: relative;
    z-index: 0;
    padding: 56px 20px 88px;
    background: transparent;
  }

  .faq-wrap {
    max-width: 800px;
    margin: 0 auto;
    background: transparent;
  }

  .faq-intro {
    margin-bottom: 36px;
    background: transparent;
  }

  .faq-intro h1 {
    font-size: clamp(1.85rem, 3.5vw, 2.6rem);
    line-height: 1.15;
    max-width: 18ch;
    background: transparent;
  }

  .faq-list {
    display: grid;
    gap: 0;
    background: transparent;
  }

  .faq-item {
    background: transparent;
  }

  .faq-item + .faq-item {
    border-top: 1px solid var(--line);
  }

  .faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 36px 22px 0;
    font-family: 'Fraunces', serif;
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.35;
    color: var(--forest-900);
    position: relative;
    background: transparent;
  }

  .faq-item summary::-webkit-details-marker {
    display: none;
  }

  .faq-item summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 22px;
    font-family: 'Archivo', sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--sage-600);
    line-height: 1;
  }

  .faq-item[open] summary::after {
    content: "−";
  }

  .faq-item summary:hover {
    color: var(--sage-700);
  }

  .faq-answer {
    padding: 0 0 24px;
    background: transparent;
  }

  .faq-answer p {
    color: var(--text-muted);
    font-size: 1.02rem;
    margin-bottom: 14px;
    line-height: 1.65;
  }

  .faq-answer p:last-child {
    margin-bottom: 0;
  }

  .faq-answer a {
    color: var(--sage-600);
    text-decoration: none;
    font-weight: 600;
  }

  .faq-answer a:hover {
    text-decoration: underline;
  }

  /* ---------- frutales ---------- */
  .frutales-section {
    background: var(--white);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  #frutales,
  #horta,
  #flores {
    scroll-margin-top: 120px;
  }

  .frutales-head {
    text-align: left;
    margin-bottom: 36px;
  }

  .frutales-head h2 {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    margin: 0;
  }

  .frutales-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 28px;
    align-items: stretch;
  }

  .frutales-row + .frutales-row {
    margin-top: 48px;
  }

  @media (max-width: 720px) {
    .frutales-row {
      grid-template-columns: 1fr;
      gap: 16px;
    }
  }

  .frutales-label {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream-50);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    min-height: 100%;
  }

  .frutales-label h3 {
    font-size: 2rem;
    margin: 0;
    color: var(--forest-900);
    text-align: center;
    line-height: 1.15;
  }

  .frutales-carousel-shell {
    position: relative;
    min-width: 0;
    container-type: inline-size;
    container-name: frutales;
  }

  .frutales-carousel {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 36px) / 3);
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 4px 0 8px;
  }

  .frutales-carousel::-webkit-scrollbar { display: none; }

  @media (max-width: 900px) {
    .frutales-carousel { grid-auto-columns: calc((100% - 18px) / 2); }
  }

  @media (max-width: 560px) {
    .frutales-carousel { grid-auto-columns: 78%; }
  }

  .frutales-card {
    margin: 0;
    scroll-snap-align: start;
  }

  .frutales-card-media {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--sage-100);
    box-shadow: var(--shadow-sm);
  }

  .frutales-card-media::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
  }

  .frutales-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
    -webkit-user-drag: none;
    user-select: none;
  }

  .frutales-card figcaption {
    margin-top: 12px;
    font-family: 'Fraunces', serif;
    font-size: 1.05rem;
    color: var(--forest-900);
    text-align: center;
  }

  .protected-media {
    -webkit-user-select: none;
    user-select: none;
  }

  .frutales-nav {
    position: absolute;
    top: calc(((100cqi - 36px) / 3) / 2);
    z-index: 3;
    margin: 0;
    box-shadow: var(--shadow-md);
    background: var(--white);
  }

  .frutales-nav-prev {
    left: 0;
    transform: translate(20%, -50%);
  }

  .frutales-nav-next {
    right: 0;
    transform: translate(-20%, -50%);
  }

  .frutales-nav-prev:hover,
  .frutales-nav-prev:focus-visible {
    transform: translate(20%, -50%);
  }

  .frutales-nav-next:hover,
  .frutales-nav-next:focus-visible {
    transform: translate(-20%, -50%);
  }

  @media (max-width: 900px) {
    .frutales-nav {
      top: calc(((100cqi - 18px) / 2) / 2);
    }
  }

  @media (max-width: 560px) {
    .frutales-nav {
      top: calc(78cqi / 2);
    }
  }

  /* ---------- horta grid ---------- */
  .horta-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
  }

  .horta-cell {
    margin: 0;
    aspect-ratio: 1;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--sage-100);
    box-shadow: var(--shadow-sm);
  }

  .horta-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
    -webkit-user-drag: none;
    user-select: none;
  }

  @media (max-width: 980px) {
    .horta-grid { grid-template-columns: repeat(3, 1fr); }
  }

  @media (max-width: 560px) {
    .horta-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  }
