/* ==========================================================================
   Agriturismo Etico Le Grazie, demo redesign
   ========================================================================== */

:root {
  /* Brand, taken from the existing logo (forest green + harvest gold) */
  --green-900: #10291A;
  --green-800: #16371F;
  --green-700: #1D4A2B;
  --green-600: #2A6B3D;
  --gold-600:  #A8821C;
  --gold-500:  #C9A227;
  --gold-400:  #DFBE55;

  --cream:     #FBF8F2;
  --cream-2:   #F4EEE2;
  --stone:     #E5DCCB;
  --ink:       #23211D;
  --ink-soft:  #5C574E;
  --white:     #FFFFFF;

  --radius: 4px;

  --display: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --wrap: 1220px;
  --gutter: clamp(20px, 5vw, 56px);
  --header-h: 76px;

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
figure { margin: 0; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; border: 0; background: none; cursor: pointer; }
h1, h2, h3, h4 { margin: 0; font-family: var(--display); font-weight: 500; line-height: 1.1; letter-spacing: -.01em; }
p { margin: 0; }
:focus-visible { outline: 2px solid var(--gold-500); outline-offset: 3px; }

/* ---------- layout helpers ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 9vw, 120px); }
.section--tight { padding-block: clamp(48px, 6vw, 84px); }

.eyebrow {
  display: block;
  font-size: 13px; font-weight: 500; letter-spacing: .06em;
  color: var(--gold-600);
}

.h-xl { font-size: clamp(2.5rem, 6vw, 4.4rem); }
.h-l  { font-size: clamp(2rem, 4vw, 3.1rem); }
.lead { font-size: clamp(1.02rem, 1.25vw, 1.12rem); color: var(--ink-soft); line-height: 1.65; }

.section-head { max-width: 640px; }
.section-head .lead { margin-top: 14px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 24px; border-radius: var(--radius); border: 1px solid transparent;
  font-size: 14.5px; font-weight: 600;
  transition: background-color .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
  white-space: nowrap;
}
.btn--primary { background: var(--gold-500); color: var(--green-900); }
.btn--primary:hover { background: var(--gold-400); }

.btn--green { background: var(--green-700); color: #fff; }
.btn--green:hover { background: var(--green-600); }

.btn--ghost { border-color: rgba(255,255,255,.8); color: #fff; }
.btn--ghost:hover { background: #fff; color: var(--green-900); }

.btn--outline { border-color: rgba(35,33,29,.35); color: var(--ink); }
.btn--outline:hover { border-color: var(--green-700); color: var(--green-700); }

.btn--lg { padding: 15px 30px; font-size: 15px; }
.btn--block { width: 100%; }

/* phone number copied on computers (see site.js) */
a[data-copied] { position: relative; }
a[data-copied]::after {
  content: attr(data-copied);
  position: absolute; left: 50%; top: calc(100% + 8px); transform: translateX(-50%);
  z-index: 5; pointer-events: none; white-space: nowrap;
  background: var(--green-900); color: #fff;
  font: 500 12.5px/1 var(--sans); letter-spacing: 0; text-transform: none;
  padding: 8px 10px; border-radius: var(--radius);
}
.sticky-cta a[data-copied]::after { top: auto; bottom: calc(100% + 8px); }

/* ==========================================================================
   Header
   ========================================================================== */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background-color .3s var(--ease), box-shadow .3s var(--ease);
}
.header::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to bottom, rgba(16,41,26,.5), rgba(16,41,26,0));
  transition: opacity .3s var(--ease);
}
.header.is-solid { background: var(--cream); box-shadow: 0 1px 0 rgba(35,33,29,.1); }
.header.is-solid::before { opacity: 0; }

.header__inner { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); display: flex; align-items: center; gap: 28px; }

.brand { display: flex; align-items: center; margin-right: auto; }
.brand img { height: 52px; width: auto; filter: brightness(0) invert(1); }
.header.is-solid .brand img { filter: none; }

