@import url("https://fonts.googleapis.com/css2?family=Instrument+Sans:wght@400;500;600;700&family=Libre+Caslon+Display&display=swap");

/* =========================================================
   TICKLE LAW OFFICE — THE FRANKLIN COLLECTION
   Shared Design System
   ========================================================= */

:root {
  --ink: #102336;
  --ink-deep: #081725;
  --ink-soft: #263a4c;
  --stone: #eee8de;
  --stone-light: #f7f3ec;
  --paper: #ffffff;
  --paper-warm: #fcfaf6;
  --bronze: #a97b42;
  --bronze-dark: #7d572d;
  --sage: #788878;
  --sage-dark: #536552;
  --text: #26323a;
  --muted: #6b747b;
  --line: #dce1e3;
  --line-dark: rgba(255, 255, 255, 0.15);

  --shadow-soft: 0 18px 50px rgba(8, 23, 37, 0.12);
  --shadow-strong: 0 28px 75px rgba(8, 23, 37, 0.2);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;

  --container: 1240px;
  --header-height: 112px;

  --serif: "Libre Caslon Display", Georgia, "Times New Roman", serif;
  --sans: "Instrument Sans", Arial, Helvetica, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper-warm);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
picture,
svg,
video {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  color: var(--ink-deep);
  background: #e4cfaa;
}

:focus-visible {
  outline: 3px solid var(--bronze);
  outline-offset: 4px;
}

/* ---------- Typography ---------- */

h1,
h2,
h3,
h4 {
  margin: 0 0 0.65em;
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.05;
  text-wrap: balance;
}

h1 {
  font-size: clamp(3.25rem, 7vw, 7rem);
  letter-spacing: -0.045em;
}

h2 {
  font-size: clamp(2.35rem, 4.5vw, 4.75rem);
  letter-spacing: -0.035em;
}

h3 {
  font-size: clamp(1.45rem, 2.3vw, 2.25rem);
  letter-spacing: -0.02em;
}

h4 {
  font-size: 1.2rem;
}

p {
  margin: 0 0 1.25rem;
}

.lead {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.8vw, 1.3rem);
  line-height: 1.75;
}

.eyebrow {
  display: block;
  margin-bottom: 1rem;
  color: var(--bronze-dark);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow--light {
  color: #e3c899;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--bronze-dark);
  font-weight: 700;
  text-decoration: none;
}

.text-link::after {
  content: "→";
  transition: transform 180ms var(--ease);
}

.text-link:hover::after {
  transform: translateX(5px);
}

/* ---------- Layout ---------- */

.container {
  width: min(90%, var(--container));
  margin-inline: auto;
}

.container--narrow {
  width: min(90%, 880px);
  margin-inline: auto;
}

.section {
  position: relative;
  padding: clamp(5rem, 9vw, 9rem) 0;
}

.section--stone {
  background: var(--stone);
}

.section--paper {
  background: var(--paper);
}

.section--ink {
  color: #dce5ea;
  background: var(--ink-deep);
}

.section--ink h2,
.section--ink h3 {
  color: #fff;
}

.section-heading {
  max-width: 900px;
  margin-bottom: clamp(2.5rem, 5vw, 5rem);
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 6rem);
}

.split-heading > p {
  color: var(--muted);
  font-size: 1.08rem;
}

/* ---------- Buttons ---------- */

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.9rem 1.45rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 180ms var(--ease),
    box-shadow 180ms var(--ease),
    background-color 180ms ease,
    border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--bronze {
  color: #fff;
  background: var(--bronze);
  box-shadow: 0 12px 30px rgba(125, 87, 45, 0.22);
}

.button--bronze:hover {
  background: var(--bronze-dark);
  box-shadow: 0 18px 40px rgba(125, 87, 45, 0.3);
}

.button--ink {
  color: #fff;
  background: var(--ink);
}

.button--light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}

.button--light:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

/* ---------- Header ---------- */

.site-header {
  position: relative;
  z-index: 100;
  background: rgba(252, 250, 246, 0.96);
  border-bottom: 1px solid rgba(16, 35, 54, 0.08);
}

