/* ============================================================
   Vidriería Carrizo — Landing Page
   Warm · Elegant · Familiar · Modern
   ============================================================ */

/* ---------- Tokens ---------- */
:root{
  /* Brand */
  --wine:        #8a2024;
  --wine-deep:   #6b1619;
  --wine-soft:   #a8413f;
  --gold:        #d2a23f;        /* refined accent gold (not neon) */
  --gold-soft:   #e6c878;
  --logo-yellow: #f3cc4c;        /* reserved for the brand badge only */

  /* Neutrals (warm) */
  --ink:         #2a2724;
  --ink-2:       #5c554c;
  --muted:       #897f72;
  --line:        #e7ded0;
  --line-2:      #efe8db;

  /* Surfaces */
  --paper:       #fdfaf4;        /* page background */
  --cream:       #f6efe2;        /* alt section */
  --card:        #ffffff;
  --card-warm:   #fbf6ec;

  /* Effects */
  --shadow-sm: 0 1px 2px rgba(43,38,32,.05), 0 4px 14px rgba(43,38,32,.05);
  --shadow-md: 0 6px 18px rgba(43,38,32,.07), 0 18px 44px rgba(43,38,32,.08);
  --shadow-lg: 0 18px 50px rgba(43,38,32,.13), 0 4px 14px rgba(43,38,32,.06);
  --radius:    18px;
  --radius-lg: 26px;

  --maxw: 1180px;
  --pad: clamp(20px, 5vw, 56px);

  --ff-display: "Cormorant Garamond", Georgia, serif;
  --ff-body: "Mulish", system-ui, -apple-system, sans-serif;
}

/* ---------- Reset ---------- */
*{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; scroll-padding-top:88px; -webkit-text-size-adjust:100%; }
body{
  font-family:var(--ff-body);
  color:var(--ink);
  background:var(--paper);
  line-height:1.65;
  font-size:17px;
  font-weight:400;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  overflow-x:hidden;
}
img{ display:block; max-width:100%; height:auto; }
a{ color:inherit; text-decoration:none; }
button{ font-family:inherit; cursor:pointer; border:none; background:none; color:inherit; }
ul{ list-style:none; }

