/* ─────────────────────────────────────────────
   PUGNO TRUST & ESTATES, P.C.
   Main Stylesheet — v3
   Colors: Indigo #3B3393 · Terracotta #B5522E · Aged Gilt #B8922A
   Fonts: Oxygen (headings) · Lato (body)
   ───────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Oxygen:wght@300;400;700&family=Lato:ital,wght@0,300;0,400;0,700;0,900;1,400&display=swap');

/* ── Variables ── */
:root {
  --bg:          #FAF8F4;
  --bg-alt:      #F3EFE8;
  --indigo:      #3B3393;
  --indigo-dark: #2A2470;
  --indigo-mid:  #4D45AA;
  --terra:       #B5522E;
  --terra-light: #CC6644;
  --gilt:        #B8922A;
  --gilt-light:  #CFA84A;
  --gilt-pale:   #F5EDD6;
  --text:        #2A2A2A;
  --text-mid:    #545454;
  --text-light:  #7A7A7A;
  --border:      #DDD8CE;
  --white:       #FFFFFF;

  --font-head:  'Oxygen', sans-serif;
  --font-body:  'Lato', sans-serif;

  --max-width: 1080px;
  --section-pad: 80px 24px;
  --radius: 2px;
  --transition: 0.25s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  color: var(--indigo);
  margin-bottom: 1em;
}
h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.35rem); }
p  { margin-bottom: 1.2em; color: var(--text-mid); font-family: var(--font-body); }
p:last-child { margin-bottom: 0; }

.label {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gilt);
}

/* ── Layout ── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.section     { padding: var(--section-pad); }
.section-alt { background: var(--bg-alt); }
.section-dark {
  background: var(--indigo);
  color: var(--white);
}
.section-dark h1,
.section-dark h2,
.section-dark h3 { color: var(--white); }
.section-dark p   { color: rgba(255,255,255,0.78); }
.section-dark .label { color: var(--gilt-light); }

/* ── Nav ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--indigo);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 2px 16px rgba(0,0,0,0.25);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 108px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo img {
  height: 88px;
  width: auto;
  display: block;
  margin: 0;
}
.nav-logo {
  margin-left: -24px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  transition: color var(--transition);
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-phone {
  font-family: var(--font-head);
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--indigo) !important;
  background: var(--gilt);
  padding: 9px 18px;
  border-radius: var(--radius);
  transition: background var(--transition) !important;
  white-space: nowrap;
}
.nav-phone:hover { background: var(--gilt-light) !important; }

/* Mobile nav */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(255,255,255,0.8);
  transition: var(--transition);
}
.mobile-nav {
  display: none;
  background: var(--indigo-dark);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 16px 24px 24px;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--white); }
.mobile-nav .nav-phone {
  display: inline-block;
  margin-top: 16px;
  border-bottom: none;
  background: var(--gilt) !important;
  color: var(--white) !important;
  padding: 12px 24px;
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  border-radius: var(--radius);
  width: 100%;
  text-align: center;
  box-sizing: border-box;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--indigo);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/hero.jpg');
  /* Cover ensures image fills the right portion at any viewport width */
  background-size: 52% auto;
  background-position: right 30%;
  background-repeat: no-repeat;
  /* Mask: image is invisible on the left, fully visible on the right.
     No filter here — filter and mask-image conflict in WebKit/Blink */
  -webkit-mask-image: linear-gradient(to right,
    transparent     0%,
    transparent    40%,
    rgba(0,0,0,0.08) 47%,
    rgba(0,0,0,0.30) 52%,
    rgba(0,0,0,0.60) 57%,
    rgba(0,0,0,0.82) 62%,
    black           68%);
  mask-image: linear-gradient(to right,
    transparent     0%,
    transparent    40%,
    rgba(0,0,0,0.08) 47%,
    rgba(0,0,0,0.30) 52%,
    rgba(0,0,0,0.60) 57%,
    rgba(0,0,0,0.82) 62%,
    black           68%);
}

/* Separate darkening layer over the visible image portion only.
   This avoids any filter/mask conflict while still controlling brightness. */
.hero-fade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to right,
    transparent  55%,
    rgba(0,0,0,0.30) 70%,
    rgba(0,0,0,0.42) 100%);
}

