/* ============================================================
   FLORISTERÍA BONSAI — Caldas de Reis
   Hoja de estilos principal
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,400;1,9..144,500&family=Manrope:wght@400;500;600;700&display=swap');

:root {
  /* --- color --- */
  --color-leaf: #223526;       /* verde hoja profundo — base oscura */
  --color-leaf-2: #2f4a37;     /* variante ligeramente más clara para degradados */
  --color-sage: #8a9a78;       /* verde salvia — acentos medios */
  --color-cream: #f6f1e6;      /* blanco roto / crema — fondo principal */
  --color-cream-2: #efe7d6;    /* crema un pelín más oscuro, para separar bloques */
  --color-earth: #cdbc9c;      /* tierra clara */
  --color-brown: #5a4632;      /* marrón cálido — texto secundario */
  --color-terracotta: #b56a46; /* terracota — acento cálido, uso muy puntual */
  --color-blush: #d99a95;      /* rosa floral sutil */
  --color-ink: #26231d;        /* casi-negro cálido para texto principal */

  /* --- tipografía --- */
  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;

  /* --- ritmo / espaciado --- */
  --section-pad: clamp(4.5rem, 9vw, 8.5rem);
  --edge-pad: clamp(1.25rem, 5vw, 4rem);
  --radius-organic: 63% 37% 54% 46% / 43% 37% 63% 57%;
  --radius-organic-2: 42% 58% 61% 39% / 51% 44% 56% 49%;
  --ease-soft: cubic-bezier(.22, .61, .36, 1);

  --max-w: 1280px;
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body, h1, h2, h3, p, figure, ul { margin: 0; }
ul { padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

html, body { overflow-x: hidden; width: 100%; }

body {
  font-family: var(--font-body);
  color: var(--color-ink);
  background: var(--color-cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--edge-pad);
}

:focus-visible {
  outline: 2px solid var(--color-terracotta);
  outline-offset: 3px;
  border-radius: 2px;
}

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

.skip-link {
  position: absolute; top: -100px; left: 1rem;
  background: var(--color-leaf); color: var(--color-cream);
  padding: .75rem 1.25rem; border-radius: 999px; z-index: 999;
  transition: top .25s var(--ease-soft);
}
.skip-link:focus { top: 1rem; }

/* ============================================================
   TIPOGRAFÍA
   ============================================================ */
h1, h2, h3 { font-family: var(--font-display); font-weight: 500; color: var(--color-leaf); line-height: 1.08; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-body); font-weight: 700; font-size: .74rem;
  letter-spacing: .03em; color: var(--color-leaf);
  background: rgba(138,154,120,.18);
  padding: .4rem .9rem .4rem .7rem;
  border-radius: 999px;
}
.eyebrow::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--color-terracotta); flex-shrink: 0;
}
.eyebrow-light {
  background: rgba(246,241,230,.16); color: var(--color-cream);
}
.eyebrow-light::before { background: var(--color-earth); }

.h-hero {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.h-section {
  font-size: clamp(2rem, 4vw, 3.1rem);
  max-width: 18ch;
}
.h-card { font-size: clamp(1.3rem, 2vw, 1.6rem); }

.lede {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--color-brown);
  max-width: 46ch;
}

.body-text { color: var(--color-brown); max-width: 62ch; }

/* subrayado animado, usado con moderación */
.ink-link {
  position: relative;
  padding-bottom: 2px;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0% 1px;
  background-repeat: no-repeat;
  background-position: left bottom;
  transition: background-size .35s var(--ease-soft);
}
.ink-link:hover, .ink-link:focus-visible { background-size: 100% 1px; }

