/* ==========================================================================
   AgTech Pacific — 2026 site redesign
   Modern, responsive stylesheet
   ========================================================================== */

:root {
  /* Brand palette — Hawaiian agriculture + water/irrigation */
  --green-900: #0c2a19;
  --green-800: #123d24;
  --green-700: #17532f;
  --green-600: #1f7a44;   /* primary */
  --green-500: #2f9e57;
  --green-050: #eef6ef;
  --water-700: #0b7d8c;
  --water-600: #0ea5b7;   /* accent */
  --water-050: #e6f6f8;
  --sand:      #f6f2e9;
  --sand-deep: #efe8d8;
  --ink:       #16241d;
  --body:      #384a41;
  --muted:     #6a7a70;
  --line:      #e3e7e2;
  --white:     #ffffff;

  --maxw: 1180px;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(16,40,28,.06), 0 2px 8px rgba(16,40,28,.05);
  --shadow-md: 0 8px 24px rgba(16,40,28,.10);
  --shadow-lg: 0 20px 50px rgba(16,40,28,.16);

  --font-head: 'Sora', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--body);
  background: var(--white);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-600); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--green-700); }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 .5em;
  font-weight: 700;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1.1em; }
ul { margin: 0 0 1.1em; padding-left: 1.2em; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 84px 0; }
.section--tight { padding: 60px 0; }
.section--sand { background: var(--sand); }
.section--green { background: var(--green-800); color: #dfeee4; }
.section--green h2, .section--green h3 { color: #fff; }
.center { text-align: center; }
.narrow { max-width: 760px; margin-left: auto; margin-right: auto; }
.lead { font-size: 1.2rem; color: var(--body); }
.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 14px;
}
.section--green .eyebrow { color: var(--water-600); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5em;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, background .15s ease, box-shadow .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--green-600); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--green-700); color: #fff; box-shadow: var(--shadow-md); }
.btn-accent { background: var(--water-600); color: #04333a; }
.btn-accent:hover { background: var(--water-700); color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--green-600); color: var(--green-700); }
.btn-light { background: #fff; color: var(--green-700); }
.btn-light:hover { background: var(--sand); color: var(--green-800); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn-outline-light:hover { background: rgba(255,255,255,.12); color: #fff; border-color: #fff; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand__mark {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  overflow: hidden; box-shadow: var(--shadow-sm);
}
.brand__mark img { width: 100%; height: 100%; object-fit: cover; display: block; }
.brand__name { font-family: var(--font-head); font-weight: 800; font-size: 1.15rem; color: var(--ink); letter-spacing: -.01em; line-height: 1; }
.brand__tag { display: block; font-family: var(--font-body); font-weight: 500; font-size: .68rem; letter-spacing: .13em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }

.nav__links { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav__links a {
  font-family: var(--font-head); font-weight: 500; font-size: .95rem;
  color: var(--body); padding: 9px 13px; border-radius: 8px; display: block;
}
.nav__links a:hover { color: var(--green-700); background: var(--green-050); }
.nav__links a.active { color: var(--green-700); background: var(--green-050); }
.nav__cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav__phone { font-family: var(--font-head); font-weight: 600; color: var(--ink); font-size: .95rem; white-space: nowrap; }
.nav__phone:hover { color: var(--green-700); }

.nav__search-btn {
  width: 44px; height: 44px; border: 1px solid var(--line); background: #fff;
  border-radius: 10px; cursor: pointer; display: grid; place-items: center; color: var(--ink);
  flex-shrink: 0; transition: border-color .15s ease, color .15s ease, background .15s ease;
}
.nav__search-btn:hover { border-color: var(--green-600); color: var(--green-700); background: var(--green-050); }
.nav__search-btn svg { width: 20px; height: 20px; }

/* Search overlay */
.search-overlay {
  position: fixed; inset: 0; z-index: 90; background: rgba(9,20,14,.55);
  backdrop-filter: blur(4px); display: none; align-items: flex-start; justify-content: center;
  padding: 12vh 20px 20px;
}
.search-overlay.open { display: flex; }
.search-panel {
  width: 100%; max-width: 620px; background: #fff; border-radius: 16px;
  box-shadow: var(--shadow-lg); overflow: hidden; animation: searchIn .18s ease;
}
@keyframes searchIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: none; } }
.search-panel__input { display: flex; align-items: center; gap: 12px; padding: 18px 20px; border-bottom: 1px solid var(--line); }
.search-panel__input svg { width: 22px; height: 22px; color: var(--muted); flex-shrink: 0; }
.search-panel__input input { flex: 1; border: 0; outline: 0; font-family: var(--font-body); font-size: 1.15rem; color: var(--ink); background: transparent; }
.search-panel__esc { font-size: .7rem; font-family: var(--font-head); color: var(--muted); border: 1px solid var(--line); border-radius: 6px; padding: 3px 8px; }
.search-results { list-style: none; margin: 0; padding: 8px; max-height: 52vh; overflow-y: auto; }
.search-results li a {
  display: block; padding: 13px 16px; border-radius: 10px; color: var(--ink); text-decoration: none;
}
.search-results li a:hover, .search-results li a.active { background: var(--green-050); }
.search-results .r-title { display: block; font-family: var(--font-head); font-weight: 600; font-size: 1rem; color: var(--ink); }
.search-results .r-desc { display: block; font-size: .88rem; color: var(--muted); margin-top: 3px; }
.search-results .r-empty { padding: 22px 16px; color: var(--muted); text-align: center; }

.nav__toggle {
  display: none; width: 46px; height: 46px; border: 1px solid var(--line); background: #fff;
  border-radius: 10px; cursor: pointer; padding: 0; position: relative;
}
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after {
  content: ''; position: absolute; left: 50%; width: 20px; height: 2px; background: var(--ink);
  transform: translateX(-50%); transition: .2s ease;
}
.nav__toggle span { top: 50%; margin-top: -1px; }
.nav__toggle span::before { top: -6px; }
.nav__toggle span::after { top: 6px; }
.nav__toggle.open span { background: transparent; }
.nav__toggle.open span::before { transform: translateX(-50%) rotate(45deg); top: 0; }
.nav__toggle.open span::after { transform: translateX(-50%) rotate(-45deg); top: 0; }

/* ---------- Hero ---------- */
.hero {
  position: relative; color: #fff; overflow: hidden;
  background: var(--green-900);
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(12,42,25,.90) 0%, rgba(12,42,25,.68) 45%, rgba(11,125,140,.45) 100%);
}
.hero__inner { position: relative; z-index: 1; padding: 120px 0 128px; max-width: 760px; }
.hero h1 { color: #fff; margin-bottom: 20px; }
.hero p { font-size: 1.25rem; color: #e7f1ea; margin-bottom: 32px; max-width: 620px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 22px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22);
  padding: 7px 15px; border-radius: 999px; font-size: .85rem; font-weight: 500;
  font-family: var(--font-head); letter-spacing: .02em;
}
.hero__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--water-600); }

