/* Pomona Berries — site theme · "Editorial Minimal" (Rhode-inspired) with Pomona branding.
   Refined serif display, warm cream canvas, generous whitespace, understated UI.
   All colors/fonts/radii are CSS variables so the Tweaks panel can drive them. */
.p-app {
  --accent: #E63B55;
  --accent-deep: #C42742;
  --ink: #2C171C;
  --ink-soft: #7A6A6D;
  --cream: #FBF4EC;
  --cream-warm: #F4E9DD;
  --pine: #FF9FB6;
  --pine-cream: #FBE4DF;
  --green: #2FA84F;
  --green-deep: #1F7D3A;
  --blue: #3D52C9;
  --magenta: #D6336C;
  --purple: #6B3FA0;
  --yellow: #FFC93C;
  --line: rgba(44,23,28,.13);
  --line-soft: rgba(44,23,28,.08);
  --font-display: 'Schibsted Grotesk';
  --font-body: 'Hanken Grotesk';
  --img-radius: 6px;
  --scrim: 0.42;

  font-family: var(--font-body), system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}
.p-app *, .p-app *::before, .p-app *::after { box-sizing: border-box; }
.p-disp { font-family: var(--font-display), system-ui, sans-serif; font-weight: 500; letter-spacing: -.02em; line-height: 1.1; margin: 0; }
.p-app img { display: block; }
.p-app a { color: inherit; }

/* micro-label (kicker) — small uppercase, wide tracking, muted */
.p-kick { font-family: var(--font-body), sans-serif; font-weight: 600; font-size: 11.5px; letter-spacing: .24em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 18px; }

/* ---------- buttons ---------- */
.p-btn { background: var(--accent); color: #fff; border: 1px solid var(--accent); border-radius: 999px; padding: 14px 28px;
  font-family: var(--font-body), system-ui, sans-serif; font-weight: 600; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; cursor: pointer;
  text-decoration: none; display: inline-flex; align-items: center; gap: 9px; transition: background .2s, color .2s, border-color .2s; }