/* Separate overlay div — gradient stays ~90% opaque at the image start
   point so the image edge is invisible regardless of viewport width */
.hero-fade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to right,
    rgba(59,51,147,1.00)  0%,
    rgba(59,51,147,1.00) 36%,
    rgba(59,51,147,0.96) 42%,
    rgba(59,51,147,0.90) 47%,
    rgba(59,51,147,0.78) 53%,
    rgba(59,51,147,0.55) 60%,
    rgba(59,51,147,0.28) 67%,
    rgba(59,51,147,0.08) 73%,
    transparent          78%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 100px 24px 90px;
  width: 100%;
}
.hero h1 {
  color: var(--white);
  max-width: 680px;
  margin-bottom: 20px;
  font-weight: 700;
}
.hero h1 em {
  font-style: italic;
  color: var(--gilt-light);
}
.hero-sub {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.75);
  max-width: 500px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-sub p { color: rgba(255,255,255,0.75); margin-bottom: 0; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn-primary  { background: var(--terra); color: var(--white); }
.btn-primary:hover { background: var(--terra-light); color: var(--white); }
.btn-outline  { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.45); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.btn-indigo   { background: var(--indigo); color: var(--white); }
.btn-indigo:hover { background: var(--indigo-dark); color: var(--white); }
.btn-gilt     { background: var(--gilt); color: var(--white); }
.btn-gilt:hover { background: var(--gilt-light); color: var(--white); }

/* ── Gilt / terra rules ── */
.gilt-rule  { width: 44px; height: 3px; background: var(--gilt); margin: 14px 0 26px; }
.gilt-rule-center { margin: 14px auto 26px; }
.terra-rule { width: 44px; height: 3px; background: var(--terra); margin: 14px 0 26px; }

/* ── Section header ── */
.section-header { margin-bottom: 52px; }
.section-header.centered { text-align: center; }

/* ── Two-column layouts ── */
.two-col        { display: grid; grid-template-columns: 1fr 1fr;       gap: 64px; align-items: start; }
.two-col-narrow { display: grid; grid-template-columns: 1.4fr 1fr;     gap: 64px; align-items: start; }
@media (max-width: 720px) {
  .two-col, .two-col-narrow { grid-template-columns: 1fr; gap: 40px; }
}

/* ── Photo block ── */
.photo-block img    { width: 100%; height: 420px; object-fit: cover; display: block; }
.photo-block-sm img { height: 280px; }
.photo-caption {
  font-family: var(--font-head);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 8px;
}

/* ── Service cards ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--terra);
  padding: 32px 24px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover { box-shadow: 0 8px 32px rgba(59,51,147,0.10); transform: translateY(-3px); }
.card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--indigo);
  margin-bottom: 10px;
}
.card p { font-size: 0.93rem; }
.card-more {
  font-family: var(--font-head);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terra);
  font-weight: 700;
  display: inline-block;
  margin-top: 14px;
  transition: color var(--transition);
}
.card-more:hover { color: var(--terra-light); }

/* ── Pull quote ── */
.pull-quote {
  border-left: 3px solid var(--gilt);
  padding: 16px 24px;
  background: var(--gilt-pale);
  margin: 28px 0;
}
.pull-quote p {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 300;
  font-style: italic;
  color: var(--indigo);
  margin: 0;
  line-height: 1.55;
}

/* ── Info box ── */
.info-box {
  background: var(--gilt-pale);
  border-left: 3px solid var(--gilt);
  padding: 22px 26px;
  margin: 24px 0;
}
.info-box p   { color: var(--text); font-size: 0.93rem; }
.info-box ul  {
  list-style: disc;
  padding-left: 20px;
  color: var(--text-mid);
  font-size: 0.93rem;
  line-height: 2;
}
.info-box-terra { border-color: var(--terra); background: #FDF0EC; }

/* ── Team cards ── */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 32px; }
.team-card { text-align: center; }
.team-photo {
  width: 120px; height: 120px; border-radius: 50%;
  object-fit: cover; object-position: top center;
  border: 3px solid var(--border);
  margin: 0 auto 16px; display: block;
}
.team-avatar {
  width: 120px; height: 120px; border-radius: 50%;
  background: var(--bg-alt);
  border: 3px solid var(--border);
  margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 1.8rem; font-weight: 700;
  color: var(--indigo);
}
.team-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem; font-weight: 700;
  color: var(--indigo); margin-bottom: 4px;
}
.team-card .team-title {
  font-family: var(--font-head);
  font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--terra);
}