/* ---------- Page banner (interior pages) ---------- */
.page-banner { position: relative; color: #fff; background: var(--green-800); overflow: hidden; }
.page-banner__bg { position: absolute; inset: 0; z-index: 0; }
.page-banner__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-banner__bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(12,42,25,.88), rgba(11,125,140,.55)); }
.page-banner__inner { position: relative; z-index: 1; padding: 84px 0 76px; }
.page-banner h1 { color: #fff; margin-bottom: 12px; }
.page-banner p { color: #e2efe7; font-size: 1.15rem; margin: 0; max-width: 640px; }
.breadcrumb { font-size: .85rem; color: #bcd7c6; margin-bottom: 16px; font-family: var(--font-head); letter-spacing: .04em; }
.breadcrumb a { color: #bcd7c6; }
.breadcrumb a:hover { color: #fff; }

/* ---------- Stat strip ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; }
.stat__num { font-family: var(--font-head); font-weight: 800; font-size: 2.6rem; color: var(--green-600); line-height: 1; letter-spacing: -.03em; }
.section--green .stat__num { color: var(--water-600); }
.stat__label { font-size: .95rem; color: var(--muted); margin-top: 8px; }
.section--green .stat__label { color: #bcd0c4; }

/* ---------- Feature grid / cards ---------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card__icon {
  width: 52px; height: 52px; border-radius: 13px; display: grid; place-items: center;
  background: var(--green-050); color: var(--green-600); margin-bottom: 18px;
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 8px; }
.card p { margin-bottom: 0; color: var(--body); font-size: .98rem; }

/* ---------- Split / media rows ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split--media-right { grid-template-columns: 1fr 1fr; }
.split__media img { border-radius: var(--radius); box-shadow: var(--shadow-md); width: 100%; object-fit: cover; }
.split ul.checks { list-style: none; padding: 0; }
.split ul.checks li { position: relative; padding-left: 32px; margin-bottom: 12px; color: var(--body); }
.split ul.checks li::before {
  content: ''; position: absolute; left: 0; top: 4px; width: 20px; height: 20px; border-radius: 50%;
  background: var(--green-050) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%231f7a44' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/12px no-repeat;
}

/* ---------- Team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.member { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .18s ease; }
.member:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.member__photo { aspect-ratio: 1 / 1; overflow: hidden; background: var(--sand); }
.member__photo img { width: 100%; height: 100%; object-fit: cover; }
.member__avatar {
  width: 100%; height: 100%; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--green-600), var(--water-600));
  color: #fff; font-family: var(--font-head); font-weight: 800; font-size: 3.4rem; letter-spacing: .02em;
}
.member__body { padding: 22px 24px 26px; }
.member__name { font-family: var(--font-head); font-weight: 700; font-size: 1.2rem; color: var(--ink); margin: 0 0 2px; }
.member__role { color: var(--green-600); font-weight: 600; font-size: .9rem; font-family: var(--font-head); letter-spacing: .02em; margin-bottom: 12px; }
.member__bio { font-size: .95rem; color: var(--body); margin: 0; }

/* ---------- Products / distributors ---------- */
.logo-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.logo-tile {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  aspect-ratio: 3 / 2; display: grid; place-items: center; padding: 22px;
  box-shadow: var(--shadow-sm); transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.logo-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--green-500); }
.logo-tile img { max-height: 74px; width: auto; object-fit: contain; filter: saturate(1); }
.logo-tile--dark { background: var(--green-800); border-color: var(--green-700); }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-item {
  position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer;
  aspect-ratio: 4 / 3; box-shadow: var(--shadow-sm); background: var(--sand);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item__cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 40px 18px 16px;
  background: linear-gradient(transparent, rgba(12,42,25,.86)); color: #fff;
  font-size: .92rem; font-family: var(--font-head); font-weight: 500;
  transform: translateY(6px); opacity: 0; transition: .25s ease;
}
.gallery-item:hover .gallery-item__cap { transform: translateY(0); opacity: 1; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 100; background: rgba(9,20,14,.92); display: none; align-items: center; justify-content: center; padding: 32px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 82vh; border-radius: 10px; box-shadow: var(--shadow-lg); }
.lightbox__cap { position: absolute; bottom: 26px; left: 0; right: 0; text-align: center; color: #eaf3ee; font-family: var(--font-head); font-size: 1rem; }
.lightbox__close, .lightbox__nav { position: absolute; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25); color: #fff; width: 50px; height: 50px; border-radius: 50%; cursor: pointer; font-size: 1.5rem; display: grid; place-items: center; transition: background .15s ease; }
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(255,255,255,.26); }
.lightbox__close { top: 24px; right: 24px; }
.lightbox__nav { top: 50%; transform: translateY(-50%); }
.lightbox__nav--prev { left: 24px; }
.lightbox__nav--next { right: 24px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: start; }
.info-list { list-style: none; padding: 0; margin: 0; }
.info-list li { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.info-list li:last-child { border-bottom: 0; }
.info-list .ico { width: 44px; height: 44px; border-radius: 11px; background: var(--green-050); color: var(--green-600); display: grid; place-items: center; flex-shrink: 0; }
.info-list .ico svg { width: 22px; height: 22px; }
.info-list li > span:last-child { display: flex; flex-direction: column; }
.info-list .lbl { display: block; font-family: var(--font-head); font-weight: 600; color: var(--ink); font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 3px; }
.info-list .val { display: block; }
.info-list .val { color: var(--body); }
.info-list .val a { color: var(--body); }
.info-list .val a:hover { color: var(--green-700); }

.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow-md); }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-head); font-weight: 600; font-size: .85rem; color: var(--ink); margin-bottom: 7px; }
.field input, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 10px;
  font-family: var(--font-body); font-size: 1rem; color: var(--ink); background: #fdfdfb; transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--green-500); box-shadow: 0 0 0 3px rgba(47,158,87,.15); }
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: .82rem; color: var(--muted); margin-top: 10px; }
.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line); }
.map-embed iframe { display: block; width: 100%; height: 380px; border: 0; }

