/* ===========================================================
   Gonzaga Floristas — Design tokens
   Paleta anclada en fotos reales de marca (ramo rosa palo +
   lazo granate, decoración de boda blanco/marfil + salvia).
   =========================================================== */
:root{
  --paper:      #FAF5F3;   /* fondo principal, blanco rosado suave */
  --paper-alt:  #F2E5E2;   /* fondo alterno, rosa polvo */
  --ink:        #221A1B;   /* texto principal, casi negro cálido */
  --ink-soft:   #6E5E5C;   /* texto secundario */
  --wine:       #7C2438;   /* acento principal, granate del lazo real */
  --wine-dark:  #5E1B2A;
  --blush:      #D98A93;   /* acento secundario, rosa palo del ramo */
  --sage:       #6B7A5E;   /* acento terciario, follaje */
  --line:       rgba(34,26,27,.12);
  --line-soft:  rgba(34,26,27,.07);
  --shadow-sm:  0 2px 10px rgba(94,27,42,.06);
  --shadow-md:  0 16px 40px rgba(94,27,42,.12);
  --shadow-lg:  0 30px 70px rgba(94,27,42,.16);
  --ease: cubic-bezier(.16,1,.3,1);

  --f-display: 'Bricolage Grotesque', sans-serif;
  --f-body:    'Work Sans', sans-serif;
  --f-script:  'Marck Script', cursive;

  --container: 1200px;
  --radius: 4px;
  --radius-lg: 6px;
  --radius-pill: 999px;
}

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

body{
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:var(--f-body);
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  position:relative;
}

/* subtle film-grain, fixed and inert, never on a scrolling container */
body::before{
  content:"";
  position:fixed; inset:0; z-index:80; pointer-events:none;
  opacity:.025; mix-blend-mode:multiply;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }

h1,h2,h3{
  font-family:var(--f-display);
  font-weight:600;
  letter-spacing:-.01em;
  line-height:1.08;
  margin:0;
}

p{ margin:0; }

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

.script{
  font-family:var(--f-script);
  font-weight:400;
}