/* ============================================================
   BOTONES
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-body); font-weight: 600; font-size: .95rem;
  padding: .95rem 1.7rem; border-radius: 999px;
  border: 1px solid transparent; white-space: nowrap;
  transition: transform .3s var(--ease-soft), box-shadow .3s var(--ease-soft), background .3s var(--ease-soft), color .3s var(--ease-soft);
}
.btn svg { width: 17px; height: 17px; transition: transform .3s var(--ease-soft); flex-shrink: 0; }

.btn-primary {
  background: var(--color-leaf); color: var(--color-cream);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 26px -12px rgba(34,53,38,.55); }
.btn-primary:hover svg { transform: translateX(3px); }

.btn-outline {
  background: transparent; color: var(--color-leaf); border-color: rgba(34,53,38,.35);
}
.btn-outline:hover { background: rgba(34,53,38,.06); transform: translateY(-2px); }

.btn-ghost-light {
  background: rgba(246,241,230,.12); color: var(--color-cream); border-color: rgba(246,241,230,.5);
  backdrop-filter: blur(6px);
}
.btn-ghost-light:hover { background: rgba(246,241,230,.22); transform: translateY(-2px); }

.btn-terracotta { background: var(--color-terracotta); color: var(--color-cream); }
.btn-terracotta:hover { transform: translateY(-3px); box-shadow: 0 14px 26px -12px rgba(181,106,70,.55); }

.btn-sm { padding: .7rem 1.3rem; font-size: .85rem; }

/* ============================================================
   NAVEGACIÓN
   ============================================================ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  background: var(--color-cream);
  transition: box-shadow .35s var(--ease-soft);
}
.site-header.is-scrolled { box-shadow: 0 12px 30px -20px rgba(38,35,29,.35); }

.topbar {
  background: var(--color-leaf); color: rgba(246,241,230,.82);
  overflow: hidden;
  max-height: 42px;
  transition: max-height .4s var(--ease-soft), opacity .3s var(--ease-soft);
}
.site-header.is-scrolled .topbar { max-height: 0; opacity: 0; }
.topbar .container {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding-block: .55rem; font-size: .78rem; font-weight: 600;
}
.topbar-links { display: flex; align-items: center; gap: 1.6rem; }
.topbar a { transition: opacity .25s; }
.topbar a:hover { opacity: .7; }

.navbar { padding-block: 1.15rem; transition: padding .35s var(--ease-soft); }
.site-header.is-scrolled .navbar { padding-block: .85rem; }
.navbar .container { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }

.brand {
  display: flex; align-items: baseline; gap: .5rem;
  font-family: var(--font-display); font-size: 1.45rem; font-weight: 500;
  color: var(--color-leaf);
}
.brand em { font-style: italic; font-weight: 500; }
.brand small {
  font-family: var(--font-body); font-weight: 600; font-size: .58rem;
  letter-spacing: .16em; text-transform: uppercase; opacity: .6;
}

.main-nav {
  display: flex; align-items: center; gap: 2.3rem;
  padding: .5rem 1.6rem; border-radius: 999px;
  background: var(--color-cream-2);
}
.nav-link {
  position: relative; font-weight: 600; font-size: .9rem;
  color: var(--color-brown);
  padding-block: .3rem;
  transition: color .3s var(--ease-soft);
}
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 1.5px;
  background: var(--color-terracotta); transition: right .32s var(--ease-soft);
}
.nav-link:hover, .nav-link.is-active { color: var(--color-leaf); }
.nav-link:hover::after, .nav-link.is-active::after { right: 0; }

.nav-actions { display: flex; align-items: center; gap: .9rem; }

.hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(34,53,38,.16); background: transparent;
}
.hamburger span {
  display: block; width: 20px; height: 2px; margin-inline: auto;
  background: var(--color-leaf); border-radius: 2px;
  transition: transform .35s var(--ease-soft), opacity .25s;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-panel {
  position: fixed; inset: 0; z-index: 99;
  background: var(--color-leaf); color: var(--color-cream);
  display: flex; flex-direction: column; justify-content: center;
  padding: 7rem var(--edge-pad) 3rem;
  transform: translateY(-100%);
  transition: transform .5s var(--ease-soft);
}
.mobile-panel.is-open { transform: translateY(0); }
.mobile-panel-links { display: flex; flex-direction: column; gap: 1.1rem; margin-bottom: 2.6rem; }
.mobile-panel-links a {
  font-family: var(--font-display); font-size: clamp(2rem, 9vw, 2.8rem);
  font-weight: 500; color: var(--color-cream);
}
.mobile-panel-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 2rem; }
.mobile-panel-social {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 600; color: var(--color-cream); opacity: .85;
}

/* ============================================================
   DECORACIÓN BOTÁNICA
   ============================================================ */