.site-header.is-sticky {
  position: sticky;
  top: 0;
  box-shadow: 0 10px 35px rgba(8, 23, 37, 0.1);
  backdrop-filter: blur(18px);
}

.utility-bar {
  color: #d8e1e6;
  background: var(--ink-deep);
  font-size: 0.84rem;
}

.utility-bar__inner {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.55rem 0;
}

.utility-bar a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 2rem;
}

.brand {
  width: 230px;
  flex: 0 0 auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
  margin-left: auto;
}

.main-nav > a,
.nav-group > button {
  padding: 0.5rem 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  font-weight: 600;
  text-decoration: none;
}

.main-nav > a:hover,
.nav-group > button:hover {
  color: var(--bronze-dark);
}

.nav-group {
  position: relative;
}

.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 16px);
  left: -18px;
  min-width: 250px;
  padding: 0.75rem;
  background: #fff;
  border: 1px solid rgba(16, 35, 54, 0.08);
  box-shadow: var(--shadow-soft);
}

.nav-group:hover .nav-dropdown,
.nav-group.is-open .nav-dropdown {
  display: grid;
}

.nav-dropdown a {
  padding: 0.8rem 0.9rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
}

.nav-dropdown a:hover {
  color: var(--bronze-dark);
  background: var(--stone-light);
}

.header-cta {
  flex: 0 0 auto;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 10px;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: min(810px, 90vh);
  overflow: hidden;
  color: #fff;
  background: var(--ink-deep);
}

.hero__media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 23, 37, 0.97) 0%, rgba(8, 23, 37, 0.82) 44%, rgba(8, 23, 37, 0.2) 100%),
    var(--hero-image, none) center / cover no-repeat;
}

.hero__inner {
  min-height: min(810px, 90vh);
  position: relative;
  display: flex;
  align-items: center;
}

.hero__copy {
  width: min(100%, 790px);
  padding: 5rem 0;
}

.hero h1 {
  color: #fff;
}

.hero__copy > p {
  max-width: 680px;
  color: #dbe4e9;
  font-size: clamp(1.08rem, 1.8vw, 1.3rem);
}

.hero__signature {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.8rem;
  margin-top: 2.5rem;
  color: #b8c5cd;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

/* ---------- Brand Signature ---------- */

.franklin-rule {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.franklin-rule::before {
  content: "";
  width: 52px;
  height: 2px;
  background: var(--bronze);
}

.arch-frame {
  position: relative;
  overflow: hidden;
  border-radius: 220px 220px var(--radius-sm) var(--radius-sm);
}

.arch-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Trust / Pillar Strip ---------- */

.pillar-strip {
  background: var(--stone);
  border-bottom: 1px solid #ded6ca;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.pillar {
  min-height: 150px;
  padding: 2rem;
  border-right: 1px solid #d8cfc1;
}

.pillar:last-child {
  border-right: 0;
}

.pillar__number {
  color: var(--bronze);
  font-weight: 700;
}

.pillar h3 {
  margin-top: 1rem;
  margin-bottom: 0.45rem;
  font-size: 1.35rem;
}

.pillar p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

/* ---------- Practice Areas ---------- */

.practice-layout {
  display: grid;
  gap: 2px;
  background: var(--ink-deep);
}

.practice-feature {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
}

.practice-feature__media {
  position: absolute;
  inset: 0;
  background: var(--image, none) center / cover no-repeat;
  transition: transform 700ms var(--ease);
}

.practice-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 23, 37, 0.08), rgba(8, 23, 37, 0.94));
}

.practice-feature__content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: clamp(1.75rem, 4vw, 3.2rem);
}

.practice-feature h3 {
  max-width: 620px;
  color: #fff;
  font-size: clamp(2rem, 4vw, 4rem);
}

.practice-feature p {
  max-width: 630px;
  color: #dbe4e9;
}

.practice-feature:hover .practice-feature__media {
  transform: scale(1.035);
}

.practice-layout--split {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.practice-layout--editorial {
  grid-template-columns: 1.25fr 0.75fr;
}

.practice-layout--editorial .practice-feature:first-child {
  grid-row: span 2;
  min-height: 880px;
}

/* ---------- Attorney Presentation ---------- */

.attorney-editorial {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 2.5rem);
}