/* ---------- buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:15px 30px;
  border-radius:var(--radius-pill);
  font-family:var(--f-body);
  font-weight:600;
  font-size:.95rem;
  white-space:nowrap;
  border:1px solid transparent;
  transition:transform .35s var(--ease), box-shadow .35s var(--ease), background-color .25s, color .25s, border-color .25s;
}
.btn:active{ transform:scale(.96); }
.btn-primary{ background:var(--wine); color:#fff; box-shadow:var(--shadow-sm); }
.btn-primary:hover{ background:var(--wine-dark); box-shadow:var(--shadow-md); transform:translateY(-2px); }
.btn-ghost{ background:transparent; color:var(--ink); border-color:var(--line); }
.btn-ghost:hover{ border-color:var(--ink); transform:translateY(-2px); }
.btn svg{ width:18px; height:18px; flex:none; }

/* ---------- nav ---------- */
.nav{
  position:sticky; top:0; z-index:40;
  background:transparent;
  border-bottom:1px solid transparent;
  transition:background-color .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.nav.scrolled{
  background:rgba(250,245,243,.9);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  border-bottom-color:var(--line);
  box-shadow:0 8px 30px rgba(94,27,42,.05);
}
.nav .wrap{
  height:76px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.logo{ font-size:1.8rem; color:var(--wine); line-height:1; }
.nav-links{
  display:flex; align-items:center; gap:34px;
  font-size:.94rem; font-weight:500;
}
.nav-links a{ position:relative; padding:6px 0; }
.nav-links a::after{
  content:""; position:absolute; left:0; right:0; bottom:0; height:1px;
  background:var(--wine); transform:scaleX(0); transform-origin:right;
  transition:transform .35s var(--ease);
}
.nav-links a:hover::after{ transform:scaleX(1); transform-origin:left; }
.nav-links a:hover{ color:var(--wine); }
.nav-right{ display:flex; align-items:center; gap:20px; }
.nav-call{ display:flex; align-items:center; gap:8px; font-weight:600; font-size:.94rem; transition:color .25s; }
.nav-call:hover{ color:var(--wine); }
.nav-call svg{ width:17px; height:17px; color:var(--wine); flex:none; }
.nav-toggle{
  display:none; width:42px; height:42px; border-radius:var(--radius-pill);
  border:1px solid var(--line); background:none;
  align-items:center; justify-content:center; flex:none; cursor:pointer;
  transition:border-color .25s, background-color .25s;
}
.nav-toggle:hover{ border-color:var(--wine); }
.nav-toggle svg{ width:20px; height:20px; }

.nav-mobile{
  display:none;
  position:fixed; inset:76px 0 0 0; z-index:39;
  background:var(--paper);
  padding:32px 32px;
  flex-direction:column; gap:4px;
}
.nav-mobile.open{ display:flex; }
.nav-mobile a{
  padding:18px 4px; font-size:1.2rem; font-weight:500;
  border-bottom:1px solid var(--line);
}
.nav-mobile .btn{ margin-top:22px; justify-content:center; }

/* ---------- hero ---------- */
.hero{
  padding:8px 0 96px;
  overflow:hidden;
}
.hero .wrap{
  display:grid;
  grid-template-columns:1fr .92fr;
  gap:64px;
  align-items:center;
  padding-top:64px;
}
.hero-copy h1{
  font-size:clamp(2.1rem, 3.6vw, 3.15rem);
  max-width:20ch;
}
.hero-copy p{
  margin-top:24px;
  max-width:44ch;
  color:var(--ink-soft);
  font-size:1.08rem;
}
.hero-actions{
  margin-top:36px;
  display:flex; align-items:center; gap:22px; flex-wrap:wrap;
}
.hero-media{
  position:relative;
  border-radius:var(--radius-lg);
  overflow:hidden;
  aspect-ratio:3/4;
  box-shadow:var(--shadow-lg);
}
.hero-media img{
  width:100%; height:100%; object-fit:cover;
  transform:scale(1.08);
  transition:transform 1.4s var(--ease);
}
.hero.loaded .hero-media img{ transform:scale(1); }
.hero-media::after{
  content:"";
  position:absolute; left:28px; right:28px; bottom:28px;
  height:1px; background:rgba(255,255,255,.4);
}
.hero-tag{
  position:absolute; left:28px; top:28px;
  color:#fff; font-size:.82rem; font-weight:600;
  letter-spacing:.04em;
  background:rgba(34,26,27,.32);
  backdrop-filter:blur(6px);
  padding:8px 14px; border-radius:var(--radius-pill);
}

/* thin trust strip right under hero */
.trust-strip{ padding:26px 0; border-top:1px solid var(--line-soft); border-bottom:1px solid var(--line-soft); }
.trust-strip .wrap{
  display:flex; align-items:center; justify-content:center; gap:14px; flex-wrap:wrap;
  color:var(--ink-soft); font-size:.92rem; text-align:center;
}
.trust-strip strong{ color:var(--ink); font-weight:600; }
.trust-strip .sep{ width:4px; height:4px; border-radius:50%; background:var(--line); flex:none; }

/* ---------- section shell ---------- */
section{ padding:110px 0; }
.section-alt{ background:var(--paper-alt); }
.section-head{ max-width:56ch; }
.section-head h2{ font-size:clamp(1.9rem, 2.8vw, 2.5rem); }
.section-head p{ margin-top:18px; color:var(--ink-soft); font-size:1.05rem; max-width:52ch; }

/* ---------- about (image + text split) ---------- */
.about .wrap{
  display:grid; grid-template-columns:.85fr 1.15fr; gap:72px; align-items:center;
}
.about-media{
  position:relative; border-radius:var(--radius-lg); overflow:hidden;
  aspect-ratio:4/5; box-shadow:var(--shadow-md);
}
.about-media img{ width:100%; height:100%; object-fit:cover; }
.about blockquote{
  margin:0; font-family:var(--f-display); font-weight:500;
  font-size:clamp(1.6rem, 2.6vw, 2.15rem);
  line-height:1.28; color:var(--ink);
}
.about-meta{
  margin-top:26px; display:flex; align-items:center; gap:16px;
  color:var(--ink-soft); font-size:.98rem;
}
.about-meta .dot{ width:5px; height:5px; border-radius:50%; background:var(--wine); flex:none; }
.about-body{ margin-top:24px; max-width:52ch; color:var(--ink-soft); font-size:1.03rem; }

/* ---------- services (bento, 4 cells) ---------- */
.services-grid{
  margin-top:60px;
  display:grid;
  grid-template-columns:1.3fr 1fr;
  grid-template-rows:repeat(3, 1fr);
  gap:22px;
}
.svc{
  border-radius:var(--radius-lg);
  padding:32px;
  display:flex; flex-direction:column; justify-content:flex-end;
  min-height:170px;
  transition:transform .4s var(--ease), box-shadow .4s var(--ease);
}
.svc:hover{ transform:translateY(-5px); box-shadow:var(--shadow-md); }
.svc h3{ font-size:1.2rem; }
.svc p{ margin-top:8px; color:var(--ink-soft); font-size:.94rem; max-width:38ch; }
.svc-feature{
  grid-row:1 / 4;
  padding:38px;
  color:#fff;
  background-repeat:no-repeat;
  background-size:cover, cover;
  background-position:center, center;
  position:relative;
  transition:background-size 1.2s var(--ease);
}
.svc-feature:hover{ background-size:cover, 112%; }
.svc-feature h3{ font-size:1.4rem; }
.svc-feature p{ margin-top:10px; color:rgba(255,255,255,.88); max-width:34ch; }
.svc-plain{ background:var(--paper); border:1px solid var(--line); }
.svc-sage{ background:var(--sage); color:#fff; }
.svc-sage p{ color:rgba(255,255,255,.86); }
.svc-icon{ width:27px; height:27px; margin-bottom:16px; color:var(--wine); flex:none; }
.svc-sage .svc-icon, .svc-feature .svc-icon{ color:#fff; }

/* ---------- editorial gallery grid ---------- */
.gallery-grid{
  margin-top:56px;
  display:grid;
  grid-template-columns:1.4fr 1fr;
  grid-template-rows:1fr 1fr;
  gap:22px;
  height:640px;
}
.gph{ position:relative; border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-sm); }
.gph img{ width:100%; height:100%; object-fit:cover; transition:transform .7s var(--ease); }
.gph:hover img{ transform:scale(1.05); }
.gph-a{ grid-row:1 / 3; }
.gph::after{
  content:""; position:absolute; left:0; right:0; bottom:0; height:46%;
  background:linear-gradient(180deg, rgba(34,26,27,0) 0%, rgba(34,26,27,.62) 100%);
  pointer-events:none;
}
.gph-cap{
  position:absolute; left:20px; bottom:18px; color:#fff; z-index:1;
  font-size:.86rem; font-weight:600;
  text-shadow:0 2px 12px rgba(0,0,0,.35);
}

/* ---------- trust / stat section ---------- */
.trust .wrap{
  display:grid; grid-template-columns:auto 1fr; gap:56px; align-items:center;
}
.trust-num{
  font-family:var(--f-display); font-weight:600;
  font-size:clamp(4rem, 8vw, 6.4rem);
  color:var(--wine); line-height:.95;
}
.trust-copy{ max-width:44ch; color:var(--ink-soft); font-size:1.08rem; }
.trust-copy strong{ color:var(--ink); }
.trust-copy p + p{ margin-top:10px; }

/* ---------- contact ---------- */
.contact .wrap{
  display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:start;
}
.contact-list{ margin-top:32px; display:flex; flex-direction:column; gap:24px; }
.contact-row{ display:flex; gap:16px; align-items:flex-start; }
.contact-row svg{ width:20px; height:20px; color:var(--wine); flex:none; margin-top:2px; }
.contact-row h4{ font-family:var(--f-body); font-weight:600; font-size:.95rem; margin:0 0 4px; }
.contact-row p{ color:var(--ink-soft); font-size:.96rem; }
.contact-actions{ margin-top:34px; display:flex; gap:16px; flex-wrap:wrap; }
.social-row{ margin-top:34px; display:flex; gap:14px; }
.social-btn{
  width:44px; height:44px; border-radius:50%; border:1px solid var(--line);
  display:flex; align-items:center; justify-content:center;
  transition:border-color .3s, background-color .3s, transform .3s var(--ease);
}
.social-btn:hover{ border-color:var(--wine); background:var(--wine); color:#fff; transform:translateY(-3px); }
.social-btn svg{ width:18px; height:18px; }

.map-frame{
  border-radius:var(--radius-lg); overflow:hidden; border:1px solid var(--line);
  aspect-ratio:4/3; box-shadow:var(--shadow-sm);
}
.map-frame iframe{ width:100%; height:100%; border:0; filter:grayscale(.15) contrast(1.02); }

/* ---------- footer ---------- */
footer{
  border-top:1px solid var(--line);
  padding:72px 0 40px;
  background:var(--ink);
  color:rgba(250,245,243,.72);
}
.foot-top{
  display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:48px;
  padding-bottom:48px; margin-bottom:32px; border-bottom:1px solid rgba(250,245,243,.12);
}
.foot-brand .logo{ font-size:1.9rem; color:#fff; }
.foot-brand p{ margin-top:16px; max-width:32ch; font-size:.94rem; line-height:1.7; }
.foot-col h5{
  font-family:var(--f-body); font-weight:600; font-size:.82rem;
  letter-spacing:.06em; text-transform:uppercase; color:rgba(250,245,243,.5);
  margin:0 0 18px;
}
.foot-col a, .foot-col p{ display:block; font-size:.95rem; margin-bottom:12px; color:rgba(250,245,243,.8); transition:color .25s; }
.foot-col a:hover{ color:#fff; }
.foot-bottom{ display:flex; align-items:center; justify-content:space-between; gap:20px; flex-wrap:wrap; }
.foot-bottom p{ font-size:.86rem; color:rgba(250,245,243,.5); }
.foot-social{ display:flex; gap:12px; }
.foot-social a{
  width:38px; height:38px; border-radius:50%; border:1px solid rgba(250,245,243,.18);
  display:flex; align-items:center; justify-content:center; color:rgba(250,245,243,.7);
  transition:border-color .25s, color .25s;
}
.foot-social a:hover{ border-color:#fff; color:#fff; }
.foot-social svg{ width:17px; height:17px; }

/* ---------- reveal on scroll (staggered) ---------- */
.reveal{
  opacity:0; transform:translateY(22px);
  transition:opacity .7s var(--ease), transform .7s var(--ease);
  transition-delay:var(--d, 0s);
}
.reveal.in{ opacity:1; transform:none; }
@media (prefers-reduced-motion: reduce){
  .reveal{ opacity:1; transform:none; transition:none; }
}

/* ===========================================================
   Responsive
   =========================================================== */
@media (max-width: 980px){
  .nav-links{ display:none; }
  .nav-toggle{ display:flex; }
  .hero .wrap{ grid-template-columns:1fr; gap:44px; padding-top:24px; }
  .hero-media{ order:-1; aspect-ratio:16/10; }
  .about .wrap{ grid-template-columns:1fr; gap:36px; }
  .about-media{ aspect-ratio:16/10; }
  .services-grid{ grid-template-columns:1fr; }
  .svc-feature{ grid-row:auto; min-height:320px; }
  .gallery-grid{ grid-template-columns:1fr; grid-template-rows:none; height:auto; }
  .gph{ aspect-ratio:4/3; }
  .gph-a{ grid-row:auto; aspect-ratio:16/10; }
  .contact .wrap{ grid-template-columns:1fr; gap:40px; }
  .trust .wrap{ grid-template-columns:1fr; gap:24px; }
  .foot-top{ grid-template-columns:1fr; gap:32px; }
}

@media (max-width: 560px){
  .wrap{ padding:0 20px; }
  section{ padding:80px 0; }
  .hero{ padding:4px 0 64px; }
  .hero .wrap{ padding-top:20px; }
  .hero-actions{ gap:14px; }
  .nav-call span{ display:none; }
  .trust-strip .wrap{ gap:10px; }
  footer{ padding:56px 0 32px; }
  .foot-bottom{ flex-direction:column; align-items:flex-start; gap:16px; }
}