.botanical {
  position: absolute; pointer-events: none; opacity: .9; z-index: 0;
}
.leaf-stroke { stroke: currentColor; fill: none; stroke-width: 1.4; }

[data-parallax] { will-change: transform; }

/* ============================================================
   HERO (index) — pantalla partida, clara, sin foto de fondo oscurecida
   ============================================================ */
.hero-split {
  position: relative; min-height: 100svh;
  display: grid; grid-template-columns: .92fr 1.08fr;
  background: var(--color-cream);
}
.hero-split-text {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(7.5rem, 16vh, 9.5rem) clamp(1.5rem, 5vw, 4.5rem) 3.5rem clamp(1.5rem, 5vw, 5rem);
}
.hero-split-text .eyebrow { margin-bottom: 1.6rem; }
.hero-split-text h1 { margin-bottom: 1.3rem; max-width: 13ch; }
.hero-split-text .lede { margin-bottom: 2.3rem; }
.hero-split-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }
.hero-split-notes { display: flex; flex-wrap: wrap; gap: 1.8rem; font-size: .85rem; color: var(--color-brown); }
.hero-split-notes span { display: flex; align-items: center; gap: .5rem; }
.hero-split-notes svg { width: 16px; height: 16px; color: var(--color-terracotta); }

.hero-split-media { position: relative; overflow: hidden; min-height: 320px; }
.hero-split-media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 30%;
}

.hero-floating-card {
  position: absolute; left: clamp(-1.2rem, -2vw, -1.6rem); bottom: clamp(1.4rem, 4vh, 2.6rem);
  display: flex; align-items: center; gap: .8rem;
  background: var(--color-cream); border-radius: 18px;
  padding: .85rem 1.3rem .85rem .9rem;
  box-shadow: 0 24px 44px -22px rgba(34,53,38,.45);
  transform: rotate(-3deg);
}
.hero-floating-card img { width: 40px; height: auto; }
.hero-floating-card span {
  font-family: var(--font-display); color: var(--color-leaf);
  font-size: .82rem; line-height: 1.2; max-width: 11ch;
}

/* reveal on load */
[data-reveal] { opacity: 0; transform: translateY(22px); }
[data-reveal].is-in {
  animation: reveal-up .9s var(--ease-soft) forwards;
}
@keyframes reveal-up { to { opacity: 1; transform: translateY(0); } }

/* scroll reveal (IntersectionObserver toggles .is-visible) */
[data-observe] { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease-soft), transform .8s var(--ease-soft); }
[data-observe].is-visible { opacity: 1; transform: translateY(0); }
[data-observe="fade"] { transform: none; }
[data-observe="left"] { transform: translateX(-32px); }
[data-observe="left"].is-visible { transform: translateX(0); }
[data-observe="right"] { transform: translateX(32px); }
[data-observe="right"].is-visible { transform: translateX(0); }
@media (prefers-reduced-motion: reduce) {
  [data-observe], [data-reveal] { opacity: 1 !important; transform: none !important; animation: none !important; }
}

/* ============================================================
   SECCIONES GENERALES
   ============================================================ */
section { position: relative; }
.section-pad { padding-block: var(--section-pad); }
.section-head { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head.split {
  display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; flex-wrap: wrap;
}

.bg-cream { background: var(--color-cream); }
.bg-cream-2 { background: var(--color-cream-2); }
.bg-leaf { background: var(--color-leaf); color: var(--color-cream); }
.bg-leaf h2, .bg-leaf h3 { color: var(--color-cream); }

.divider-organic {
  position: relative; height: 60px; margin-top: -1px;
}
.divider-organic svg { width: 100%; height: 100%; display: block; }

/* --- filosofía --- */
.philosophy { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2.5rem, 6vw, 5.5rem); align-items: center; }
.philosophy-media { position: relative; }
.philosophy-media img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  border-radius: var(--radius-organic);
  transition: border-radius 1.2s var(--ease-soft);
}
.philosophy-media:hover img { border-radius: var(--radius-organic-2); }
.philosophy-media .frame-ring {
  position: absolute; inset: -18px -18px auto auto; width: 46%; aspect-ratio: 1;
  border: 1.5px solid var(--color-terracotta); border-radius: var(--radius-organic-2);
  z-index: -1;
}
.philosophy-list { display: flex; flex-direction: column; gap: 1.1rem; margin-top: 2.2rem; }
.philosophy-list li { display: flex; gap: .8rem; align-items: flex-start; color: var(--color-brown); }
.philosophy-list svg { width: 19px; height: 19px; flex-shrink: 0; margin-top: 3px; color: var(--color-terracotta); }