/* ── Contact form ── */
.contact-form-wrap { background: var(--white); border: 1px solid var(--border); padding: 44px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--indigo); margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  border-radius: var(--radius);
  transition: border-color var(--transition);
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--indigo); }
.form-group textarea { min-height: 120px; resize: vertical; }
.checkbox-group label {
  display: flex; align-items: flex-start; gap: 10px;
  font-family: var(--font-body); font-size: 0.9rem;
  font-weight: 400; letter-spacing: 0; text-transform: none;
  color: var(--text-mid); cursor: pointer; margin-bottom: 8px;
}
.checkbox-group input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 2px solid var(--border);
  border-radius: 3px;
  background: var(--white);
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  margin-top: 2px;
  transition: background var(--transition), border-color var(--transition);
}
.checkbox-group input[type="checkbox"]:hover {
  border-color: var(--indigo);
}
.checkbox-group input[type="checkbox"]:checked {
  background: var(--indigo);
  border-color: var(--indigo);
}
.checkbox-group input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 1px;
  width: 6px;
  height: 10px;
  border: 2px solid var(--white);
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}
.form-note { font-size: 0.76rem; color: var(--text-light); font-style: italic; margin-top: 8px; }
.form-success {
  display: none;
  background: #EBF5EC; border: 1px solid #B8D9BB;
  padding: 20px 24px; color: #2D5F30;
  font-family: var(--font-head); font-size: 0.85rem;
  letter-spacing: 0.05em; margin-top: 16px;
}

/* ── Office ── */
.office-detail { margin-bottom: 24px; }
.detail-label {
  font-family: var(--font-head);
  font-size: 0.64rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gilt); margin-bottom: 4px;
}
.map-embed { width: 100%; height: 360px; border: 1px solid var(--border); display: block; }

/* ── Page hero ── */
.page-hero {
  position: relative;
  padding: 72px 24px 60px;
  overflow: hidden;
  background: var(--indigo);
}
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.28; }
.page-hero-inner { position: relative; max-width: var(--max-width); margin: 0 auto; }
.page-hero h1 { color: var(--white); margin-bottom: 8px; }
.page-hero .page-hero-sub { color: rgba(255,255,255,0.65); font-family: var(--font-body); font-size: 1rem; }
.breadcrumb {
  font-family: var(--font-head); font-size: 0.66rem;
  letter-spacing: 0.1em; color: rgba(255,255,255,0.4); margin-bottom: 14px;
}
.breadcrumb a { color: rgba(255,255,255,0.5); }
.breadcrumb a:hover { color: rgba(255,255,255,0.8); }

/* ── CTA banner ── */
.cta-banner {
  background: var(--indigo);
  padding: 64px 24px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner-bg { position: absolute; inset: 0; background-size: cover; background-position: center 58%; opacity: 0.22; }
.cta-banner-inner { position: relative; }
.cta-banner h2   { color: var(--white); font-size: 2rem; margin-bottom: 8px; }
.cta-banner p    { color: rgba(255,255,255,0.72); font-size: 1.05rem; margin-bottom: 28px; }
.cta-banner .label { color: var(--gilt-light); }

/* ── Cert badge ── */
.cert-badge {
  display: flex; align-items: center; gap: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gilt);
  padding: 16px 20px; margin: 24px 0;
}
.cert-badge img { width: 64px; height: 64px; flex-shrink: 0; }
.cert-badge p { font-size: 0.86rem; color: var(--text-mid); margin: 0; }
.cert-badge strong { color: var(--indigo); }