.p-btn:hover { background: var(--accent-deep); border-color: var(--accent-deep); }
.p-btn.line { background: transparent; border: 1px solid var(--ink); color: var(--ink); }
.p-btn.line:hover { background: var(--ink); color: var(--cream); }
.p-btn.line.light { border-color: rgba(255,255,255,.7); color: #fff; }
.p-btn.line.light:hover { background: #fff; color: var(--ink); }
.p-btn.wht { background: #fff; color: var(--ink); border-color: #fff; }
.p-btn.wht:hover { background: var(--cream); border-color: var(--cream); }

/* ---------- top nav ---------- */
.p-nav { display: flex; align-items: center; justify-content: space-between; padding: 24px 60px; position: sticky; top: 0; z-index: 40;
  background: rgba(251,244,236,.9); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line-soft); }
.p-nav.on-hero { position: absolute; left: 0; right: 0; background: transparent; backdrop-filter: none; border-bottom: none; }
.p-nav-links { display: flex; gap: 32px; align-items: center; }
.p-nav-links a { color: var(--ink); font-weight: 600; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; text-decoration: none; opacity: .78; cursor: pointer; transition: opacity .15s, color .15s; }
.p-nav-links a:hover { opacity: 1; color: var(--accent); }
.p-nav-links a.active { color: var(--accent); opacity: 1; }
/* Pineberry — subtle highlighted link (star product) */
.p-nav-links a.pine { color: var(--accent); opacity: 1; padding: 7px 15px; border: 1px solid var(--accent); border-radius: 999px; }
.p-nav-links a.pine:hover { background: var(--accent); color: #fff; }
.p-nav-links a.pine.active { background: var(--accent); color: #fff; }
.p-nav.on-hero .p-nav-links a.pine { color: #fff; border-color: rgba(255,255,255,.8); }
.p-nav.on-hero .p-nav-links a.pine:hover, .p-nav.on-hero .p-nav-links a.pine.active { background: #fff; color: var(--ink); }

/* nav dropdown (Productos) */
.p-navitem { position: relative; display: flex; align-items: center; padding: 6px 0; }
.p-navitem > a { display: inline-flex; align-items: center; gap: 6px; }
.p-navitem .chev { opacity: .7; transition: transform .15s; }
.p-navitem:hover .chev { transform: rotate(180deg); }
.p-submenu { position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(6px);
  background: var(--cream); border: 1px solid var(--line); border-radius: 4px; box-shadow: 0 20px 50px rgba(44,23,28,.14);
  padding: 8px; min-width: 280px; opacity: 0; visibility: hidden; transition: opacity .16s, transform .16s; z-index: 60; }
.p-submenu::before { content: ''; position: absolute; top: -14px; left: 0; right: 0; height: 14px; }
.p-navitem:hover .p-submenu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.p-submenu a { display: block; padding: 13px 15px; border-radius: 3px; font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink) !important; opacity: 1 !important; white-space: nowrap; cursor: pointer; transition: background .14s; }
.p-submenu a:hover { background: #fff; color: var(--accent) !important; }
.p-submenu a .sdesc { display: block; font-size: 12px; font-weight: 400; letter-spacing: .01em; text-transform: none; color: var(--ink-soft); margin-top: 4px; white-space: normal; }
.p-submenu a:hover .sdesc { color: var(--ink-soft); }

/* products filter pills */
.p-filter { display: flex; flex-wrap: wrap; gap: 10px; padding: 40px 70px 0; }
.p-filter button { border: 1px solid var(--line); background: transparent; color: var(--ink);
  font-family: var(--font-body), sans-serif; font-weight: 600; font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; padding: 10px 18px; border-radius: 999px; cursor: pointer; transition: all .15s; }
.p-filter button:hover { border-color: #677896; color: #677896; }
.p-filter button.on { background: #677896; color: #fff; border-color: #677896; }

/* ---------- calendar button + modal ---------- */
.p-cal-btn { display: inline-flex; align-items: center; gap: 9px; background: var(--accent); color: #fff; border: 1px solid var(--accent);
  border-radius: 999px; padding: 14px 26px; font-family: var(--font-body), sans-serif; font-weight: 600; font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  cursor: pointer; transition: background .2s; }
.p-cal-btn:hover { background: var(--accent-deep); border-color: var(--accent-deep); }
.p-nav.on-hero .p-cal-btn { background: #fff; color: var(--ink); border-color: #fff; }

.p-cal-backdrop { position: fixed; inset: 0; z-index: 200; background: rgba(28,12,16,.45); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center; padding: 40px 24px; animation: pcalfade .2s ease; }
@keyframes pcalfade { from { opacity: 0; } to { opacity: 1; } }
.p-cal { position: relative; background: var(--cream); border-radius: 8px; width: 100%; max-width: 940px; max-height: 90vh; overflow: auto;
  padding: 48px 52px 44px; box-shadow: 0 30px 80px rgba(28,12,16,.32); animation: pcalpop .24s cubic-bezier(.2,.7,.3,1); }
@keyframes pcalpop { from { transform: translateY(16px) scale(.98); opacity: 0; } to { transform: none; opacity: 1; } }
.p-cal-x { position: absolute; top: 22px; right: 22px; width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); 
  background: transparent; color: var(--ink); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .15s; }
.p-cal-x:hover { background: #fff; }
.p-cal-head { margin-bottom: 26px; max-width: 80%; }
.p-cal-head .p-kick { color: var(--accent); }
.p-cal-head h2 { font-size: 30px; margin: 0 0 8px; }
.p-cal-head p { font-size: 16px; color: var(--ink-soft); margin: 0; }
.p-cal-legend { display: flex; gap: 24px; flex-wrap: wrap; margin-bottom: 24px; }
.p-cal-legend span { display: inline-flex; align-items: center; gap: 9px; font-size: 12px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-soft); }
.p-cal-legend .sw { width: 15px; height: 15px; border-radius: 3px; }
.p-cal-legend .sw.peak { background: var(--accent); }
.p-cal-legend .sw.season { background: var(--accent); opacity: .3; }
.p-cal-legend .sw.lim { background: repeating-linear-gradient(45deg, var(--accent) 0 3px, transparent 3px 6px); border: 1px solid var(--accent); }

.p-cal-grid { display: flex; flex-direction: column; gap: 6px; }
.p-cal-row { display: grid; grid-template-columns: 168px repeat(12, 1fr); gap: 5px; align-items: center; }
.p-cal-row.head .p-cal-mh { font-size: 11px; font-weight: 600; color: var(--ink-soft); text-align: center; text-transform: uppercase; letter-spacing: .04em; padding-bottom: 4px; }
.p-cal-row.head .p-cal-mh.now { color: var(--accent); }
.p-cal-name { display: flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 600; padding-right: 10px; }
.p-cal-name .dot { width: 10px; height: 10px; border-radius: 50%; flex: none; }
.p-cal-name .lim-tag { font-style: normal; font-size: 11px; font-weight: 500; color: var(--ink-soft); }
.p-cal-cell { height: 30px; border-radius: 3px; background: #fff; }
.p-cal-cell.season { background: color-mix(in srgb, var(--bc) 30%, #fff); }
.p-cal-cell.peak { background: var(--bc); }
.p-cal-cell.lim { background: repeating-linear-gradient(45deg, var(--bc) 0 4px, color-mix(in srgb, var(--bc) 18%, #fff) 4px 8px); }
.p-cal-cell.nowcol { box-shadow: inset 0 0 0 2px rgba(44,23,28,.16); }
.p-cal-note { font-size: 13px; color: var(--ink-soft); opacity: .85; margin: 24px 0 0; font-style: italic; }

/* nav right cluster */
.p-nav.on-hero .p-nav-links a { color: #fff; opacity: .9; }
.p-nav.on-hero .p-nav-links a:hover, .p-nav.on-hero .p-nav-links a.active { color: #fff; opacity: 1; text-decoration: underline; text-underline-offset: 6px; }
.p-nav-right { display: flex; gap: 18px; align-items: center; }
.p-lang { display: flex; border: 1px solid var(--ink); border-radius: 999px; font-weight: 600; font-size: 11px; overflow: hidden; }
.p-lang button { border: none; background: transparent; cursor: pointer; padding: 7px 13px; font-family: var(--font-body), sans-serif; font-weight: 600; font-size: 11px; letter-spacing: .08em; color: var(--ink); }
.p-lang button.on { background: var(--ink); color: var(--cream); }
.p-nav.on-hero .p-lang { border-color: rgba(255,255,255,.6); }
.p-nav.on-hero .p-lang button { color: #fff; }
.p-nav.on-hero .p-lang button.on { background: #fff; color: var(--ink); }

/* ---------- hero ---------- */
.p-hero { position: relative; height: min(820px, 90vh); overflow: hidden; }
.p-hero > image-slot { position: absolute; inset: 0; display: block; }
.p-hero > .p-hero-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }

/* real product photos inside cards (cover + optional zoom) */
.pic.photo { overflow: hidden; }
.pic.photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.p-item .pic.photo { width: 100%; height: 300px; aspect-ratio: auto; border-radius: var(--img-radius); }
.p-prod .pic.photo { height: 200px; width: 100%; aspect-ratio: auto; }
/* image-slot defaults to 240x160; force the lineup slots to match the photo box */
.p-grid5 .p-item > image-slot { width: 100%; height: 300px; margin-bottom: 18px; }
.p-hero .scrim { position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,8,12,calc(var(--scrim)*.9)) 0%, rgba(20,8,12,calc(var(--scrim)*.2)) 38%, rgba(20,8,12,calc(var(--scrim)*1.15)) 100%); }
.p-hero .inner { position: absolute; left: 60px; bottom: 72px; right: auto; max-width: 580px; color: #fff; }
.p-hero .eyebrow { font-weight: 600; font-size: 11px; letter-spacing: .24em; text-transform: uppercase; opacity: .9; margin-bottom: 16px; }
.p-hero h1 { font-family: var(--font-display), system-ui, sans-serif; font-weight: 500; letter-spacing: -.02em; line-height: 1.08; font-size: 38px; max-width: none; white-space: nowrap; text-transform: uppercase; text-shadow: 0 2px 30px rgba(0,0,0,.22); }
.p-hero p { font-size: 15px; max-width: 40ch; margin: 16px 0 26px; opacity: .94; line-height: 1.5; }
.p-hero .cta { display: flex; gap: 14px; }

/* page hero (interior pages) */
.p-phero { padding: 72px 70px 48px; background: var(--cream); border-bottom: 1px solid var(--line-soft); text-align: center; }
.p-phero .p-kick { color: var(--accent); }
.p-phero h1 { font-size: 44px; font-weight: 500; max-width: 20ch; margin: 0 auto; }
.p-phero p { font-size: 17px; color: var(--ink-soft); max-width: 52ch; margin: 18px auto 0; line-height: 1.55; }

/* About page hero — compact, centered, with accent */
.about-hero { position: relative; padding: 64px 70px 40px; text-align: center; overflow: hidden;
  background: linear-gradient(180deg, var(--pine-cream) 0%, var(--cream) 100%); }
.about-hero .ah-inner { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }
.about-hero .p-kick { margin-bottom: 14px; color: var(--accent); }
.about-hero h1 { font-size: 34px; font-weight: 500; max-width: 22ch; margin: 0 auto; line-height: 1.12; }
.about-hero h1 em { font-style: italic; color: var(--accent); }
.about-hero p { font-size: 17px; max-width: 52ch; margin: 16px auto 0; color: var(--ink-soft); line-height: 1.55; }

/* ---------- generic section ---------- */
.p-sec { padding: 120px 70px; }
.p-sec.tight { padding: 90px 70px; }
.p-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; margin-bottom: 56px; }
.p-sec h2 { font-size: 34px; font-weight: 500; max-width: 22ch; }

/* ---------- berry lineup ---------- */
/* tighten the gap between the hero and the first section (home portfolio) */
.p-hero + .p-sec { padding-top: 64px; }

.p-grid5 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.p-item .pic { width: 100%; height: 300px; aspect-ratio: auto; border-radius: var(--img-radius); overflow: hidden; margin-bottom: 18px; display: block; }
.p-item h3 { font-family: var(--font-display), system-ui, sans-serif; font-weight: 500; font-size: 19px; margin: 0 0 4px; display: flex; align-items: center; gap: 9px; }
.p-item h3::before { content: ''; width: 9px; height: 9px; border-radius: 50%; background: var(--bc); }
.p-item .en { font-size: 13px; color: var(--ink-soft); padding-left: 18px; letter-spacing: .02em; }
.p-item .ksp { font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--bc); padding-left: 18px; margin-top: 8px; }
.p-item.link { cursor: pointer; }
.p-item.link:hover .pic { filter: brightness(1.02); }

/* ---------- pineberry band ---------- */
.p-pine { position: relative; background: var(--pine-cream); }
.p-pine .grid { display: grid; grid-template-columns: 55% 45%; align-items: stretch; min-height: 580px; }
.p-pine .pic { min-height: 280px; display: block; }
.p-pine > .grid > image-slot { align-self: center; border-radius: var(--img-radius); overflow: hidden; }
.p-pine .p-pine-photo { height: 580px; width: 100%; border-radius: var(--img-radius); overflow: hidden; align-self: stretch; }
.p-pine .p-pine-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.p-pine .tx { padding: 80px 80px; align-self: center; }
.p-pine .tag { font-weight: 600; font-size: 11.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.p-pine .tag::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--pine); }
.p-pine h2 { font-size: 38px; font-weight: 500; margin-bottom: 18px; }
.p-pine p { font-size: 18px; line-height: 1.6; color: var(--ink); opacity: .82; margin-bottom: 30px; max-width: 40ch; }

/* ---------- transformados band ---------- */
.p-tf { position: relative; background: var(--ink); color: #fff; }
.p-tf .grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: stretch; }
.p-tf .pic { min-height: 520px; display: block; }
.p-tf .tx { padding: 110px 70px; align-self: center; }
.p-tf .tag { font-weight: 600; font-size: 11.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--yellow); margin-bottom: 20px; }
.p-tf h2 { font-size: 36px; font-weight: 500; margin-bottom: 18px; color: #fff; }
.p-tf p { font-size: 18px; line-height: 1.6; opacity: .82; margin-bottom: 30px; max-width: 42ch; }
.p-tf .chips { display: flex; flex-wrap: wrap; gap: 10px; }
.p-tf .chips span { border: 1px solid rgba(255,255,255,.28); border-radius: 999px; padding: 10px 18px; font-weight: 500; font-size: 13px; letter-spacing: .02em; }

/* ---------- about + trust ---------- */
.p-trust { padding: 120px 70px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.p-trust .p-kick { color: var(--accent); }
.p-trust h2 { font-size: 34px; font-weight: 500; max-width: 14ch; margin: 0 0 20px; }
.p-trust p { font-size: 18px; line-height: 1.7; color: var(--ink-soft); margin: 0 0 30px; max-width: 42ch; }
.p-certs { display: flex; flex-wrap: wrap; gap: 24px; }
.p-certs span { font-weight: 600; font-size: 12px; letter-spacing: .06em; text-transform: uppercase; display: flex; align-items: center; gap: 9px; }
.p-certs span::before { content: '✓'; width: 22px; height: 22px; border-radius: 50%; background: rgba(47,168,79,.14); color: var(--green-deep);
  display: inline-flex; align-items: center; justify-content: center; font-weight: 900; font-size: 12px; }
.p-statg { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 6px; overflow: hidden; }
.p-st { background: var(--cream); padding: 42px 34px; }
.p-st .n { font-family: var(--font-display), system-ui, sans-serif; font-weight: 500; font-size: 46px; line-height: 1; letter-spacing: -.02em; }
.p-st .l { font-size: 13px; color: var(--ink-soft); margin-top: 10px; letter-spacing: .04em; text-transform: uppercase; }

/* ---------- reviews ---------- */
.p-rev { padding: 100px 70px; background: var(--cream-warm); text-align: center; }
.p-rev .p-kick { color: var(--accent); }
.p-rev h2 { font-size: 34px; font-weight: 500; }
.p-rev .note { font-size: 13px; color: var(--ink-soft); opacity: .8; margin-top: 12px; font-style: italic; }
.p-rcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; text-align: left; }
.p-rcard { background: var(--cream); border-radius: 6px; padding: 38px; border: 1px solid var(--line-soft); }
.p-rcard .stars { color: var(--accent); font-size: 14px; letter-spacing: 3px; margin-bottom: 18px; }
.p-rcard .q { font-family: var(--font-body), system-ui, sans-serif; font-weight: 400; font-size: 16.5px; line-height: 1.6; margin: 0 0 24px; }
.p-rcard .who { display: flex; align-items: center; gap: 12px; }
.p-rcard .av { width: 42px; height: 42px; border-radius: 50%; background: var(--pine-cream); display: flex; align-items: center; justify-content: center; font-size: 18px; }
.p-rcard .nm { font-weight: 600; font-size: 14px; letter-spacing: .04em; }
.p-rcard .rl { font-size: 12px; color: var(--ink-soft); letter-spacing: .04em; text-transform: uppercase; margin-top: 2px; }

/* ---------- CTA band ---------- */
.p-cta { background: #677896; color: #fff; padding: 64px 70px; text-align: center; }
.p-cta h2 { font-size: 30px; font-weight: 500; margin: 0 0 12px; }
.p-cta p { font-size: 16px; opacity: .85; max-width: 44ch; margin: 0 auto 24px; line-height: 1.5; }

/* ---------- footer ---------- */
.p-foot { background: var(--cream); color: var(--ink); padding: 80px 70px 48px; border-top: 1px solid var(--line); }
.p-foot .top { display: flex; justify-content: space-between; gap: 40px; align-items: flex-start; }
.p-foot img { height: 34px; }
.p-foot .cols { display: flex; gap: 64px; }
.p-foot h5 { font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft); margin: 0 0 18px; font-weight: 600; }
.p-foot a, .p-foot p.ln { display: block; opacity: .82; text-decoration: none; font-size: 15px; margin: 0 0 11px; max-width: 32ch; line-height: 1.55; cursor: pointer; }
.p-foot a:hover { color: var(--accent); opacity: 1; }
.p-foot .legal { margin-top: 56px; padding-top: 24px; border-top: 1px solid var(--line-soft); display: flex; justify-content: space-between; font-size: 12px; color: var(--ink-soft); letter-spacing: .04em; }
.p-foot .social { display: flex; gap: 12px; margin-top: 20px; }
.p-foot .social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; margin: 0; }
.p-foot .social a:hover { border-color: var(--accent); }

/* ---------- products page ---------- */
.p-cat { margin-bottom: 80px; }
.p-cat-head { display: flex; align-items: baseline; gap: 16px; margin-bottom: 34px; border-bottom: 1px solid var(--ink); padding-bottom: 18px; }
.p-cat-head h2 { font-size: 28px; font-weight: 500; }
.p-cat-head .count { font-size: 13px; color: var(--ink-soft); font-weight: 500; letter-spacing: .02em; }
.p-prods { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; align-items: start; }
.p-prod { border: 1px solid var(--line-soft); border-radius: 6px; overflow: hidden; background: var(--cream); display: flex; flex-direction: column; transition: border-color .2s; }
.p-prod:hover { border-color: var(--line); }
.p-prod .pic { width: 100%; aspect-ratio: 4/3; display: block; }
.p-prod .body { padding: 28px 28px 30px; display: block; }
.p-prod .pcat { font-size: 10.5px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.p-prod h3 { font-family: var(--font-display), system-ui, sans-serif; font-weight: 500; font-size: 21px; margin: 0 0 10px; display: flex; align-items: center; gap: 10px; }
.p-prod h3::before { content: ''; width: 10px; height: 10px; border-radius: 50%; background: var(--bc); flex: none; }
.p-prod .desc { font-size: 15px; color: var(--ink-soft); line-height: 1.55; margin: 0 0 22px; }

/* collapsible product details */
.p-prod-toggle { margin-top: 14px; display: flex; align-items: center; justify-content: space-between; gap: 8px;
  width: 100%; background: transparent; border: none; border-top: 1px solid var(--line-soft); padding: 16px 0 2px;
  cursor: pointer; font-family: var(--font-body), sans-serif; font-weight: 600; font-size: 11.5px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--accent); transition: color .15s; }
.p-prod-toggle:hover { color: var(--accent-deep); }
.p-prod-toggle svg { transition: transform .25s ease; flex: none; }
.p-prod-toggle.open svg { transform: rotate(180deg); }
.p-more { overflow: hidden; max-height: 0; transition: max-height .35s ease; }
.p-more.open { max-height: 600px; }
.p-more-inner { min-height: 0; }
.p-more-inner .desc { margin: 18px 0 18px; }
.p-more-inner .p-ksps { margin-top: 4px; padding-bottom: 4px; }
.p-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 18px; margin: 0 0 22px; }
.p-specs .row { font-size: 13px; line-height: 1.35; }
.p-specs .row .k { color: var(--ink-soft); display: block; font-size: 10px; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 2px; }
.p-specs .row .v { font-weight: 600; }
.p-ksps { display: flex; flex-direction: column; gap: 7px; margin-top: auto; align-items: flex-start; }
.p-ksps span { font-size: 11px; font-weight: 600; letter-spacing: .04em; padding: 6px 12px; border-radius: 999px; background: var(--bc); color: #fff; }

/* ---------- pineberry page extras ---------- */
.p-pfeat { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.p-pfeat .f { background: var(--cream); border: 1px solid var(--line-soft); border-radius: 6px; padding: 40px; }
.p-pfeat .f .ic { width: 52px; height: 52px; border-radius: 50%; background: var(--pine-cream); display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 22px; }
.p-pfeat .f h4 { font-family: var(--font-display), system-ui, sans-serif; font-weight: 500; font-size: 19px; margin: 0 0 10px; }
.p-pfeat .f p { font-size: 15.5px; color: var(--ink-soft); line-height: 1.6; margin: 0; }
.p-split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.p-split .pic { width: 100%; aspect-ratio: 1; border-radius: var(--img-radius); display: block; }
.p-about-photo { width: 100%; aspect-ratio: 4/5; border-radius: var(--img-radius); overflow: hidden; }
.p-about-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- contact page ---------- */
.p-contact { display: grid; grid-template-columns: 1fr 1.1fr; gap: 70px; padding: 100px 70px; align-items: start; }
.p-cinfo .item { display: flex; gap: 16px; margin-bottom: 30px; align-items: flex-start; }
.p-cinfo .item .ic { width: 46px; height: 46px; border-radius: 50%; background: var(--cream-warm); display: flex; align-items: center; justify-content: center; font-size: 19px; flex: none; }
.p-cinfo .item h4 { font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); margin: 0 0 7px; font-weight: 600; }
.p-cinfo .item p { margin: 0; font-size: 16px; line-height: 1.55; font-weight: 400; }
.p-form { background: var(--cream); border: 1px solid var(--line); border-radius: 8px; padding: 44px; }
.p-form .frow { margin-bottom: 20px; }
.p-form label { display: block; font-size: 11.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 9px; color: var(--ink); }
.p-form input, .p-form select, .p-form textarea { width: 100%; border: 1px solid var(--line); border-radius: 4px; padding: 14px 15px;
  font-family: var(--font-body), sans-serif; font-size: 15px; color: var(--ink); background: #fff; }
.p-form input:focus, .p-form select:focus, .p-form textarea:focus { outline: none; border-color: var(--accent); }
.p-form textarea { resize: vertical; min-height: 100px; }
.p-form .two { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.p-form .p-btn { width: 100%; justify-content: center; margin-top: 8px; }

/* ---------- map / misc ---------- */
.p-mapwrap { position: relative; border-radius: var(--img-radius); overflow: hidden; border: 1px solid var(--line); height: 280px; margin-top: 32px; background: var(--cream-warm); }
.p-mapwrap::before { content: '📍 Bosques de las Lomas · CDMX'; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: var(--ink-soft); font-size: 14px; font-weight: 600; letter-spacing: .04em; }
.p-mapwrap iframe { position: relative; width: 100%; height: 100%; border: 0; }

/* ---------- about page — tighter rhythm + brand logos ---------- */
.about-page .p-sec { padding: 64px 70px; }
.about-page .p-sec.tight { padding: 52px 70px; }
.about-page .p-trust { padding: 64px 70px; }
.about-page .about-hero { padding: 56px 70px 28px; }
.p-brands { display: grid; grid-template-columns: 1fr auto 1fr; gap: 0 56px; justify-items: center; align-items: center; margin-top: 36px; width: 100%; max-width: 760px; }
.p-brands img { display: block; object-fit: contain; }
.p-brands .brand-pomona { height: 88px; }
.p-brands .brand-aura { height: 150px; }
.p-brands .brand-div { width: 1px; height: 110px; background: var(--line); }
/* values section — keep all 4 on one row */
.about-page .p-pfeat { grid-template-columns: repeat(4, 1fr); gap: 20px; }
.about-page .p-pfeat .f { padding: 30px 26px; }

/* --- Nosotros: nombre Pomona, valores expandibles, certificaciones --- */
.p-naming { text-align: center; background: var(--pine-cream); }
.p-naming-inner { max-width: 820px; margin: 0 auto; }
.p-naming-mark { font-size: 38px; margin-bottom: 8px; opacity: .9; }
.p-valcard { display: flex; flex-direction: column; }
.p-valcard > p { margin-bottom: 0; }
.p-valcard .p-prod-toggle { margin-top: auto; padding-top: 16px; color: var(--accent-deep); }
.p-naming .p-disp { text-align: center; max-width: none; }
.p-valcard .p-more.open { max-height: 460px; }
.p-valcard .p-ksps { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 6px; }
.p-valcard .p-ksps span { font-size: 12px; font-weight: 600; letter-spacing: .03em; background: #fff; border: 1px solid var(--line-soft); border-radius: 999px; padding: 5px 11px; color: var(--ink-soft); }
.p-certlogos { display: flex; flex-wrap: wrap; align-items: flex-end; gap: 30px; margin-top: 6px; }
.p-certlogo { margin: 0; display: flex; flex-direction: column; align-items: center; gap: 9px; }
.p-certlogo img { height: 64px; width: auto; max-width: 140px; object-fit: contain; display: block; }
.p-certlogo figcaption { font-size: 11px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-soft); }
.p-cal-legend .sw.exp { background: #C9A227; }
.p-cal-export .p-cal-name span:last-child { font-weight: 700; }

/* ============================================================
   RESPONSIVE — móvil y tablet
   ============================================================ */

/* botón hamburguesa (oculto en desktop) */
.p-nav-burger { display: none; width: 42px; height: 42px; border: none; background: transparent; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px; padding: 8px; }
.p-nav-burger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .22s, opacity .18s; }
.p-nav.on-hero .p-nav-burger span { background: #fff; }
.p-nav.menu-open .p-nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.p-nav.menu-open .p-nav-burger span:nth-child(2) { opacity: 0; }
.p-nav.menu-open .p-nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
  .p-grid5 { grid-template-columns: repeat(2, 1fr); }
  .p-prods { grid-template-columns: repeat(2, 1fr); }
  .p-rcards { grid-template-columns: 1fr; }
  .about-page .p-pfeat { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  /* ---- nav → hamburguesa ---- */
  .p-nav { padding: 14px 20px; }
  .p-nav-burger { display: flex; }
  .p-nav-links { display: none; }
  .p-nav.menu-open .p-nav-links {
    display: flex; flex-direction: column; align-items: stretch; gap: 2px;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream); border-bottom: 1px solid var(--line);
    padding: 10px 20px 18px; box-shadow: 0 24px 44px rgba(44,23,28,.14); z-index: 60;
  }
  .p-nav-links a { font-size: 14px; letter-spacing: .06em; padding: 12px 0; opacity: .9; width: 100%; }
  .p-nav-links a.pine { display: inline-block; width: auto; margin: 6px 0; }
  .p-navitem { position: static; flex-direction: column; align-items: flex-start; width: 100%; padding: 0; }
  .p-navitem > a { padding: 12px 0; }
  .p-navitem .chev { display: none; }
  .p-navitem .p-submenu { position: static; transform: none; opacity: 1; visibility: visible;
    box-shadow: none; border: none; background: transparent; padding: 0 0 8px 14px; min-width: 0; }
  .p-navitem .p-submenu a { padding: 8px 0; }
  .p-navitem .p-submenu a .sdesc { display: none; }

  /* ---- hero ---- */
  .p-hero { height: min(600px, 80vh); }
  .p-hero .inner { left: 22px; right: 22px; bottom: 40px; max-width: none; }
  .p-hero h1 { font-size: 27px; white-space: normal; }
  .p-hero p { font-size: 14px; max-width: none; }
  .p-hero .cta { flex-wrap: wrap; }

  /* ---- secciones genéricas ---- */
  .p-sec { padding: 56px 20px; }
  .p-sec.tight { padding: 44px 20px; }
  .p-hero + .p-sec { padding-top: 44px; }
  .p-head { flex-direction: column; align-items: flex-start; gap: 14px; margin-bottom: 30px; }
  .p-sec h2 { font-size: 26px; max-width: none; }
  .p-phero { padding: 46px 20px 30px; }
  .p-phero h1 { font-size: 30px; }
  .p-phero p { font-size: 15px; }

  /* ---- grids → 1 columna ---- */
  .p-grid5 { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .p-item .pic, .p-item .pic.photo, .p-grid5 .p-item > image-slot { height: 200px; }
  .p-prods { grid-template-columns: 1fr; }
  .p-pfeat { grid-template-columns: 1fr; }
  .about-page .p-pfeat { grid-template-columns: 1fr; }
  .p-split { grid-template-columns: 1fr; gap: 28px; }
  .p-trust, .about-page .p-trust { grid-template-columns: 1fr; gap: 34px; padding: 52px 20px; }
  .p-contact { grid-template-columns: 1fr; gap: 32px; padding: 52px 20px; }
  .p-form { padding: 28px 22px; }
  .p-form .two { grid-template-columns: 1fr; }
  .p-statg { grid-template-columns: 1fr 1fr; }
  .p-st { padding: 26px 20px; }
  .p-st .n { font-size: 34px; }
  .p-specs { grid-template-columns: 1fr 1fr; }

  /* ---- bandas pineberry / transformados ---- */
  .p-pine .grid { grid-template-columns: 1fr; min-height: 0; }
  .p-pine .p-pine-photo { height: 300px; }
  .p-pine .tx { padding: 44px 22px; }
  .p-pine h2 { font-size: 28px; }
  .p-tf .grid { grid-template-columns: 1fr; }
  .p-tf .pic { min-height: 280px; }
  .p-tf .tx { padding: 48px 22px; }
  .p-tf h2 { font-size: 28px; }

  /* ---- productos ---- */
  .p-filter { padding: 26px 20px 0; }
  .p-cat { margin-bottom: 54px; }
  .p-cat-head h2 { font-size: 22px; }

  /* ---- about / nosotros ---- */
  .about-page .p-sec, .about-page .p-sec.tight { padding: 44px 20px; }
  .about-hero, .about-page .about-hero { padding: 44px 20px 24px; }
  .about-hero h1 { font-size: 26px; }
  .p-naming .p-disp { font-size: 27px; }
  .p-certlogos { gap: 22px; justify-content: flex-start; }
  .p-certlogo img { height: 52px; }
  .p-brands { grid-template-columns: 1fr; gap: 22px; }
  .p-brands .brand-div { display: none; }
  .p-brands .brand-pomona { height: 64px; }
  .p-brands .brand-aura { height: 104px; }

  /* ---- calendario (scroll horizontal) ---- */
  .p-cal { padding: 30px 18px 26px; }
  .p-cal-head { max-width: 100%; }
  .p-cal-head h2 { font-size: 23px; }
  .p-cal-x { top: 14px; right: 14px; }
  .p-cal-grid { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .p-cal-row { grid-template-columns: 104px repeat(12, minmax(22px, 1fr)); min-width: 540px; }
  .p-cal-name { font-size: 12px; }

  /* ---- CTA / reviews / footer ---- */
  .p-cta { padding: 48px 22px; }
  .p-cta h2 { font-size: 24px; }
  .p-rev { padding: 54px 20px; }
  .p-rev h2 { font-size: 26px; }
  .p-foot { padding: 48px 22px 32px; }
  .p-foot .top { flex-direction: column; gap: 30px; }
  .p-foot .cols { flex-direction: column; gap: 26px; }
  .p-foot .legal { flex-direction: column; gap: 8px; text-align: left; }
}

@media (max-width: 480px) {
  .p-grid5 { grid-template-columns: 1fr; }
  .about-page .p-pfeat { grid-template-columns: 1fr; }
  .p-statg { grid-template-columns: 1fr; }
  .p-hero h1 { font-size: 23px; }
  .p-phero h1 { font-size: 26px; }
  .p-sec h2 { font-size: 23px; }
  .p-hero .cta .p-btn { padding: 12px 20px; font-size: 11px; }
}

/* Overrides para grids con columnas fijadas en el JSX (inline) — fuerzan apilado en móvil */
@media (max-width: 768px) {
  .p-grid5 { grid-template-columns: repeat(2, 1fr) !important; }
  .p-split { grid-template-columns: 1fr !important; }
}
@media (max-width: 480px) {
  .p-grid5 { grid-template-columns: 1fr !important; }
}