/* --- destacados --- */
.highlights-grid {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 1.6rem;
}
.highlight-card {
  position: relative; overflow: hidden; border-radius: 26px;
  color: var(--color-cream); display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.8rem; min-height: 300px;
  transition: transform .5s var(--ease-soft), box-shadow .5s var(--ease-soft);
}
.highlight-card:hover { transform: translateY(-6px); box-shadow: 0 26px 44px -24px rgba(34,53,38,.45); }
.highlight-card img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform .9s var(--ease-soft);
}
.highlight-card:hover img { transform: scale(1.07); }
.highlight-card::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(24,32,22,.05) 30%, rgba(20,26,18,.85) 100%);
}
.highlight-card > * { position: relative; z-index: 1; }
.highlight-card .tag { font-size: .78rem; font-weight: 700; letter-spacing: .04em; color: var(--color-earth); margin-bottom: .5rem; }
.highlight-card h3 { color: var(--color-cream); margin-bottom: .5rem; }
.highlight-card p { color: rgba(246,241,230,.85); font-size: .92rem; margin-bottom: 1.1rem; }
.highlight-card .card-link {
  display: inline-flex; align-items: center; gap: .4rem; font-weight: 600; font-size: .88rem;
}
.highlight-card .card-link svg { width: 15px; height: 15px; transition: transform .3s var(--ease-soft); }
.highlight-card:hover .card-link svg { transform: translateX(4px); }

.highlight-card.card-a { grid-column: span 7; min-height: 420px; }
.highlight-card.card-b { grid-column: span 5; }
.highlight-card.card-c { grid-column: span 5; }
.highlight-card.card-d { grid-column: span 7; min-height: 260px; }

/* --- hecho para ti --- */
.made-for-you {
  display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: center;
}
.made-for-you-media { position: relative; }
.made-for-you-media img {
  width: 100%; aspect-ratio: 5/4; object-fit: cover; border-radius: 28px 120px 28px 28px;
}
.made-for-you-media .petal-badge {
  position: absolute; left: -1.4rem; bottom: -1.4rem;
  background: var(--color-cream); color: var(--color-leaf);
  border-radius: 50%; width: 118px; height: 118px;
  display: flex; align-items: center; justify-content: center; text-align: center;
  font-family: var(--font-display); font-size: .92rem; line-height: 1.15; font-weight: 500;
  box-shadow: 0 18px 34px -18px rgba(34,53,38,.4);
  transform: rotate(-8deg);
}
.made-for-you-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.8rem; }

/* --- instagram --- */
.insta-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: .9rem;
}
.insta-grid a { position: relative; overflow: hidden; border-radius: 16px; aspect-ratio: 1; }
.insta-grid a:nth-child(1) { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
.insta-grid a:nth-child(4) { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
.insta-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-soft); }
.insta-grid a:hover img { transform: scale(1.08); }
.insta-grid a::after {
  content: ""; position: absolute; inset: 0; background: rgba(34,53,38,0);
  transition: background .35s var(--ease-soft);
}
.insta-grid a:hover::after { background: rgba(34,53,38,.18); }
.insta-head { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 2.2rem; }

