:root{
  --vino:#471A1A;
  --vino2:#2A1414;
  --dorado:#E6B277;
  --crema:#FBF7F2;
  --ink:#222;

  --shadow: 0 18px 60px rgba(0,0,0,.16);
  --ease: cubic-bezier(.2,.85,.2,1);
  --radius: 14px;
  --vh: 1vh;
}

*{ box-sizing:border-box; }
html, body{ height:100%; }

html{
  scroll-behavior:smooth;
  background: var(--crema);
}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--crema);
  overflow-x:hidden;
}

.container{
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

/* Adaptive wrappers */
.siteDesktop{ display:block; }
.siteMobile{ display:none; }

/* =======================
   DESKTOP (PC)
======================= */

/* TOPBAR */
.topbar{
  background:#fff;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding: 8px 0;
  font-size: 12px;
  color: rgba(34,34,34,.78);
}
.topbar__addresses{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  line-height:1.4;
}
.topbar__addresses .dot{ opacity:.55; }
.topbar__link{
  color: rgba(34,34,34,.78);
  text-decoration:none;
  font-weight:700;
}
.topbar__link:hover{ color: var(--vino); }

/* HEADER + NAV */
.header{ background:#fff; }
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding: 18px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:14px;
  min-width: 220px;
}
.brand__logo{
  width: 72px;
  height: 72px;
  object-fit:contain;
}
.brand__name{
  font-family: "Cormorant Garamond", serif;
  font-weight:700;
  letter-spacing:.10em;
  font-size: 22px;
  line-height:1;
  color: var(--vino2);
}
.brand__sub{
  margin-top: 6px;
  font-size: 12px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color: rgba(34,34,34,.65);
}
.brand__legal{
  margin-top: 4px;
  font-size: 11px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color: rgba(34,34,34,.58);
}

.cta{ text-align:right; }
.cta__label{
  font-size: 12px;
  font-weight:900;
  color: rgba(34,34,34,.55);
  letter-spacing:.08em;
}
.cta__phone{
  display:inline-block;
  margin-top: 2px;
  font-weight:900;
  font-size: 28px;
  color: var(--vino);
  text-decoration:none;
}
.cta__phone:hover{ color: var(--vino2); }
.cta__alt{
  margin-top: 4px;
  font-size: 12px;
  color: rgba(34,34,34,.70);
}
.cta__alt a{
  color: var(--vino);
  font-weight:800;
  text-decoration:none;
}
.cta__alt a:hover{ color: var(--vino2); }

.nav{
  border-top: 1px solid rgba(0,0,0,.08);
  border-bottom: 1px solid rgba(0,0,0,.08);
  position: sticky;
  top: 0;
  z-index: 50;
  background:#fff;
}
.nav__inner{
  display:flex;
  align-items:center;
  gap: 18px;
  padding: 12px 0;
}
.nav__item{
  text-decoration:none;
  color: rgba(34,34,34,.78);
  font-weight:700;
  font-size: 14px;
}
.nav__item:hover{ color: var(--vino); }

.nav__burger{
  margin-left:auto;
  display:none;
  width: 44px;
  height: 40px;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 10px;
  background:#fff;
  cursor:pointer;
  align-items:center;
  justify-content:center;
  gap:5px;
  padding:0;
}
.nav__burger span{
  display:block;
  width: 18px;
  height: 2px;
  background: rgba(0,0,0,.55);
  border-radius:999px;
}

.drawer{
  display:none;
  border-top: 1px solid rgba(0,0,0,.08);
  padding: 10px 0 14px;
}
.drawer__item{
  display:block;
  padding: 10px 0;
  text-decoration:none;
  color: rgba(34,34,34,.78);
  font-weight:800;
}
.drawer__item:hover{ color: var(--vino); }

/* HERO */
.hero{
  position:relative;
  min-height: 520px;
  background: #0e0f0a;
  overflow:hidden;
}
.hero__bg{
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(90deg, rgba(42,20,20,.72), rgba(42,20,20,.22)),
    url("./martinez4.webp");
  background-size: cover;
  background-position: center;
  filter: saturate(1.05) contrast(1.05);
  transform: scale(1.02);
}
.hero__inner{
  position:relative;
  min-height: 520px;
  display:flex;
  align-items:flex-end;
  padding: 54px 0;
}

.heroCard{
  width: min(560px, 92%);
  background: rgba(71,26,26,.90);
  border: 1px solid rgba(230,178,119,.30);
  box-shadow: var(--shadow);
  color:#fff;
  padding: 26px 26px 22px;
}
.heroCard__title{
  font-size: 52px;
  line-height:1;
  font-weight:800;
  letter-spacing:.02em;
}
.heroCard__text{
  margin: 10px 0 18px;
  opacity:.95;
  line-height:1.65;
  max-width: 50ch;
}
.heroCard__ctaRow{
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
}

/* BANDS */
.band{ background:#fff; padding: 62px 0; }
.band--alt{ background: var(--crema); padding-top: 70px; }
.band__inner{
  display:grid;
  grid-template-columns: 220px 1fr;
  gap: 26px;
  align-items:flex-start;
}
.bandLabel{ padding-top: 10px; }
.bandLabel__text{
  font-size: 46px;
  line-height:1.1;
  font-weight:300;
  color: rgba(34,34,34,.55);
  text-transform: lowercase;
}
.bandContent{ padding-right: 10px; }
.bandContent__line{
  margin-top: 22px;
  height: 1px;
  width: 100%;
  background: rgba(0,0,0,.10);
}

.h2{
  font-family: "Cormorant Garamond", serif;
  font-size: 44px;
  font-weight:700;
  letter-spacing:.01em;
  margin: 0 0 12px;
  color: rgba(34,34,34,.92);
}
.eyebrow{
  font-size: 13px;
  font-weight:900;
  letter-spacing:.10em;
  color: var(--vino);
  margin: 0 0 14px;
}
.p{
  margin: 0 0 14px;
  line-height:1.85;
  color: rgba(34,34,34,.78);
  font-size: 15.5px;
}

/* Pills */
.pillGrid{
  margin-top: 14px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.pill{
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(71,26,26,.18);
  background: rgba(251,247,242,.9);
  color: rgba(34,34,34,.78);
  font-weight:800;
  letter-spacing:.02em;
  font-size: 12px;
}

/* Thumbnail card */
.thumbCard{
  margin-top: 18px;
  border-radius: 10px;
  overflow:hidden;
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 18px 55px rgba(0,0,0,.12);
  position:relative;
  background:#0c0f07;
}
.thumbCard__thumb{
  height: 310px;
  background-image:
    linear-gradient(180deg, rgba(42,20,20,.12), rgba(42,20,20,.75)),
    url("./martinez1.webp");
  background-size: cover;
  background-position:center;
}
.thumbCard__caption{
  position:absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 18px 16px;
  background: linear-gradient(180deg, transparent, rgba(42,20,20,.78));
  color:#fff;
}
.thumbCard__kicker{
  font-size: 12px;
  opacity:.92;
  color: rgba(230,178,119,.95);
  font-weight:800;
  letter-spacing:.08em;
}
.thumbCard__title{
  margin-top: 6px;
  font-size: 34px;
  font-family: "Cormorant Garamond", serif;
  font-weight:700;
}

/* CLIENTES DESKTOP */
.clientsDesk{
  display:grid;
  grid-template-columns: 220px 1fr;
  gap: 26px;
  align-items:center;
}
.clientsDesk__left{
  padding-top: 10px;
}
.clientsDesk__label{
  font-size: 46px;
  line-height: 1.1;
  font-weight: 300;
  color: rgba(34,34,34,.55);
  text-transform: lowercase;
  letter-spacing: 0;
}
.tvFrame{
  background: #fff;
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 14px;
  box-shadow: 0 14px 40px rgba(0,0,0,.08);
  padding: 14px 14px;

  width: min(820px, 92%);
  margin-right: auto;
  margin-left: 0;
}
.tvBand{
  height: 110px;
  overflow: hidden;
  position: relative;
}
.tvTrack{
  height: 100%;
  display:flex;
  align-items:center;
  gap: 26px;
  width: max-content;
  animation: tvScroll 18s linear infinite;
  will-change: transform;
}
.tvTrack img{
  height: 78px;
  width: auto;
  object-fit: contain;
  filter: saturate(1.02) contrast(1.02);
  opacity: .96;
}
@keyframes tvScroll{
  0%{ transform: translateX(0); }
  100%{ transform: translateX(-50%); }
}

/* CONTACT */
.contact{ background: var(--crema); padding: 70px 0; }
.contactBox{
  background:#fff;
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 18px 55px rgba(0,0,0,.10);
  border-radius: var(--radius);
  padding: 26px;
}
.contactBox__kicker{
  font-size: 12px;
  font-weight:900;
  letter-spacing:.18em;
  color: rgba(34,34,34,.55);
  margin-bottom: 10px;
}
.h2--dark{ color: rgba(34,34,34,.92); }

.contactDetails{
  margin: 10px 0 16px;
  padding: 14px 14px;
  border-radius: 12px;
  border: 1px solid rgba(71,26,26,.14);
  background: rgba(251,247,242,.95);
}
.contactDetails__row{
  display:grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.contactDetails__row:last-child{ border-bottom: 0; }
.contactDetails__label{
  font-weight:900;
  color: rgba(34,34,34,.62);
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size: 11px;
}
.contactDetails__value{
  color: rgba(34,34,34,.78);
  line-height:1.6;
}
.link{
  color: var(--vino);
  font-weight:900;
  text-decoration:none;
}
.link:hover{ color: var(--vino2); }
.sep{ opacity:.6; padding: 0 6px; }

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border-radius: 8px;
  padding: 12px 18px;
  text-decoration:none;
  font-weight:900;
  letter-spacing:.08em;
  font-size: 12px;
  border: 1px solid transparent;
  cursor:pointer;
  user-select:none;
}
.btn--light{
  background: #fff;
  color: var(--vino);
  border-color: rgba(230,178,119,.45);
}
.btn--light:hover{ background: rgba(255,255,255,.92); }
.btn--ghost{
  background: rgba(255,255,255,.10);
  color:#fff;
  border-color: rgba(230,178,119,.40);
}
.btn--ghost:hover{ background: rgba(255,255,255,.16); }
.btn--dark{
  background: var(--vino);
  color:#fff;
}
.btn--dark:hover{ background: var(--vino2); }
.btn--outline{
  background: transparent;
  color: var(--vino);
  border-color: rgba(71,26,26,.35);
}
.btn--outline:hover{ background: rgba(71,26,26,.06); }
.btn--full{ width:100%; }

/* Form desktop */
.form{
  margin-top: 16px;
  display:grid;
  gap: 12px;
}
.field span{
  display:block;
  font-weight:900;
  font-size: 12px;
  color: rgba(34,34,34,.62);
  margin-bottom: 6px;
  letter-spacing:.06em;
}
.field input, .field textarea{
  width:100%;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,.12);
  padding: 12px 12px;
  font-size: 16px;
  outline:none;
  background:#fff;
}
.field input:focus, .field textarea:focus{
  border-color: rgba(71,26,26,.40);
  box-shadow: 0 0 0 4px rgba(71,26,26,.12);
}

.toast{
  margin-top: 12px;
  padding: 12px 12px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(0,0,0,.03);
  display:none;
}
.toast.show{ display:block; }
.toast.is-error{ background: rgba(200,0,0,.06); border-color: rgba(200,0,0,.18); }

/* reveal desktop */
.js-reveal{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.js-reveal.is-active{ opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  .js-reveal{ transition:none; opacity:1; transform:none; }
  .tvTrack{ animation: none; }
}

/* =======================
   MOBILE (TELÉFONO)
======================= */
@media (max-width: 859px){
  .siteDesktop{ display:none; }
  .siteMobile{ display:block; }

  body{
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    background: linear-gradient(135deg, #f5c68c, #e5b075);
  }

  html{
    background: linear-gradient(135deg, #f5c68c, #e5b075);
    scroll-behavior: smooth;
  }

  /* ✅ Scroll tradicional: NO SNAP */
  .page{
    min-height: 100svh;
    display:flex;
    align-items:center;
    justify-content:center;
    padding: calc(18px + env(safe-area-inset-top)) 14px calc(18px + env(safe-area-inset-bottom)) 14px;
    overflow: hidden;
    position: relative;
  }

  /* ✅ Fade-in global por sección */
  .js-page{
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .70s var(--ease), transform .70s var(--ease);
    will-change: opacity, transform;
  }
  .js-page.is-active{
    opacity: 1;
    transform: translateY(0);
  }

  /* ✅ Fade-in extra a elementos internos (más “pro”) */
  .js-page .photoAngle,
  .js-page .textBlock,
  .js-page .clientsViewport,
  .js-page .centerBlock,
  .js-page .clientsHeader{
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .70s var(--ease), transform .70s var(--ease);
  }
  .js-page.is-active .photoAngle,
  .js-page.is-active .textBlock,
  .js-page.is-active .clientsViewport,
  .js-page.is-active .centerBlock,
  .js-page.is-active .clientsHeader{
    opacity: 1;
    transform: translateY(0);
  }

  /* Mobile Hamburger Menu (fixed, pop-up animation) */
  .mMenu{
    position: fixed;
    top: calc(10px + env(safe-area-inset-top));
    right: 10px;
    z-index: 999;
    display:flex;
    flex-direction:column;
    align-items:flex-end;
    gap: 10px;
  }

  .mMenu__btn{
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(71,26,26,.12);
    background: rgba(255,255,255,.14);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    cursor:pointer;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:6px;
    padding:0;
  }
  .mMenu__btn span{
    display:block;
    width: 18px;
    height: 2px;
    background: rgba(71,26,26,.90);
    border-radius: 999px;
  }

  /* ✅ POP UP anim */
  .mMenu__panel{
    min-width: 170px;
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(71,26,26,.12);
    border-radius: 14px;
    overflow:hidden;

    box-shadow: 0 12px 30px rgba(42,20,20,.10);

    opacity: 0;
    transform: translateY(-8px) scale(.92);
    transform-origin: top right;
    pointer-events: none;

    transition: opacity .22s var(--ease), transform .22s var(--ease);
  }
  .mMenu.is-open .mMenu__panel{
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  .mMenu__link{
    display:block;
    padding: 12px 14px;
    text-decoration:none;
    font-weight: 900;
    font-size: 12px;
    letter-spacing:.12em;
    text-transform: uppercase;
    color: rgba(71,26,26,.92);
    border-bottom: 1px solid rgba(0,0,0,.06);
  }
  .mMenu__link:last-child{ border-bottom: 0; }
  .mMenu__link:active{ background: rgba(230,178,119,.18); }

  /* Cover */
  .page--cover{ background: linear-gradient(135deg, #f5c68c, #e5b075); }
  .coverCenter{
    width: min(560px, 92%);
    text-align:center;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap: 12px;
  }
  .logoFade{
    width: min(520px, 90vw);
    max-width: 90vw;
    height:auto;
    opacity:0;
    transform: translateY(12px);
    animation: logoFadeIn 2.4s var(--ease) forwards;
    filter: drop-shadow(0 20px 40px rgba(42,20,20,.22));
  }
  @keyframes logoFadeIn{
    0%{ opacity:0; transform: translateY(16px) scale(.985); }
    100%{ opacity:1; transform: translateY(0) scale(1); }
  }

  .coverTitle{
    font-family: Cinzel, serif;
    font-weight:700;
    letter-spacing:.08em;
    color: var(--vino);
  }
  .coverSub{ margin-top:6px; font-weight:500; opacity:.85; }

  .page--light{ background: var(--crema); }
  .page--contact{ background: var(--crema); color: var(--ink); }

  .pageInner{
    width: min(980px, 100%);
    margin: 0 auto;
  }

  .kicker{
    font-size: 11px;
    letter-spacing: .26em;
    text-transform: uppercase;
    color: rgba(71,26,26,.72);
    margin: 0 0 8px;
  }
  .kicker--light{ color: rgba(71,26,26,.72); }

  .h1,.h2{
    font-family: Cinzel, serif;
    margin: 0 0 8px;
    color: var(--vino);
    letter-spacing: .02em;
  }
  .h1{ font-size: 26px; }
  .h2{ font-size: 22px; }
  .h2--light{ color: var(--vino); }

  .p{
    margin: 0 0 10px;
    line-height: 1.62;
    font-size: 13.6px;
    opacity: .92;
    color: rgba(34,34,34,.88);
  }
  .p--light{ color: rgba(34,34,34,.88); opacity:.92; }

  .layout{
    display:flex;
    flex-direction:column;
    gap: 12px;
    justify-content:center;
  }

  .photoAngle{
    border-radius: 18px;
    box-shadow: 0 14px 40px rgba(42,20,20,.12);
    border: 1px solid rgba(71,26,26,.10);
    overflow:hidden;
    width: 100%;
    height: 160px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position:relative;
  }
  .photoAngle__shade{
    position:absolute;
    inset:0;
    background: linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.22));
  }
  .photoAngle__placeholder{
    position:absolute;
    inset:0;
    display:flex;
    align-items:flex-end;
    padding: 12px;
  }
  .photoAngle__label{
    background: rgba(255,255,255,.88);
    color: var(--vino);
    font-family: Cinzel, serif;
    font-weight: 700;
    padding: 8px 10px;
    border-radius: 14px;
    border: 1px solid rgba(71,26,26,.12);
  }

  .photoPresentacion{ background-image: url("./martinez2.webp"); }
  .photoNosotros{     background-image: url("./martinez3.webp"); }
  .photoMision{       background-image: url("./martinez1.webp"); }
  .photoVision{       background-image: url("./martinez4.webp"); }

  .textBlock{
    background: #fff;
    border-radius: 18px;
    border: 1px solid rgba(71,26,26,.10);
    box-shadow: 0 12px 34px rgba(42,20,20,.10);
    padding: 14px;
  }

  .goldLine{
    height: 3px;
    width: 68%;
    background: rgba(230,178,119,.95);
    border-radius: 999px;
    margin-top: 10px;
  }
  .goldLine--center{ margin: 14px auto 0; width: 62%; }

  .pillRow{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin-top: 6px;
  }
  .pill{
    font-size: 11px;
    padding: 6px 9px;
    border-radius: 999px;
    border: 1px solid rgba(71,26,26,.14);
    background: rgba(245,194,135,.25);
    color: var(--vino);
    font-weight: 700;
  }

  /* CLIENTES mobile: 1 por swipe + sin scrollbar visible */
  .page--clientes{ background: var(--crema); }
  .pageInner--clientes{ width: 100%; }

  .clientsHeader{
    text-align:center;
    margin-bottom: 10px;
  }

  .clientsViewport{
    position: relative;
    width: 100%;
    height: auto;
    display:flex;
    align-items:center;
    justify-content:center;
    padding: 10px 0 26px;
    overflow: hidden;
  }

  .clientsTrack{
    display:flex;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    overscroll-behavior-x: contain;
    gap: 0;
    padding: 0;
    scroll-behavior: smooth;
    scrollbar-width: none;
  }
  .clientsTrack::-webkit-scrollbar{ display:none; }

  .clientsSlide{
    flex: 0 0 100%;
    width: 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    display:flex;
    align-items:center;
    justify-content:center;
    padding: 18px 0;
  }

  /* ✅ sin sombra alrededor de imágenes */
  .clientsSlide img{
    width: min(78vw, 360px);
    height: min(78vw, 360px);
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display:block;
    border-radius: 0;
    border: 0;
    box-shadow: none;
  }

  .clientsHint{
    position:absolute;
    bottom: 10px;
    left: 14px;
    right: 14px;
    text-align:center;
    font-weight: 800;
    font-size: 11px;
    letter-spacing: .14em;
    color: rgba(71,26,26,.70);
    text-transform: uppercase;
    pointer-events:none;
  }

  .centerBlock{
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(71,26,26,.10);
    border-radius: 18px;
    box-shadow: 0 18px 55px rgba(42,20,20,.14);
    padding: 14px;
    margin-top: 10px;
  }

  .form--mobile{
    margin-top: 10px;
    display:grid;
    gap: 10px;
  }

  .form--mobile .field span{
    display:block;
    font-size: 12px;
    margin-bottom: 6px;
    letter-spacing: .04em;
    font-weight: 800;
    color: rgba(42,20,20,.86);
  }

  .form--mobile .field input,
  .form--mobile .field textarea{
    width: 100%;
    padding: 11px 12px;
    border-radius: 14px;
    font-size: 16px;
    border: 1px solid rgba(71,26,26,.18);
    background: #fff;
    color: rgba(34,34,34,.92);
    outline:none;
  }
  .form--mobile .field input:focus,
  .form--mobile .field textarea:focus{
    border-color: rgba(71,26,26,.42);
    box-shadow: 0 0 0 4px rgba(71,26,26,.10);
  }

  .btnPrimary{
    display:inline-flex;
    justify-content:center;
    align-items:center;
    margin-top: 12px;
    padding: 12px 16px;
    border-radius: 999px;
    background: rgba(71,26,26,.92);
    color:#fff;
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 14px 40px rgba(42,20,20,.16);
    font-weight: 800;
    letter-spacing:.08em;
    text-decoration:none;
  }
  .btnPrimary--full{ width: 100%; }

  .btnGhost{
    display:inline-flex;
    justify-content:center;
    align-items:center;
    margin-top: 10px;
    padding: 12px 16px;
    border-radius: 999px;
    background: rgba(71,26,26,.10);
    color: var(--vino);
    border: 1px solid rgba(71,26,26,.22);
    text-decoration:none;
    font-weight: 900;
    letter-spacing:.06em;
  }
  .btnGhost--full{ width: 100%; }

  .toast{
    margin-top: 10px;
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(0,0,0,.08);
    border: 1px solid rgba(71,26,26,.14);
    display:none;
    color: rgba(34,34,34,.92);
    font-weight: 700;
  }
  .toast.show{ display:block; }
  .toast.is-error{
    background: rgba(200,0,0,.06);
    border-color: rgba(200,0,0,.18);
  }

  .backTop{
    margin-top: 12px;
    display:inline-block;
    color: var(--vino);
    opacity:.95;
    text-decoration:none;
    border-bottom: 1px solid rgba(71,26,26,.30);
    padding-bottom: 2px;
  }

  /* Decor */
  .coverDecor{
    position:absolute;
    inset:0;
    pointer-events:none;
    opacity: .85;
  }
  .bars{
    position:absolute;
    width: 90px;
    height: 90px;
    background:
      linear-gradient(90deg, transparent 0 30%, rgba(230,178,119,.95) 30% 52%, transparent 52% 100%),
      linear-gradient(90deg, transparent 0 42%, rgba(230,178,119,.75) 42% 64%, transparent 64% 100%),
      linear-gradient(90deg, transparent 0 54%, rgba(230,178,119,.55) 54% 76%, transparent 76% 100%);
    transform: rotate(22deg);
    border-radius: 16px;
  }
  .bars--tl{ top: 10px; left: 10px; }
  .bars--br{ bottom: 10px; right: 10px; transform: rotate(22deg); }

  @media (prefers-reduced-motion: reduce){
    html{ scroll-behavior: auto; }
    .logoFade{ animation: none; opacity: 1; transform: none; }
    .js-page{ transition: none; opacity: 1; transform: none; }
    .js-page .photoAngle,
    .js-page .textBlock,
    .js-page .clientsViewport,
    .js-page .centerBlock,
    .js-page .clientsHeader{
      transition:none;
      opacity:1;
      transform:none;
    }
  }
}