/* ── Disclaimer bar ── */
.disclaimer-bar { background: #1A1A2E; padding: 18px 24px; text-align: center; }
.disclaimer-bar p {
  font-family: var(--font-head); font-size: 0.64rem;
  letter-spacing: 0.04em; color: rgba(255,255,255,0.38); margin: 0;
}

/* ── Footer ── */
.site-footer { background: var(--indigo-dark); color: rgba(255,255,255,0.75); padding: 64px 24px 40px; }
.footer-inner {
  max-width: var(--max-width); margin: 0 auto;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 720px) { .footer-inner { grid-template-columns: 1fr; gap: 32px; } }
.footer-logo { height: 52px; width: auto; margin-bottom: 16px; }
.footer-brand .tagline {
  font-family: var(--font-head); font-size: 0.9rem; font-weight: 300;
  color: var(--gilt-light); margin-bottom: 10px;
}
.footer-brand p { font-size: 0.82rem; color: rgba(255,255,255,0.48); margin: 0; }
.footer-col h4 {
  font-family: var(--font-head); font-size: 0.64rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gilt-light); margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
  font-family: var(--font-head); font-size: 0.76rem;
  color: rgba(255,255,255,0.55); transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--white); }
.footer-col p { font-size: 0.82rem; color: rgba(255,255,255,0.55); margin-bottom: 6px; }
.footer-bottom {
  max-width: var(--max-width); margin: 0 auto;
  padding-top: 26px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p {
  font-family: var(--font-head); font-size: 0.68rem;
  letter-spacing: 0.06em; color: rgba(255,255,255,0.3); margin: 0;
}
.footer-legal-links { display: flex; gap: 20px; }
.footer-legal-links a {
  font-family: var(--font-head); font-size: 0.64rem; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.32); transition: color var(--transition);
}
.footer-legal-links a:hover { color: rgba(255,255,255,0.65); }

/* ── Prose pages ── */
.prose-page { max-width: 760px; margin: 0 auto; padding: 72px 24px; }
.prose-page h1 { margin-bottom: 8px; }
.prose-page .gilt-rule { margin-bottom: 36px; }
.prose-page h2 { font-size: 1.15rem; margin-top: 40px; margin-bottom: 12px; }
.prose-page p  { color: var(--text-mid); }
.prose-page ul { list-style: disc; padding-left: 24px; margin-bottom: 1.2em; }
.prose-page ul li { color: var(--text-mid); margin-bottom: 6px; }

/* ── Cookie consent banner ── */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--indigo-dark);
  border-top: 3px solid var(--terra);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}
#cookie-banner p {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.82);
  margin: 0;
  flex: 1;
  min-width: 240px;
}
#cookie-banner a {
  color: var(--gilt-light);
  text-decoration: underline;
  text-decoration-color: rgba(207,168,74,0.4);
}
#cookie-banner a:hover { color: var(--white); }
#cookie-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
#cookie-accept,
#cookie-reject {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  padding: 10px 22px;
  cursor: pointer;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
#cookie-accept {
  background: var(--terra);
  color: var(--white);
}
#cookie-accept:hover { background: var(--terra-light); }
#cookie-reject {
  background: transparent;
  color: rgba(255,255,255,0.65);
  border: 1.5px solid rgba(255,255,255,0.35);
}
#cookie-reject:hover {
  border-color: rgba(255,255,255,0.7);
  color: var(--white);
}

/* ── Responsive ── */
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .hero { min-height: 380px; }
  .hero-bg { background-size: 70% auto; }
}
@media (max-width: 600px) {
  :root { --section-pad: 56px 20px; }
  .cards-grid { grid-template-columns: 1fr; }
  #cookie-banner { padding: 16px 20px; }

  /* Hero: hide bg image on mobile — solid indigo looks clean */
  .hero { min-height: auto; padding: 0; }
  .hero-bg, .hero-fade { display: none; }
  .hero-inner { padding: 52px 20px 48px; }

  /* Buttons: ensure comfortable tap size */
  .btn { padding: 14px 20px; width: 100%; text-align: center; display: block; }
  .hero-cta { flex-direction: column; gap: 12px; }
  .hero-cta .btn { width: 100%; }
}

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up         { animation: fadeUp 0.65s ease both; }
.fade-up-delay-1 { animation-delay: 0.12s; }
.fade-up-delay-2 { animation-delay: 0.24s; }
.fade-up-delay-3 { animation-delay: 0.36s; }