/* --- CTA final --- */
.cta-final { text-align: center; padding-block: var(--section-pad); }
.cta-final h2 { max-width: 18ch; margin-inline: auto; }
.cta-final .lede { margin-inline: auto; }
.cta-final-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--color-leaf); color: var(--color-cream); padding-block: 4.5rem 2rem; position: relative; overflow: hidden; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(246,241,230,.14);
}
.footer-brand { display: flex; align-items: baseline; gap: .5rem; font-family: var(--font-display); font-size: 1.6rem; margin-bottom: 1rem; }
.footer-tag { color: rgba(246,241,230,.68); max-width: 34ch; }
.footer-col h4 { font-family: var(--font-body); font-size: .82rem; letter-spacing: .05em; text-transform: uppercase; color: var(--color-earth); margin-bottom: 1.1rem; font-weight: 700; }
.footer-col ul { display: flex; flex-direction: column; gap: .7rem; }
.footer-col a, .footer-col p { color: rgba(246,241,230,.82); font-size: .95rem; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding-top: 1.8rem; flex-wrap: wrap; font-size: .82rem; color: rgba(246,241,230,.55); }
.footer-mark {
  position: absolute; right: -2rem; bottom: -3rem; width: 220px; opacity: .07; pointer-events: none;
}

/* ============================================================
   BOTÓN FLOTANTE
   ============================================================ */