.nav { display: flex; align-items: center; gap: 30px; }
.nav a { font-size: 14px; font-weight: 500; color: #fff; padding-block: 4px; border-bottom: 1px solid transparent; transition: border-color .2s var(--ease); }
.nav a:hover { border-color: currentColor; }
.header.is-solid .nav a { color: var(--ink); }
.nav a.is-active { border-color: currentColor; }

.header__cta { display: flex; align-items: center; gap: 16px; }
.header__tel { font-size: 14px; font-weight: 600; color: #fff; }
.header.is-solid .header__tel { color: var(--green-800); }

.lang { display: flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 600; color: rgba(255,255,255,.75); }
.lang a.is-active { color: #fff; }
.lang span { opacity: .45; }
.header.is-solid .lang { color: var(--ink-soft); }
.header.is-solid .lang a.is-active { color: var(--green-700); }

.burger { display: none; width: 42px; height: 42px; align-items: center; justify-content: center; }
.burger span { display: block; width: 20px; height: 1.5px; background: #fff; position: relative; }
.burger span::before, .burger span::after { content: ""; position: absolute; left: 0; width: 20px; height: 1.5px; background: inherit; }
.burger span::before { top: -6px; } .burger span::after { top: 6px; }
.header.is-solid .burger span { background: var(--ink); }

/* mobile menu */
.mobile-nav {
  position: fixed; inset: 0; z-index: 70; background: var(--green-900);
  display: flex; flex-direction: column; padding: 26px var(--gutter) 34px;
  transform: translateX(100%); transition: transform .35s var(--ease); visibility: hidden;
}
.mobile-nav.is-open { transform: none; visibility: visible; }
.mobile-nav__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 40px; }
.mobile-nav__top img { height: 38px; filter: brightness(0) invert(1); }
.mobile-nav__close { color: #fff; font-size: 30px; line-height: 1; width: 42px; height: 42px; }
.mobile-nav nav { display: flex; flex-direction: column; }
.mobile-nav nav a { font-family: var(--display); font-size: 2rem; color: #fff; padding-block: 10px; border-bottom: 1px solid rgba(255,255,255,.12); }
.mobile-nav__foot { margin-top: auto; padding-top: 30px; display: grid; gap: 12px; }
.mobile-nav__foot .lang { color: rgba(255,255,255,.6); justify-content: center; padding-top: 8px; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { position: relative; min-height: min(86svh, 800px); display: flex; flex-direction: column; justify-content: flex-end; isolation: isolate; }
.hero__media { position: absolute; inset: 0; z-index: -2; overflow: hidden; background: var(--green-900); }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, rgba(16,41,26,.82) 0%, rgba(16,41,26,.35) 48%, rgba(16,41,26,.15) 100%);
}
.hero__inner { padding-top: calc(var(--header-h) + 60px); padding-bottom: clamp(48px, 7vw, 88px); }
.hero__place { color: #fff; font-size: 15px; font-weight: 500; }
.hero h1 { color: #fff; margin-block: 14px 18px; max-width: 20ch; }
.hero h1 em { font-style: italic; color: var(--gold-400); }
.hero__sub { color: rgba(255,255,255,.92); font-size: clamp(1.02rem, 1.4vw, 1.15rem); max-width: 48ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

/* ==========================================================================
   Why
   ========================================================================== */
.why__grid { display: grid; gap: 40px; grid-template-columns: repeat(3, 1fr); margin-top: 44px; }
.why-item { border-top: 1px solid var(--stone); padding-top: 22px; }
.why-item h3 { font-size: 1.55rem; margin-bottom: 10px; }
.why-item p { font-size: 15px; color: var(--ink-soft); line-height: 1.65; }

/* ==========================================================================
   Rooms
   ========================================================================== */
.rooms { background: var(--cream-2); }
.rooms__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.rooms__grid { display: grid; gap: 32px; grid-template-columns: repeat(3, 1fr); margin-top: 44px; }
.room__media { aspect-ratio: 16 / 10; overflow: hidden; border-radius: var(--radius); background: var(--stone); }
.room__media img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.room__title { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; margin-top: 18px; }
.room__title h3 { font-size: 1.5rem; }
.room__price { font-family: var(--display); font-size: 1.5rem; font-weight: 600; color: var(--green-700); white-space: nowrap; }
.room__desc { font-size: 15px; color: var(--ink-soft); margin-top: 6px; }

/* ==========================================================================
   Ethical project
   ========================================================================== */
.etico { background: var(--green-900); color: #fff; }
.etico__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(36px, 6vw, 84px); align-items: center; }
.etico h2 { color: #fff; }
.etico .lead { color: rgba(255,255,255,.78); margin-top: 18px; }
.pillars { margin-top: 36px; border-top: 1px solid rgba(255,255,255,.16); }
.pillar { padding-block: 20px; border-bottom: 1px solid rgba(255,255,255,.16); }
.pillar h4 { font-family: var(--sans); font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.pillar p { font-size: 14.5px; color: rgba(255,255,255,.72); line-height: 1.6; }

.etico__collage { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.etico__collage figure { overflow: hidden; border-radius: var(--radius); }
.etico__collage img { width: 100%; height: 100%; object-fit: cover; }
.etico__collage .tall { grid-row: span 2; }
.etico__collage .sq { aspect-ratio: 1; }

/* ==========================================================================
   Restaurant
   ========================================================================== */
.resto__hero { position: relative; border-radius: var(--radius); overflow: hidden; min-height: clamp(380px, 50vw, 560px); display: flex; align-items: flex-end; }
.resto__hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 45%; }
.resto__hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(16,41,26,.88), rgba(16,41,26,.3) 55%, rgba(16,41,26,.05)); }
.resto__hero-body { position: relative; z-index: 2; padding: clamp(28px, 5vw, 54px); max-width: 640px; color: #fff; }
.resto__hero-body h2 { color: #fff; margin-block: 10px 14px; }
.resto__hero-body p { color: rgba(255,255,255,.9); font-size: clamp(1rem, 1.3vw, 1.08rem); line-height: 1.65; }
.resto__hero-body .eyebrow { color: var(--gold-400); }

.resto__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 24px; }
.resto__card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); }
.resto__card figcaption { margin-top: 10px; font-size: 14.5px; color: var(--ink-soft); }

/* ==========================================================================
   Location
   ========================================================================== */
.place { background: var(--cream-2); }
.place__grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.place__visual img { border-radius: var(--radius); aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.place__credit { margin-top: 10px; font-size: 12px; color: var(--ink-soft); }
.place__credit a { text-decoration: underline; text-underline-offset: 2px; }
.place .lead { margin-top: 14px; }

.distances { margin-top: 30px; border-top: 1px solid var(--stone); }
.distance { display: grid; grid-template-columns: 1fr auto; gap: 16px; align-items: baseline; padding-block: 16px; border-bottom: 1px solid var(--stone); }
.distance h4 { font-family: var(--sans); font-size: 15px; font-weight: 600; margin-bottom: 2px; }
.distance p { font-size: 14px; color: var(--ink-soft); }
.distance b { font-family: var(--display); font-size: 1.3rem; color: var(--green-700); white-space: nowrap; }

/* ==========================================================================
   Photo strip
   ========================================================================== */
.strip { display: grid; grid-template-columns: repeat(5, 1fr); }
.strip img { width: 100%; aspect-ratio: 1; object-fit: cover; }

/* ==========================================================================
   Enquiry / contact
   ========================================================================== */
.book { background: var(--green-800); color: #fff; }
.book__grid { display: grid; grid-template-columns: 1fr auto; gap: clamp(32px, 5vw, 70px); align-items: center; }
.book h2 { color: #fff; margin-bottom: 14px; }
.book p { color: rgba(255,255,255,.8); max-width: 46ch; font-size: 1.05rem; }

.book__panel { background: var(--cream); color: var(--ink); border-radius: var(--radius); padding: 30px; width: min(420px, 100%); }
.book__panel h3 { font-size: 1.55rem; margin-bottom: 16px; }
.tel-big { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--stone); }
.tel-big:first-of-type { border-top: 1px solid var(--stone); }
.tel-big span { font-size: 13px; color: var(--ink-soft); }
.tel-big b { font-family: var(--display); font-size: 1.45rem; font-weight: 600; color: var(--green-800); }
.tel-big:hover b { color: var(--green-600); }
.book__panel .btn { margin-top: 20px; }
.book__panel .book__hours { margin-top: 16px; font-size: 13px; color: var(--ink-soft); line-height: 1.6; max-width: none; }
.book__hours a { text-decoration: underline; text-underline-offset: 2px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { background: var(--green-900); color: rgba(255,255,255,.66); padding-block: clamp(52px, 6vw, 76px) 0; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 40px; }
.footer img.logo { height: 46px; filter: brightness(0) invert(1); margin-bottom: 18px; }
.footer p { font-size: 14px; line-height: 1.66; }
.footer h4 { font-family: var(--sans); font-size: 13px; font-weight: 600; color: #fff; margin-bottom: 14px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.footer a { font-size: 14px; transition: color .2s; }
.footer a:hover { color: var(--gold-400); }
.footer__map { margin-top: 14px; }
.socials { display: flex; gap: 10px; margin-top: 18px; }
.socials a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,.22); display: grid; place-items: center; }
.socials a:hover { border-color: var(--gold-400); }
.socials svg { width: 16px; height: 16px; }
.footer__bottom { margin-top: clamp(40px, 5vw, 60px); border-top: 1px solid rgba(255,255,255,.12); padding-block: 22px; display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between; font-size: 12.5px; }
.footer__demo { color: var(--gold-400); }

/* ==========================================================================
   Sticky mobile action bar
   ========================================================================== */
.sticky-cta {
  position: fixed; inset: auto 0 0 0; z-index: 55;
  display: none; gap: 10px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: var(--cream); border-top: 1px solid var(--stone);
  transform: translateY(110%); transition: transform .35s var(--ease);
}
.sticky-cta.is-visible { transform: none; }
.sticky-cta .btn { flex: 1; padding: 13px 10px; font-size: 14px; }

/* ==========================================================================
   Enquiry drawer
   ========================================================================== */
.drawer-backdrop { position: fixed; inset: 0; z-index: 80; background: rgba(16,41,26,.5); opacity: 0; visibility: hidden; transition: opacity .3s var(--ease), visibility .3s; }
.drawer-backdrop.is-open { opacity: 1; visibility: visible; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 90;
  width: min(460px, 100%); background: var(--cream);
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .4s var(--ease);
}
.drawer.is-open { transform: none; }
.drawer__head { padding: 26px 28px 18px; border-bottom: 1px solid var(--stone); display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; }
.drawer__head h3 { font-size: 1.7rem; margin-bottom: 4px; }
.drawer__head p { font-size: 14px; color: var(--ink-soft); }
.drawer__close { font-size: 26px; line-height: 1; color: var(--ink-soft); width: 36px; height: 36px; flex: none; }
.drawer__body { padding: 24px 28px 30px; overflow-y: auto; flex: 1; }
.field { display: grid; gap: 6px; margin-bottom: 16px; }
.field label { font-size: 13px; font-weight: 600; color: var(--ink); }
.field input, .field select, .field textarea { font: inherit; font-size: 15px; padding: 12px 13px; border: 1px solid #D9CFBC; border-radius: var(--radius); background: var(--white); color: var(--ink); width: 100%; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--green-600); outline: none; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 16px; }
.field--row .field { margin-bottom: 0; }

.summary { border-top: 1px solid var(--stone); border-bottom: 1px solid var(--stone); padding: 14px 0; margin-bottom: 20px; display: grid; gap: 8px; }
.summary__row { display: flex; justify-content: space-between; gap: 14px; font-size: 14px; }
.summary__row span { color: var(--ink-soft); }
.summary__row b { font-weight: 600; }
.summary__hint { font-size: 13px; color: var(--ink-soft); }

.drawer__actions { display: grid; gap: 10px; }
.contact-line { display: flex; align-items: center; gap: 12px; padding: 13px 16px; border-radius: var(--radius); background: var(--white); border: 1px solid #D9CFBC; }
.contact-line:hover { border-color: var(--green-600); }
.contact-line svg { width: 20px; height: 20px; color: var(--green-700); flex: none; }
.contact-line b { display: block; font-size: 14.5px; font-weight: 600; }
.contact-line span span { display: block; font-size: 12.5px; color: var(--ink-soft); }

/* ==========================================================================
   Interior page (camere)
   ========================================================================== */
.page-hero { position: relative; min-height: clamp(420px, 50vw, 560px); display: flex; align-items: flex-end; isolation: isolate; }
.page-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.page-hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(to top, rgba(16,41,26,.85), rgba(16,41,26,.3) 55%, rgba(16,41,26,.45)); }
.page-hero__body { padding-block: calc(var(--header-h) + 40px) clamp(40px, 6vw, 72px); color: #fff; }
.page-hero__body h1 { color: #fff; margin-block: 16px 14px; }
.page-hero__body p { color: rgba(255,255,255,.9); font-size: clamp(1rem, 1.4vw, 1.12rem); max-width: 56ch; }
.breadcrumb { font-size: 13px; color: rgba(255,255,255,.75); }
.breadcrumb a:hover { color: #fff; }

.roomlist { display: grid; gap: clamp(36px, 5vw, 64px); margin-top: 48px; }
.roomrow { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(24px, 4vw, 56px); align-items: center; }
.roomrow:nth-child(even) .roomrow__media { order: 2; }
.roomrow__media { aspect-ratio: 16 / 10; overflow: hidden; border-radius: var(--radius); background: var(--stone); }
.roomrow__media img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.roomrow h3 { font-size: clamp(1.7rem, 2.6vw, 2.2rem); }
.roomrow__meta { margin-top: 8px; font-size: 14px; color: var(--ink-soft); }
.roomrow__meta b { font-family: var(--display); font-size: 1.6rem; color: var(--green-700); margin-right: 6px; }
.roomrow p.desc { margin-top: 12px; color: var(--ink-soft); font-size: 15.5px; }
.roomrow__foot { display: flex; gap: 10px; margin-top: 24px; flex-wrap: wrap; }

.infogrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; margin-top: 36px; }
.infocard { border-top: 1px solid #D9CFBC; padding-top: 20px; }
.infocard h4 { font-family: var(--sans); font-size: 15px; font-weight: 600; color: var(--green-700); margin-bottom: 10px; }
.infocard ul { margin: 0; padding-left: 18px; display: grid; gap: 6px; }
.infocard li { font-size: 15px; color: var(--ink-soft); }

/* demo ribbon */
.demo-flag { position: fixed; left: 0; bottom: 0; z-index: 40; background: var(--ink); color: var(--cream); font-size: 11.5px; font-weight: 600; padding: 6px 12px; opacity: .85; }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px) {
  .rooms__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 920px) {
  .nav, .header__tel { display: none; }
  .burger { display: flex; }
  .header__cta .btn { padding: 10px 16px; font-size: 13.5px; }
  .header__cta .lang { display: none; }

  .why__grid { grid-template-columns: 1fr; gap: 28px; }
  .etico__grid, .place__grid, .book__grid { grid-template-columns: 1fr; }
  .etico__collage { order: -1; }
  .book__panel { width: 100%; }
  .resto__grid { grid-template-columns: 1fr 1fr; }

  .roomrow { grid-template-columns: 1fr; gap: 20px; }
  .roomrow:nth-child(even) .roomrow__media { order: 0; }
  .infogrid { grid-template-columns: 1fr; gap: 28px; }
  .strip { grid-template-columns: repeat(3, 1fr); }
  .strip figure:nth-child(n+4) { display: none; }

  .sticky-cta { display: flex; }
  .demo-flag { display: none; }
}

@media (max-width: 620px) {
  :root { --header-h: 66px; }
  .brand img { height: 44px; }
  .header__cta .btn { display: none; }
  .rooms__grid, .resto__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .hero { min-height: 82svh; }
  .hero__actions .btn { flex: 1; }
  .strip { grid-template-columns: repeat(2, 1fr); }
  .strip figure:nth-child(n+3) { display: none; }
  .footer__bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