/* ---------- Hours table ---------- */
.hours-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 12px 26px; box-shadow: var(--shadow-sm); }
.hours-row { display: flex; justify-content: space-between; padding: 13px 0; border-bottom: 1px solid var(--line); }
.hours-row:last-child { border-bottom: 0; }
.hours-row .day { font-family: var(--font-head); font-weight: 600; color: var(--ink); }
.hours-row .time { color: var(--body); }
.hours-row.closed .time { color: var(--muted); }
.pill { display: inline-block; background: var(--green-050); color: var(--green-700); font-size: .78rem; font-weight: 600; font-family: var(--font-head); padding: 3px 11px; border-radius: 999px; }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(120deg, var(--green-700), var(--water-700)); color: #fff; border-radius: 20px; padding: 56px; text-align: center; box-shadow: var(--shadow-lg); }
.cta-band h2 { color: #fff; margin-bottom: 12px; }
.cta-band p { color: #dff0e7; font-size: 1.15rem; max-width: 560px; margin: 0 auto 26px; }
.cta-band .hero__actions { justify-content: center; }

/* ---------- Footer ---------- */
.site-footer { background: var(--green-900); color: #a9c2b3; padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 44px; }
.site-footer h4 { color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 18px; }
.site-footer a { color: #a9c2b3; }
.site-footer a:hover { color: #fff; }
.footer-brand .brand__name { color: #fff; }
.footer-brand .brand__tag { color: #7fa08d; }
.footer-brand p { margin-top: 16px; font-size: .95rem; color: #94b1a1; max-width: 300px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 11px; font-size: .95rem; }
.footer-badges { display: flex; gap: 12px; margin-top: 16px; flex-wrap: wrap; }
.footer-badges img { background: #fff; border-radius: 8px; padding: 7px; height: 54px; width: auto; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 22px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: .85rem; color: #7fa08d; }
.footer-bottom a { color: #7fa08d; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .nav__links, .nav__phone { display: none; }
  .nav__toggle { display: block; }
  .nav.open .nav__links {
    display: flex; flex-direction: column; align-items: stretch; gap: 2px;
    position: absolute; top: 76px; left: 0; right: 0; background: #fff;
    border-bottom: 1px solid var(--line); padding: 14px 24px 22px; box-shadow: var(--shadow-md);
  }
  .nav.open .nav__links a { padding: 13px 12px; font-size: 1.05rem; }
  .grid-3, .grid-4, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .logo-grid { grid-template-columns: repeat(4, 1fr); }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 34px; }
  .split__media { order: -1; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .nav__cta .btn { display: none; }
  .brand__tag { display: none; }
  .section { padding: 60px 0; }
  .grid-2, .grid-3, .grid-4, .team-grid { grid-template-columns: 1fr; }
  .logo-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 40px 24px; }
  .hero__inner { padding: 80px 0 88px; }
  .hero__actions .btn, .cta-band .btn { flex: 1 1 auto; justify-content: center; }
  .gallery-item__cap { opacity: 1; transform: none; }
}