.float-cta { position: fixed; right: 1.3rem; bottom: 1.3rem; z-index: 90; }
.float-cta-toggle {
  display: flex; align-items: center; gap: .55rem;
  background: var(--color-leaf); color: var(--color-cream);
  border-radius: 999px; padding: 1rem 1.3rem; font-weight: 700; font-size: .88rem;
  box-shadow: 0 16px 32px -16px rgba(34,53,38,.55);
  transition: transform .3s var(--ease-soft), border-radius .3s var(--ease-soft);
}
.float-cta-toggle svg { width: 18px; height: 18px; }
.float-cta-toggle:hover { transform: translateY(-3px) scale(1.03); }
.float-cta-menu {
  position: absolute; bottom: calc(100% + .8rem); right: 0;
  display: flex; flex-direction: column; gap: .6rem;
  min-width: 200px;
  opacity: 0; transform: translateY(12px) scale(.96); pointer-events: none;
  transition: opacity .28s var(--ease-soft), transform .28s var(--ease-soft);
}
.float-cta.is-open .float-cta-menu { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.float-cta-menu a {
  display: flex; align-items: center; gap: .7rem;
  background: var(--color-cream); color: var(--color-leaf);
  padding: .85rem 1.1rem; border-radius: 14px; font-weight: 600; font-size: .9rem;
  box-shadow: 0 14px 26px -16px rgba(34,53,38,.4);
  transition: transform .25s var(--ease-soft), background .25s;
}
.float-cta-menu a:hover { transform: translateX(-4px); background: #fff; }
.float-cta-menu svg { width: 17px; height: 17px; color: var(--color-terracotta); }

/* ============================================================
   PÁGINAS INTERIORES — hero secundario
   ============================================================ */
.page-hero {
  padding-block: clamp(9rem, 18vh, 12rem) clamp(3.5rem, 7vw, 5.5rem);
  background: var(--color-leaf); color: var(--color-cream);
  position: relative; overflow: hidden;
}
.page-hero h1 { color: var(--color-cream); max-width: 16ch; }
.page-hero .lede { color: rgba(246,241,230,.82); margin-top: 1.1rem; }

/* ============================================================
   CATÁLOGO
   ============================================================ */
.filters { display: flex; flex-wrap: wrap; gap: .7rem; margin-bottom: clamp(2.2rem, 5vw, 3.2rem); }
.filter-btn {
  border: 1px solid rgba(90,70,50,.25); background: transparent; color: var(--color-brown);
  padding: .6rem 1.25rem; border-radius: 999px; font-weight: 600; font-size: .88rem;
  transition: all .3s var(--ease-soft);
}
.filter-btn:hover { border-color: var(--color-leaf); color: var(--color-leaf); }
.filter-btn.is-active { background: var(--color-leaf); border-color: var(--color-leaf); color: var(--color-cream); }

.masonry {
  columns: 3 260px; column-gap: 1.4rem;
}
.masonry-item {
  break-inside: avoid; margin-bottom: 1.4rem; border-radius: 20px; overflow: hidden;
  position: relative; transition: opacity .4s var(--ease-soft), transform .4s var(--ease-soft);
}
.masonry-item.is-hidden { display: none; }
.masonry-item img { width: 100%; height: auto; transition: transform .6s var(--ease-soft); }
.masonry-item:hover img { transform: scale(1.05); }
.masonry-item .overlay {
  position: absolute; inset: 0; display: flex; align-items: flex-end; padding: 1.1rem;
  background: linear-gradient(180deg, rgba(20,26,18,0) 55%, rgba(20,26,18,.78) 100%);
  opacity: 0; transition: opacity .35s var(--ease-soft);
}
.masonry-item:hover .overlay { opacity: 1; }
.masonry-item .overlay span { color: var(--color-cream); font-weight: 600; font-size: .92rem; }

.masonry-item.illustrated {
  background: var(--color-cream-2);
  aspect-ratio: 4/5; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1rem; text-align: center; padding: 2rem;
  border: 1px dashed rgba(90,70,50,.28);
}
.masonry-item.illustrated svg { width: 64px; height: 64px; color: var(--color-sage); }
.masonry-item.illustrated span.title { font-family: var(--font-display); font-size: 1.15rem; color: var(--color-leaf); }
.masonry-item.illustrated span.sub { font-size: .85rem; color: var(--color-brown); }

.catalog-group { margin-bottom: clamp(3.5rem, 7vw, 6rem); }
.catalog-group-head { max-width: 60ch; margin-bottom: 2rem; }

.catalog-cta {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
  padding: 2.4rem clamp(1.5rem, 4vw, 3rem); border-radius: 28px; background: var(--color-leaf); color: var(--color-cream);
  margin-block: clamp(3rem, 6vw, 5rem);
}
.catalog-cta h3 { color: var(--color-cream); max-width: 24ch; }

/* ============================================================
   CONTACTO
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: start; }
.contact-card {
  background: var(--color-cream-2); border-radius: 26px; padding: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 1.4rem;
}
.contact-row { display: flex; gap: 1.1rem; align-items: flex-start; padding-block: 1rem; border-bottom: 1px solid rgba(90,70,50,.14); }
.contact-row:last-child { border-bottom: none; }
.contact-row svg { width: 22px; height: 22px; color: var(--color-terracotta); flex-shrink: 0; margin-top: 2px; }
.contact-row h4 { font-family: var(--font-body); font-weight: 700; font-size: .95rem; margin-bottom: .25rem; }
.contact-row p, .contact-row a { color: var(--color-brown); font-size: .95rem; }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: .55rem 0; border-bottom: 1px solid rgba(90,70,50,.14); font-size: .93rem; }
.hours-table td:first-child { font-weight: 600; color: var(--color-leaf); }
.hours-table td:last-child { text-align: right; color: var(--color-brown); }
.hours-note { font-size: .8rem; color: var(--color-brown); opacity: .7; margin-top: .9rem; }

.map-wrap { border-radius: 26px; overflow: hidden; position: relative; aspect-ratio: 4/3.4; box-shadow: 0 24px 50px -30px rgba(34,53,38,.5); }
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

.contact-quick { display: flex; flex-direction: column; gap: .9rem; margin-top: 1.6rem; }
.contact-quick .btn { width: 100%; justify-content: center; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .topbar-links span:last-child { display: none; }
  .hero-split { grid-template-columns: 1fr; }
  .hero-split-media { min-height: 46vh; order: -1; }
  .hero-split-text { padding-top: 2.6rem; }
  .philosophy, .made-for-you, .contact-grid { grid-template-columns: 1fr; }
  .made-for-you-media { order: -1; }
  .highlight-card.card-a, .highlight-card.card-b, .highlight-card.card-c, .highlight-card.card-d { grid-column: span 12; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .insta-grid { grid-template-columns: repeat(4, 1fr); }
  .insta-grid a:nth-child(5), .insta-grid a:nth-child(6) { display: none; }
  .masonry { columns: 2 220px; }
}

@media (max-width: 640px) {
  .topbar { display: none; }
  .hero-split-media { min-height: 40vh; }
  .hero-floating-card { left: .9rem; bottom: 1.1rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .masonry { columns: 1 100%; }
  .float-cta { right: 1rem; bottom: 1rem; }
  .catalog-cta { text-align: center; justify-content: center; }
  .made-for-you-media .petal-badge { width: 96px; height: 96px; font-size: .8rem; }
}