.attorney-editorial__item {
  text-decoration: none;
}

.attorney-editorial__portrait {
  min-height: 510px;
  overflow: hidden;
  background: var(--stone);
}

.attorney-editorial__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms var(--ease);
}

.attorney-editorial__item:hover img {
  transform: scale(1.025);
}

.attorney-editorial__caption {
  padding: 1.4rem 0.25rem 0;
}

.attorney-editorial__caption h3 {
  margin-bottom: 0.35rem;
}

.attorney-editorial__caption span {
  color: var(--bronze-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ---------- Story / Image Offset ---------- */

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(3rem, 7vw, 8rem);
  align-items: center;
}

.story-layout--reverse {
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
}

.story-image {
  min-height: 620px;
  background: var(--image, none) center / cover no-repeat;
  box-shadow: var(--shadow-strong);
}

.story-copy {
  max-width: 660px;
}

.story-list {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.story-list > div {
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line);
}

.story-list strong,
.story-list span {
  display: block;
}

.story-list strong {
  color: var(--ink);
}

.story-list span {
  color: var(--muted);
}

/* ---------- Interior Hero ---------- */

.page-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--ink-deep);
}

.page-hero__media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(8, 23, 37, 0.98), rgba(16, 35, 54, 0.78)),
    var(--hero-image, none) center / cover no-repeat;
}

.page-hero__inner {
  min-height: 500px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 4rem;
  align-items: end;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.page-hero h1,
.page-hero p {
  color: #fff;
}

.page-hero__summary {
  color: #dce5ea;
  font-size: 1.12rem;
}

/* ---------- Interior Content ---------- */

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
}

.prose {
  max-width: 820px;
}

.prose > h2 {
  margin-top: 1.3em;
}

.prose > h2:first-child {
  margin-top: 0;
}

.detail-list {
  list-style: none;
  padding: 0;
  margin: 2.5rem 0;
  border-top: 1px solid var(--line);
}

.detail-list li {
  position: relative;
  padding: 1rem 0 1rem 2rem;
  border-bottom: 1px solid var(--line);
}

.detail-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--bronze);
}

.sidebar-card {
  position: sticky;
  top: 130px;
  padding: 2rem;
  color: #fff;
  background: var(--ink);
  box-shadow: var(--shadow-soft);
}

.sidebar-card h3 {
  color: #fff;
}

.sidebar-card p {
  color: #dbe4e9;
}

.sidebar-card .button {
  width: 100%;
  margin-top: 0.75rem;
}

/* ---------- Profile Page ---------- */

.profile-hero {
  color: #fff;
  background: var(--ink-deep);
}

