:root{
  --bg:#FFFFFF;
  --bg-2:#F6F4F0;
  --ink:#1A1A1A;
  --muted:#6B6B6B;
  --gold:#87000F; /* guinda Bandera Arequipa — primary accent */
  --gold-fill:#87000F;
  --jewel:#C9A227; /* optional gold, jewelry detail only */
  --line:rgb(135 0 15 / .28);
  --ph:#F6F4F0;
  --ph-ink:#6B6B6B;
}
*{box-sizing:border-box;margin:0;padding:0}
html{color-scheme:light}
body{
  font-family:Georgia,"Palatino Linotype",Palatino,"Source Sans 3",system-ui,sans-serif;
  background:var(--bg);color:var(--ink);line-height:1.45;
  padding-top:5.2rem;
}
a{color:inherit;text-decoration:none}
.wrap{width:min(100% - 2rem,1080px);margin-inline:auto}
.narrow{width:min(100% - 2rem,560px)}
.nav{
  position:fixed;inset:0 0 auto;z-index:50;
  background:rgb(255 255 255 / .9);
  backdrop-filter:blur(14px);-webkit-backdrop-filter:blur(14px);
  border-bottom:1px solid var(--line);
}
.nav-inner{display:flex;align-items:center;justify-content:space-between;min-height:5.2rem;gap:1rem}
.brand{display:flex;align-items:center;gap:.75rem}
.brand-text{display:grid;line-height:1.1}
.brand-text strong{font-size:1.15rem;letter-spacing:.04em}
.brand-text small{font-size:.7rem;color:var(--gold);text-transform:uppercase;letter-spacing:.12em}
.nav-end{display:flex;align-items:center;gap:.75rem}
.nav-links{display:flex;gap:1rem;flex-wrap:wrap}
.nav-links a{font-size:.72rem;font-weight:650;letter-spacing:.06em;text-transform:uppercase}
.nav-toggle{display:none;width:44px;height:44px;border:1px solid var(--line);border-radius:4px;background:none;flex-direction:column;align-items:center;justify-content:center;gap:5px}
.nav-toggle span{display:block;width:18px;height:2px;background:var(--ink)}
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  min-height:44px;padding:.75rem 1.1rem;border-radius:4px;border:0;
  background:var(--gold-fill);color:#fff;
  font-size:.76rem;font-weight:700;letter-spacing:.06em;text-transform:uppercase;cursor:pointer;
}
.btn-line{background:transparent;border:1px solid var(--line)}
.eyebrow{color:var(--gold);font-size:.78rem;font-weight:650;letter-spacing:.14em;text-transform:uppercase;margin-bottom:.4rem}
.muted{color:var(--muted)}
.hero{position:relative;min-height:70svh;background:#111;overflow:hidden}
.hero-media{position:absolute;inset:0}
.hero-copy{position:relative;z-index:2;display:flex;align-items:flex-end;min-height:inherit;padding:3rem 0 2.2rem}
.hero-words{display:grid;gap:.55rem;width:min(100%,36rem)}
.hero h1,.hero .lead,.hero .eyebrow{color:#fff;text-shadow:0 1px 0 #000,0 2px 10px rgb(0 0 0 / .75)}
.hero h1{font-weight:400;font-size:clamp(1.7rem,4vw,2.5rem);line-height:1.15}
.hero .lead{font-family:system-ui,sans-serif;font-weight:600}
.section{padding:3.5rem 0}
.section-alt{background:var(--bg-2)}
.section h2{font-size:clamp(1.4rem,3vw,2rem);font-weight:400;margin-bottom:.6rem}
.chips{display:flex;flex-wrap:wrap;gap:.5rem;margin:1.2rem 0 1.5rem}
.chip{
  border:1px solid var(--line);background:#fff;color:var(--ink);
  border-radius:999px;padding:.45rem .9rem;font-size:.78rem;cursor:pointer;
}
.chip.is-on{background:var(--gold-fill);border-color:transparent;color:#fff}
.grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.1rem}
.card{background:#fff;border:1px solid var(--line);border-radius:8px;overflow:hidden;display:flex;flex-direction:column}
.card-body{padding:1rem;display:grid;gap:.45rem}
.card-body h3{font-size:1.05rem;font-weight:500}
.split{display:grid;grid-template-columns:1.1fr .9fr;gap:1.5rem;align-items:center}
.form{display:grid;gap:.75rem;margin-top:1.2rem}
.form label{display:grid;gap:.35rem;font-size:.85rem}
.form input,.form textarea{
  border:1px solid var(--line);border-radius:4px;padding:.7rem .8rem;
  font:inherit;background:#fff;color:var(--ink);
}
.social{display:flex;flex-wrap:wrap;gap:.75rem;margin-top:1rem}
.visit-grid{display:grid;grid-template-columns:1.2fr .8fr;gap:1rem;margin-top:1.2rem}
.footer{border-top:1px solid var(--line);padding:1.4rem 0;font-family:system-ui,sans-serif;font-size:.85rem;color:var(--muted)}
.footer-inner{display:flex;justify-content:space-between;gap:1rem;flex-wrap:wrap}
.footer a{color:var(--gold)}
.ph{
  display:flex;align-items:center;justify-content:center;text-align:center;
  background:repeating-linear-gradient(-45deg,var(--ph),var(--ph) 12px,#E8E4DC 12px,#E8E4DC 24px);
  color:var(--ph-ink);font-family:system-ui,sans-serif;font-size:.85rem;font-weight:600;
  letter-spacing:.04em;text-transform:uppercase;border:1px dashed rgb(135 0 15 / .35);
}
.ph-logo{width:56px;height:56px;border-radius:8px;flex-shrink:0}
.ph-hero{width:100%;height:100%;min-height:70svh;opacity:.55;border:0;border-radius:0;font-size:1rem}
.ph-card{aspect-ratio:1;width:100%}
.ph-block{min-height:240px;border-radius:8px}
.ph-map{min-height:260px;border-radius:8px}
.ph-social{
  min-width:120px;min-height:44px;padding:.6rem 1rem;border-radius:4px;
  background:var(--ph);border:1px dashed rgb(135 0 15 / .35);
}
@media (max-width:900px){
  .grid{grid-template-columns:repeat(2,1fr)}
  .split,.visit-grid{grid-template-columns:1fr}
}
@media (max-width:760px){
  .nav-toggle{display:flex}
  .nav-end > .btn{display:none}
  .nav-links{
    display:none;position:absolute;top:5.2rem;left:0;right:0;
    background:#fff;border-bottom:1px solid var(--line);
    padding:1rem 1.25rem 1.25rem;flex-direction:column;gap:.85rem;
  }
  .nav-links.is-open{display:flex}
  .grid{grid-template-columns:1fr}
  .hero-copy{padding:1.5rem 0 1.7rem}
}

.wa-float{
  position:fixed;right:1rem;bottom:1rem;z-index:60;
  width:52px;height:52px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  background:#25D366;color:#fff;font-family:system-ui,sans-serif;
  font-weight:800;font-size:.85rem;box-shadow:0 6px 20px rgb(0 0 0 / .25);
}
#product-grid .muted{grid-column:1/-1}

.card img{width:100%;aspect-ratio:1;object-fit:cover;display:block}