/* ---------- Layout helpers ---------- */
.wrap{ width:100%; max-width:var(--maxw); margin-inline:auto; padding-inline:var(--pad); }
.section{ padding-block:clamp(64px, 9vw, 120px); position:relative; }
.section--cream{ background:var(--cream); }
.section--ink{ background:#211e1b; color:#f3ece0; }

/* ---------- Typography ---------- */
h1,h2,h3,h4{ font-family:var(--ff-display); font-weight:600; line-height:1.08; color:var(--ink); letter-spacing:.005em; }
.eyebrow{
  display:inline-flex; align-items:center; gap:.55em;
  font-family:var(--ff-body); font-weight:700;
  font-size:13px; letter-spacing:.22em; text-transform:uppercase;
  color:var(--wine);
}
.eyebrow::before{ content:""; width:9px; height:9px; background:var(--gold); transform:rotate(45deg); border-radius:1px; }
.eyebrow--light{ color:var(--gold-soft); }
.eyebrow--center{ justify-content:center; }

.section-head{ max-width:680px; }
.section-head--center{ max-width:760px; margin-inline:auto; text-align:center; }
.section-title{ font-size:clamp(33px, 4.6vw, 52px); margin-top:18px; }
.section-sub{ margin-top:18px; color:var(--ink-2); font-size:clamp(16px,1.6vw,19px); max-width:62ch; }
.svc-intro{ max-width:none; }
@media (min-width:1080px){ .svc-intro{ white-space:nowrap; } }
.section-head--center .section-sub{ margin-inline:auto; }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:.6em;
  font-weight:700; font-size:15.5px; letter-spacing:.01em;
  padding:15px 26px; border-radius:100px;
  transition:transform .25s cubic-bezier(.2,.7,.3,1), box-shadow .25s, background .25s, color .25s;
  white-space:nowrap;
}
.btn svg{ width:19px; height:19px; flex:none; }
.btn--wa{ background:#1faf4f; color:#fff; box-shadow:0 8px 22px rgba(31,175,79,.28); }
.btn--wa:hover{ background:#1a9a45; transform:translateY(-2px); box-shadow:0 12px 28px rgba(31,175,79,.34); }
.btn--primary{ background:var(--wine); color:#fff; box-shadow:0 8px 22px rgba(138,32,36,.22); }
.btn--primary:hover{ background:var(--wine-deep); transform:translateY(-2px); box-shadow:0 12px 28px rgba(138,32,36,.3); }
.btn--ghost{ background:transparent; color:var(--ink); border:1.5px solid var(--line); }
.btn--ghost:hover{ border-color:var(--wine); color:var(--wine); transform:translateY(-2px); }
.btn--gold{ background:var(--gold); color:#3a2c0a; box-shadow:0 8px 22px rgba(210,162,63,.3); }
.btn--gold:hover{ background:var(--gold-soft); transform:translateY(-2px); }
.btn--lg{ padding:17px 32px; font-size:16.5px; }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav{
  position:fixed; inset:0 0 auto 0; z-index:80;
  transition:background .3s, box-shadow .3s, border-color .3s;
  background:rgba(253,250,244,.72);
  backdrop-filter:saturate(140%) blur(14px);
  border-bottom:1px solid transparent;
}
.nav.scrolled{ background:rgba(253,250,244,.94); box-shadow:0 4px 24px rgba(43,38,32,.07); border-bottom-color:var(--line-2); }
.nav__inner{ display:flex; align-items:center; gap:18px; height:72px; }
.brand{ display:flex; align-items:center; gap:12px; margin-right:auto; }
.brand__badge{ width:46px; height:46px; border-radius:12px; overflow:hidden; box-shadow:0 4px 12px rgba(43,38,32,.12); flex:none; }
.brand__badge img{ width:100%; height:100%; object-fit:cover; }
.brand__name{ font-family:var(--ff-display); font-weight:700; font-size:22px; line-height:1; letter-spacing:.01em; }
.brand__name small{ display:block; font-family:var(--ff-body); font-weight:600; font-size:10.5px; letter-spacing:.26em; text-transform:uppercase; color:var(--wine); margin-top:3px; white-space:nowrap; }

.nav__links{ display:flex; align-items:center; gap:2px; }
.nav__links a{ font-size:14.5px; font-weight:600; color:var(--ink-2); padding:9px 11px; border-radius:8px; white-space:nowrap; transition:color .2s, background .2s; }
.nav__links a:hover{ color:var(--wine); background:rgba(138,32,36,.06); }
.nav__cta{ margin-left:6px; }
.nav__toggle{ display:none; width:46px; height:46px; border-radius:12px; border:1px solid var(--line); align-items:center; justify-content:center; }
.nav__toggle span{ display:block; width:21px; height:2px; background:var(--ink); position:relative; transition:.3s; }
.nav__toggle span::before,.nav__toggle span::after{ content:""; position:absolute; left:0; width:21px; height:2px; background:var(--ink); transition:.3s; }
.nav__toggle span::before{ top:-6px; } .nav__toggle span::after{ top:6px; }
body.menu-open .nav__toggle span{ background:transparent; }
body.menu-open .nav__toggle span::before{ top:0; transform:rotate(45deg); }
body.menu-open .nav__toggle span::after{ top:0; transform:rotate(-45deg); }

/* mobile drawer */
.nav__drawer{ display:none; }

/* ============================================================
   HERO
   ============================================================ */
.hero{ position:relative; padding-top:120px; padding-bottom:clamp(50px,7vw,90px); overflow:hidden; }
.hero::before{
  content:""; position:absolute; top:-200px; right:-160px; width:620px; height:620px; z-index:0;
  background:radial-gradient(circle, rgba(243,204,76,.22), rgba(243,204,76,0) 68%);
  pointer-events:none;
}
.hero__grid{ position:relative; z-index:1; display:grid; grid-template-columns:1.05fr .95fr; gap:clamp(34px,5vw,72px); align-items:center; }
.hero__title{ font-size:clamp(40px, 6.2vw, 76px); line-height:1.02; letter-spacing:-.01em; margin-top:22px; }
.hero__title em{ font-style:italic; color:var(--wine); }
.hero__sub{ margin-top:24px; font-size:clamp(17px,1.7vw,20px); color:var(--ink-2); max-width:54ch; }
.hero__actions{ display:flex; flex-wrap:wrap; gap:14px; margin-top:34px; }
.hero__badges{ display:flex; flex-wrap:wrap; gap:10px 10px; margin-top:38px; }
.badge{
  display:inline-flex; align-items:center; gap:8px;
  font-size:13.5px; font-weight:700; color:var(--ink-2);
  background:var(--card); border:1px solid var(--line); border-radius:100px; padding:9px 16px 9px 13px;
  box-shadow:var(--shadow-sm);
}
.badge svg{ width:15px; height:15px; color:var(--gold); }

.hero__media{ position:relative; }
.hero__frame{
  position:relative; border-radius:var(--radius-lg); overflow:hidden;
  box-shadow:var(--shadow-lg); aspect-ratio:3/4; background:var(--cream);
}
.hero__frame img{ width:100%; height:100%; object-fit:cover; object-position:center top; }
.hero__frame::after{ content:""; position:absolute; inset:0; box-shadow:inset 0 0 0 1px rgba(255,255,255,.4); border-radius:inherit; pointer-events:none; }
.hero__chip{
  position:absolute; left:-26px; bottom:34px; z-index:2;
  background:var(--card); border-radius:16px; padding:14px 18px; box-shadow:var(--shadow-md);
  display:flex; align-items:center; gap:13px; max-width:240px;
}
.hero__chip .dot{ width:42px; height:42px; border-radius:50%; background:linear-gradient(135deg,var(--logo-yellow),var(--gold)); display:grid; place-items:center; flex:none; color:var(--wine); }
.hero__chip .dot svg{ width:22px; height:22px; }
.hero__chip b{ font-family:var(--ff-display); font-size:20px; font-weight:700; line-height:1; }
.hero__chip span{ display:block; font-size:12.5px; color:var(--muted); font-weight:600; margin-top:3px; }
.hero__loc{ position:absolute; right:-14px; top:24px; z-index:2; background:var(--wine); color:#fff; font-weight:700; font-size:13px; padding:9px 16px; border-radius:100px; box-shadow:var(--shadow-md); display:flex; align-items:center; gap:7px; }
.hero__loc svg{ width:14px; height:14px; }

/* trust strip */
.trust{ border-top:1px solid var(--line-2); margin-top:clamp(40px,6vw,72px); padding-top:30px; }
.trust ul{ display:flex; flex-wrap:wrap; justify-content:space-between; gap:18px 30px; }
.trust li{ display:flex; align-items:center; gap:11px; font-weight:600; color:var(--ink-2); font-size:15px; }
.trust .num{ font-family:var(--ff-display); font-size:30px; font-weight:700; color:var(--wine); line-height:1; }

/* ============================================================
   ABOUT
   ============================================================ */
.about__grid{ display:grid; grid-template-columns:1.1fr .9fr; gap:clamp(34px,5vw,64px); align-items:center; }
.about__quote{
  margin-top:30px; padding:26px 30px; border-left:3px solid var(--gold);
  background:var(--card-warm); border-radius:0 16px 16px 0;
  font-family:var(--ff-display); font-style:italic; font-size:clamp(21px,2.4vw,27px); line-height:1.3; color:var(--wine-deep);
}
.about__cards{ display:grid; gap:16px; }
.minicard{ background:var(--card); border:1px solid var(--line); border-radius:var(--radius); padding:24px 26px; box-shadow:var(--shadow-sm); display:flex; gap:18px; align-items:flex-start; transition:transform .25s, box-shadow .25s; }
.minicard:hover{ transform:translateY(-3px); box-shadow:var(--shadow-md); }
.minicard__ic{ width:50px; height:50px; border-radius:14px; flex:none; display:grid; place-items:center; background:linear-gradient(135deg,#fbf2dc,#f3e6c8); color:var(--wine); }
.minicard__ic svg{ width:25px; height:25px; }
.minicard h4{ font-size:21px; }
.minicard p{ color:var(--ink-2); font-size:15px; margin-top:4px; }

/* ============================================================
   SERVICES
   ============================================================ */
.svc-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:18px; margin-top:54px; }
.svc{
  background:var(--card); border:1px solid var(--line); border-radius:var(--radius); padding:28px 26px 30px;
  box-shadow:var(--shadow-sm); transition:transform .28s cubic-bezier(.2,.7,.3,1), box-shadow .28s, border-color .28s;
  position:relative; overflow:hidden;
}
.svc::before{ content:""; position:absolute; left:0; top:0; height:3px; width:0; background:var(--gold); transition:width .35s; }
.svc:hover{ transform:translateY(-5px); box-shadow:var(--shadow-md); border-color:var(--line-2); }
.svc:hover::before{ width:100%; }
.svc__ic{ width:54px; height:54px; border-radius:15px; display:grid; place-items:center; background:var(--card-warm); border:1px solid var(--line-2); color:var(--wine); margin-bottom:18px; }
.svc__ic svg{ width:27px; height:27px; }
.svc h4{ font-size:22px; line-height:1.12; }
.svc p{ color:var(--ink-2); font-size:14.5px; margin-top:8px; }

/* ============================================================
   PRODUCTS (image cards)
   ============================================================ */
.prod-grid{ display:grid; grid-template-columns:repeat(12,1fr); gap:18px; margin-top:54px; }
.prod{
  position:relative; border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow-sm);
  background:var(--cream); cursor:default; transition:transform .3s, box-shadow .3s;
}
.prod:hover{ transform:translateY(-4px); box-shadow:var(--shadow-md); }
.prod img{ width:100%; height:100%; object-fit:cover; transition:transform .6s cubic-bezier(.2,.7,.3,1); }
.prod:hover img{ transform:scale(1.05); }
.prod__cap{ position:absolute; inset:auto 0 0 0; padding:42px 20px 18px; background:linear-gradient(to top, rgba(28,24,20,.82), rgba(28,24,20,0)); color:#fff; }
.prod__cap b{ font-family:var(--ff-display); font-size:21px; font-weight:600; }
.prod__cap span{ display:block; font-size:12.5px; color:rgba(255,255,255,.82); font-weight:600; letter-spacing:.02em; margin-top:2px; }
.prod--tall{ grid-column:span 3; aspect-ratio:3/4.2; }
.prod--wide{ grid-column:span 6; aspect-ratio:3/2; }
.prod--sq{ grid-column:span 3; aspect-ratio:1/1.18; }
.prod--c4{ grid-column:span 4; aspect-ratio:4/5; }
.prod-note{ margin-top:26px; text-align:center; font-family:var(--ff-display); font-style:italic; font-size:clamp(18px,2vw,23px); color:var(--wine-deep); }
.prod-note span{ color:var(--ink-2); }

/* ============================================================
   LED SECTION
   ============================================================ */
.led__top{ display:grid; grid-template-columns:1.1fr .9fr; gap:clamp(30px,5vw,60px); align-items:center; }
.led__media{ display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.led__media .a{ grid-row:span 2; border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow-md); }
.led__media .b,.led__media .c{ border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow-sm); }
.led__media img{ width:100%; height:100%; object-fit:cover; }
.led__media .a{ aspect-ratio:3/4.4; } .led__media .b,.led__media .c{ aspect-ratio:4/3; }
.led-cards{ display:grid; grid-template-columns:repeat(4,1fr); gap:16px; margin-top:46px; }
.ledc{ background:#2c2824; color:#f1e9dc; border:1px solid #3a352f; border-radius:var(--radius); padding:24px; transition:transform .25s, border-color .25s; }
.ledc:hover{ transform:translateY(-4px); border-color:var(--gold); }
.ledc__ic{ width:46px; height:46px; border-radius:12px; display:grid; place-items:center; margin-bottom:16px; }
.ledc__ic svg{ width:24px; height:24px; }
.ledc--warm .ledc__ic{ background:rgba(243,204,76,.16); color:var(--gold-soft); }
.ledc--cool .ledc__ic{ background:rgba(150,200,255,.14); color:#cfe3ff; }
.ledc--plug .ledc__ic{ background:rgba(168,65,63,.2); color:#f0b6b0; }
.ledc--frame .ledc__ic{ background:rgba(255,255,255,.08); color:#e8e0d2; }
.ledc h4{ color:#fff; font-size:21px; }
.ledc p{ color:#c3bbac; font-size:14.5px; margin-top:6px; }

/* ============================================================
   DULCERAS
   ============================================================ */
.dul-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:48px; }
.dul{ background:var(--card); border:1px solid var(--line); border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-sm); transition:transform .28s, box-shadow .28s; }
.dul:hover{ transform:translateY(-5px); box-shadow:var(--shadow-md); }
.dul__img{ aspect-ratio:4/3.4; overflow:hidden; background:var(--cream); }
.dul__img img{ width:100%; height:100%; object-fit:cover; transition:transform .5s; }
.dul:hover .dul__img img{ transform:scale(1.04); }
.dul__body{ padding:22px 24px 26px; }
.dul__body h4{ font-size:22px; }
.dul__body p{ color:var(--ink-2); font-size:14.5px; margin-top:6px; }

/* ============================================================
   CLIENTS
   ============================================================ */
.cli-grid{ display:flex; flex-wrap:wrap; gap:12px; margin-top:46px; }
.cli{ display:flex; align-items:center; gap:11px; background:var(--card); border:1px solid var(--line); border-radius:100px; padding:12px 20px 12px 14px; font-weight:600; font-size:15px; box-shadow:var(--shadow-sm); transition:transform .2s, border-color .2s, color .2s; }
.cli:hover{ transform:translateY(-2px); border-color:var(--gold); color:var(--wine); }
.cli__d{ width:26px; height:26px; border-radius:8px; background:var(--card-warm); color:var(--wine); display:grid; place-items:center; flex:none; }
.cli__d svg{ width:15px; height:15px; }
.cli-note{ margin-top:30px; max-width:62ch; color:var(--ink-2); font-size:17px; }

/* ============================================================
   GALLERY
   ============================================================ */
.gal-filters{ display:flex; flex-wrap:wrap; gap:10px; margin-top:36px; margin-bottom:30px; }
.gal-filter{ font-weight:700; font-size:14px; padding:10px 18px; border-radius:100px; border:1px solid var(--line); color:var(--ink-2); background:var(--card); transition:.2s; }
.gal-filter:hover{ border-color:var(--wine); color:var(--wine); }
.gal-filter.active{ background:var(--wine); color:#fff; border-color:var(--wine); }
.gal-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.gal-item{ position:relative; border-radius:14px; overflow:hidden; box-shadow:var(--shadow-sm); transition:opacity .35s, transform .35s; aspect-ratio:4/5; }
.gal-item img{ width:100%; height:100%; object-fit:cover; transition:transform .55s cubic-bezier(.2,.7,.3,1); }
.gal-item:hover img{ transform:scale(1.06); }
.gal-item__tag{ position:absolute; left:0; right:0; bottom:0; padding:30px 16px 14px; background:linear-gradient(to top, rgba(28,24,20,.78), transparent); color:#fff; font-size:13px; font-weight:700; letter-spacing:.02em; opacity:0; transform:translateY(8px); transition:.3s; }
.gal-item:hover .gal-item__tag{ opacity:1; transform:translateY(0); }
.gal-item.hide{ display:none; }

/* ============================================================
   QUOTE STEPS
   ============================================================ */
.steps{ display:grid; grid-template-columns:repeat(5,1fr); gap:16px; margin-top:54px; }
.step{ position:relative; background:var(--card); border:1px solid var(--line); border-radius:var(--radius); padding:26px 22px 24px; box-shadow:var(--shadow-sm); }
.step__n{ font-family:var(--ff-display); font-size:46px; font-weight:700; color:var(--gold); line-height:1; opacity:.9; }
.step h4{ font-size:19px; margin-top:10px; line-height:1.15; }
.step p{ color:var(--ink-2); font-size:14px; margin-top:8px; }
.steps-cta{ display:flex; justify-content:center; margin-top:40px; }

/* ============================================================
   INFO NOTICE
   ============================================================ */
.info-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin-top:48px; }
.info{ display:flex; gap:15px; align-items:flex-start; background:var(--card); border:1px solid var(--line); border-radius:var(--radius); padding:22px 24px; box-shadow:var(--shadow-sm); }
.info__ic{ width:40px; height:40px; border-radius:11px; background:var(--card-warm); color:var(--wine); display:grid; place-items:center; flex:none; }
.info__ic svg{ width:21px; height:21px; }
.info p{ font-size:15px; color:var(--ink-2); }
.info p b{ color:var(--ink); font-weight:700; }

/* ============================================================
   FORM
   ============================================================ */
.form-wrap{ display:grid; grid-template-columns:.85fr 1.15fr; gap:clamp(30px,5vw,56px); align-items:start; }
.form-aside h2{ font-size:clamp(30px,4vw,46px); }
.form-aside p{ color:var(--ink-2); margin-top:16px; font-size:17px; }
.form-aside .wa-direct{ margin-top:26px; display:flex; flex-direction:column; gap:14px; }
.wa-line{ display:flex; align-items:center; gap:13px; font-weight:600; color:var(--ink); }
.wa-line .d{ width:42px; height:42px; border-radius:12px; background:var(--card-warm); color:var(--wine); display:grid; place-items:center; flex:none; }
.wa-line .d svg{ width:21px; height:21px; }
.wa-line small{ display:block; font-weight:600; color:var(--muted); font-size:12.5px; }

.qform{ background:var(--card); border:1px solid var(--line); border-radius:var(--radius-lg); padding:clamp(24px,3vw,38px); box-shadow:var(--shadow-md); }
.field{ margin-bottom:18px; }
.field--row{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.field label{ display:block; font-weight:700; font-size:13.5px; margin-bottom:7px; color:var(--ink); }
.field label .req{ color:var(--wine); }
.field input,.field select,.field textarea{
  width:100%; font-family:inherit; font-size:15.5px; color:var(--ink);
  background:var(--paper); border:1.5px solid var(--line); border-radius:12px; padding:13px 15px;
  transition:border-color .2s, box-shadow .2s; -webkit-appearance:none; appearance:none;
}
.field textarea{ min-height:104px; resize:vertical; }
.field select{ background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%238a2024' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right 15px center; padding-right:40px; }
.field input:focus,.field select:focus,.field textarea:focus{ outline:none; border-color:var(--wine); box-shadow:0 0 0 4px rgba(138,32,36,.1); }
.field.invalid input,.field.invalid select,.field.invalid textarea{ border-color:#c0392b; box-shadow:0 0 0 4px rgba(192,57,43,.1); }
.field .err{ display:none; color:#c0392b; font-size:12.5px; font-weight:600; margin-top:6px; }
.field.invalid .err{ display:block; }
.qform__submit{ width:100%; margin-top:6px; }
.qform__note{ text-align:center; font-size:12.5px; color:var(--muted); margin-top:14px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list{ max-width:820px; margin:46px auto 0; }
.faq{ border:1px solid var(--line); border-radius:14px; background:var(--card); margin-bottom:12px; box-shadow:var(--shadow-sm); overflow:hidden; }
.faq__q{ width:100%; display:flex; align-items:center; gap:16px; text-align:left; padding:20px 24px; font-weight:700; font-size:17px; color:var(--ink); }
.faq__q .ico{ margin-left:auto; width:26px; height:26px; border-radius:50%; background:var(--card-warm); color:var(--wine); display:grid; place-items:center; flex:none; transition:transform .3s, background .3s; }
.faq__q .ico svg{ width:15px; height:15px; }
.faq.open .faq__q .ico{ transform:rotate(45deg); background:var(--wine); color:#fff; }
.faq__a{ max-height:0; overflow:hidden; transition:max-height .35s ease; }
.faq__a p{ padding:0 24px 22px; color:var(--ink-2); font-size:15.5px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid{ display:grid; grid-template-columns:1fr 1.1fr; gap:clamp(30px,4vw,52px); align-items:stretch; }
.contact-info{ display:flex; flex-direction:column; gap:6px; }
.cinfo{ display:flex; gap:15px; align-items:flex-start; padding:16px 0; border-bottom:1px solid var(--line-2); }
.cinfo:last-of-type{ border-bottom:none; }
.cinfo .d{ width:44px; height:44px; border-radius:12px; background:var(--card-warm); color:var(--wine); display:grid; place-items:center; flex:none; }
.cinfo .d svg{ width:21px; height:21px; }
.cinfo b{ font-size:13px; text-transform:uppercase; letter-spacing:.1em; color:var(--muted); font-weight:700; }
.cinfo span{ display:block; font-size:17px; font-weight:600; color:var(--ink); margin-top:2px; }
.cinfo span.sm{ font-size:15px; font-weight:500; color:var(--ink-2); line-height:1.5; }
.contact-actions{ display:flex; flex-wrap:wrap; gap:12px; margin-top:22px; }
.social-btn{ display:inline-flex; align-items:center; gap:9px; font-weight:700; font-size:14.5px; padding:12px 20px; border-radius:100px; border:1.5px solid var(--line); transition:.2s; }
.social-btn svg{ width:18px; height:18px; }
.social-btn:hover{ transform:translateY(-2px); border-color:var(--wine); color:var(--wine); }
.contact-map{ border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-md); min-height:420px; border:1px solid var(--line); }
.contact-map iframe{ width:100%; height:100%; min-height:420px; border:0; display:block; filter:grayscale(.15) contrast(1.02); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer{ background:#211e1b; color:#cfc6b8; padding-block:clamp(50px,7vw,80px) 30px; }
.footer__grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1.1fr; gap:36px; }
.footer__brand .brand__name{ color:#fff; }
.footer__brand .brand__name small{ color:var(--gold-soft); }
.footer__brand p{ margin-top:18px; font-size:14.5px; color:#a89e8f; max-width:34ch; }
.footer h5{ font-family:var(--ff-body); font-weight:800; font-size:13px; letter-spacing:.16em; text-transform:uppercase; color:var(--gold-soft); margin-bottom:16px; }
.footer ul li{ margin-bottom:10px; }
.footer ul a, .footer__col p{ color:#b6ac9d; font-size:14.5px; transition:color .2s; }
.footer ul a:hover{ color:#fff; }
.footer__col p{ margin-bottom:9px; }
.footer__social{ display:flex; gap:10px; margin-top:6px; }
.footer__social a{ width:40px; height:40px; border-radius:11px; border:1px solid #3a352f; display:grid; place-items:center; color:#cfc6b8; transition:.2s; }
.footer__social a:hover{ background:var(--wine); border-color:var(--wine); color:#fff; }
.footer__social svg{ width:18px; height:18px; }
.footer__bar{ border-top:1px solid #34302a; margin-top:44px; padding-top:24px; padding-right:200px; display:flex; flex-wrap:wrap; gap:10px 20px; justify-content:space-between; align-items:center; }
.footer__bar p{ font-size:13px; color:#8f8676; }
.footer__bar .tag{ font-family:var(--ff-display); font-style:italic; font-size:16px; color:var(--gold-soft); }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.wa-float{ position:fixed; right:22px; bottom:22px; z-index:70; display:flex; align-items:center; gap:0; }
.wa-float a{ display:flex; align-items:center; gap:10px; background:#1faf4f; color:#fff; font-weight:800; font-size:15px; padding:14px 20px 14px 16px; border-radius:100px; box-shadow:0 10px 30px rgba(31,175,79,.4); transition:transform .25s, box-shadow .25s; }
.wa-float a:hover{ transform:translateY(-3px) scale(1.02); box-shadow:0 14px 36px rgba(31,175,79,.5); }
.wa-float svg{ width:26px; height:26px; flex:none; }
.wa-float .pulse{ position:absolute; left:16px; top:50%; transform:translateY(-50%); width:48px; height:48px; border-radius:50%; background:#1faf4f; opacity:.6; animation:wapulse 2.4s ease-out infinite; z-index:-1; }
@keyframes wapulse{ 0%{ transform:translateY(-50%) scale(.7); opacity:.5; } 70%{ transform:translateY(-50%) scale(1.7); opacity:0; } 100%{ opacity:0; } }

/* ============================================================
   REVEAL ANIM
   ============================================================ */
.reveal{ opacity:0; transform:translateY(26px); transition:opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1); }
.reveal.in{ opacity:1; transform:none; }
@media (prefers-reduced-motion:reduce){ .reveal{ opacity:1; transform:none; transition:none; } html{ scroll-behavior:auto; } .wa-float .pulse{ animation:none; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:1180px){
  .nav__links, .nav__cta{ display:none; }
  .nav__toggle{ display:flex; }
  .svc-grid{ grid-template-columns:repeat(2,1fr); }
  .led-cards{ grid-template-columns:repeat(2,1fr); }
  .steps{ grid-template-columns:repeat(2,1fr); }
  .gal-grid{ grid-template-columns:repeat(3,1fr); }

  /* drawer */
  .nav__drawer{ display:block; position:fixed; inset:72px 0 0 0; z-index:75;
    background:var(--paper); padding:24px var(--pad) 40px; overflow-y:auto;
    transform:translateX(100%); transition:transform .35s cubic-bezier(.2,.7,.3,1); }
  body.menu-open .nav__drawer{ transform:translateX(0); }
  body.menu-open{ overflow:hidden; }
  .nav__drawer a{ display:flex; align-items:center; justify-content:space-between; padding:16px 4px; font-size:19px; font-weight:700; font-family:var(--ff-display); border-bottom:1px solid var(--line-2); color:var(--ink); }
  .nav__drawer a svg{ width:18px; height:18px; color:var(--gold); }
  .nav__drawer .btn--wa{ margin-top:24px; width:100%; }
}
@media (max-width:880px){
  .hero__grid{ grid-template-columns:1fr; }
  .hero__media{ max-width:460px; margin:8px auto 0; }
  .about__grid{ grid-template-columns:1fr; }
  .led__top{ grid-template-columns:1fr; }
  .form-wrap{ grid-template-columns:1fr; }
  .contact-grid{ grid-template-columns:1fr; }
  .footer__grid{ grid-template-columns:1fr 1fr; gap:30px; }
  .prod--tall,.prod--sq{ grid-column:span 6; }
  .prod--wide{ grid-column:span 12; }
  .prod--c4{ grid-column:span 6; }
  .prod--tall{ aspect-ratio:3/3.6; }
  .trust ul{ gap:16px; }
  .trust li{ width:calc(50% - 16px); }
}
@media (max-width:560px){
  body{ font-size:16px; }
  .section{ padding-block:56px; }
  .svc-grid,.led-cards,.steps,.info-grid,.dul-grid{ grid-template-columns:1fr; }
  .svc-intro{ white-space:normal !important; }
  .gal-grid{ grid-template-columns:repeat(2,1fr); gap:12px; }
  .gal-item{ margin-bottom:0; }
  .field--row{ grid-template-columns:1fr; }
  .footer__grid{ grid-template-columns:1fr; }
  .hero__chip{ left:0; }
  .hero__loc{ right:8px; }
  .wa-float a span{ display:none; }
  .wa-float a{ padding:14px; }
  .footer__bar{ padding-right:72px; }
  .prod--tall,.prod--sq,.prod--wide{ grid-column:span 12; aspect-ratio:4/3; }
  .prod--c4{ grid-column:span 12; aspect-ratio:4/3.4; }
  .brand__name{ font-size:19px; }
  .brand__badge{ width:42px; height:42px; }
  .brand__name small{ font-size:9.5px; letter-spacing:.18em; }
}
@media (max-width:400px){
  .brand__name small{ display:none; }
}

/* ============================================================
   FONT AWESOME (SVG+JS) — uniform icon sizing
   FA swaps <i> for <svg.svg-inline--fa> sized to 1em, so we
   size the CONTAINERS; rules also cover the <i> fallback.
   ============================================================ */
.svg-inline--fa{ vertical-align:-0.1em; }
.svc__ic{ font-size:23px; }
.minicard__ic{ font-size:21px; }
.ledc__ic{ font-size:21px; }
.info__ic{ font-size:18px; }
.cli__d{ font-size:12.5px; }
.cinfo .d, .wa-line .d{ font-size:18px; }
.hero__chip .dot{ font-size:20px; }
.footer__social a{ font-size:17px; }
.faq__q .ico{ font-size:12px; }
.nav__toggle{ font-size:20px; }
.nav__toggle i, .nav__toggle .svg-inline--fa{ color:var(--ink); }
.badge i, .badge .svg-inline--fa{ font-size:13px; color:var(--gold); }
.hero__loc i, .hero__loc .svg-inline--fa{ font-size:12px; }
.trust li i, .trust li .svg-inline--fa{ font-size:19px; color:var(--wine); }
.wa-float a i, .wa-float a .svg-inline--fa{ font-size:22px; }
.nav__drawer a .fa-chevron-right{ font-size:14px; color:var(--gold); }
.gal-note{ margin-top:14px; font-size:14px; color:var(--muted); font-style:italic; max-width:62ch; }
.section--ink .gal-note{ color:#a89e8f; }