.profile-hero__grid {
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(360px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(3rem, 7vw, 8rem);
  align-items: center;
  padding: 5rem 0;
}

.profile-portrait {
  min-height: 590px;
}

.profile-copy h1 {
  color: #fff;
}

.profile-copy p {
  max-width: 720px;
  color: #dbe4e9;
  font-size: 1.12rem;
}

.profile-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.profile-facts > section {
  padding: 2.2rem;
  background: #fff;
}

/* ---------- Blog ---------- */

.article-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.article-card {
  padding: 2.25rem;
  background: #fff;
  border: 1px solid var(--line);
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease);
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.article-card__category {
  color: var(--bronze-dark);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ---------- Forms / Consultation ---------- */

.consultation {
  padding: clamp(5rem, 8vw, 8rem) 0;
  background:
    linear-gradient(rgba(238, 232, 222, 0.94), rgba(238, 232, 222, 0.94)),
    var(--consult-image, none) center / cover no-repeat;
}

.consultation-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
}

.contact-form {
  padding: clamp(1.5rem, 4vw, 3rem);
  background: #fff;
  box-shadow: var(--shadow-strong);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-form label {
  display: block;
  margin-bottom: 1rem;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  display: block;
  width: 100%;
  margin-top: 0.45rem;
  padding: 0.9rem 1rem;
  border: 1px solid #ccd4d7;
  border-radius: 0;
  color: var(--text);
  background: #fff;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.form-consent {
  display: flex !important;
  align-items: flex-start;
  gap: 0.65rem;
}

.form-consent input {
  width: auto;
  margin: 0.25rem 0 0;
}

.form-status {
  margin-top: 1rem;
  color: var(--sage-dark);
  font-weight: 700;
}

/* ---------- Footer ---------- */

.site-footer {
  color: #d4dfe5;
  background: var(--ink-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(150px, 1fr));
  gap: clamp(2rem, 5vw, 5rem);
  padding: 5rem 0;
}

.footer-grid h3 {
  color: #fff;
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-grid a {
  text-decoration: none;
}

.footer-brand img {
  display: block;
  width: 225px;
  max-width: 100%;
  height: auto;
  margin-bottom: 1.5rem;
  filter: none;
}

.footer-bottom {
  padding: 1.25rem 0;
  border-top: 1px solid var(--line-dark);
  font-size: 0.84rem;
}

/* ---------- Mobile Call Bar ---------- */

.mobile-call {
  display: none;
}

/* ---------- Reveal Motion ---------- */

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 700ms var(--ease),
    transform 700ms var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */

@media (max-width: 1080px) {
  .main-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav.is-open {
    display: grid;
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    margin: 0;
    padding: 1.5rem 5%;
    background: #fff;
    box-shadow: var(--shadow-soft);
  }

  .nav-group {
    width: 100%;
  }

  .nav-dropdown {
    position: static;
    margin-top: 0.5rem;
    box-shadow: none;
  }

  .practice-layout--editorial,
  .practice-layout--split,
  .pillar-grid,
  .attorney-editorial,
  .story-layout,
  .story-layout--reverse,
  .page-hero__inner,
  .content-layout,
  .profile-hero__grid,
  .consultation-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .practice-layout--editorial .practice-feature:first-child {
    grid-row: auto;
    min-height: 540px;
  }

  .pillar {
    border-right: 0;
    border-bottom: 1px solid #d8cfc1;
  }

  .pillar:last-child {
    border-bottom: 0;
  }

  .attorney-editorial {
    gap: 2rem;
  }

  .story-image {
    min-height: 520px;
  }

  .sidebar-card {
    position: static;
  }

  .footer-grid {
    text-align: center;
  }

  .footer-brand img {
    margin-inline: auto;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 56px;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 4.4rem);
  }

  .utility-bar__inner {
    display: block;
    text-align: center;
  }

  .header-inner {
    min-height: 90px;
  }

  .brand {
    width: 180px;
  }

  .hero,
  .hero__inner {
    min-height: 680px;
  }

  .hero__copy {
    padding: 4rem 0;
  }

  .section {
    padding: 5rem 0;
  }

  .split-heading,
  .form-grid,
  .profile-facts,
  .article-grid {
    grid-template-columns: 1fr;
  }

  .practice-feature {
    min-height: 410px;
  }

  .attorney-editorial__portrait {
    min-height: 460px;
  }

  .profile-portrait {
    min-height: 500px;
  }

  .mobile-call {
    display: block;
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 300;
    padding: 0.95rem 1rem;
    color: #fff;
    background: var(--ink-deep);
    font-weight: 700;
    text-align: center;
    text-decoration: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}


/* =========================================================
   NAVIGATION DROPDOWN HOVER FIX
   ========================================================= */

@media (min-width: 1081px) {
  .nav-dropdown {
    display: grid;
    top: 100%;
    left: -18px;
    min-width: 270px;
    margin-top: 0;
    padding: 1rem 0.75rem 0.75rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
    transition:
      opacity 160ms ease,
      visibility 160ms ease,
      transform 160ms var(--ease);
  }

  .nav-group:hover .nav-dropdown,
  .nav-group:focus-within .nav-dropdown,
  .nav-group.is-open .nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-group::after {
    content: "";
    position: absolute;
    top: 100%;
    right: -18px;
    left: -18px;
    height: 18px;
  }

  .nav-dropdown a {
    display: block;
    white-space: nowrap;
  }
}

@media (min-width: 1081px) {
  .footer-brand img {
    display: block !important;
    width: 225px !important;
    max-width: 100% !important;
    height: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
    filter: none !important;
    background: transparent !important;
  }
}