/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  transition: background 0.25s ease, color 0.25s ease;
}
main {
  flex: 1;
}
a { color: inherit; text-decoration: none; }
a:hover { opacity: 0.7; }
img { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }

/* ---------- Tokens ---------- */
:root {
  --color-text:       #111111;
  --color-muted:      #6b6b6b;
  --color-line:       #e9e9e9;
  --color-bg:         #ffffff;
  --color-bg-soft:    #ececec;
  --color-bg-icon:    #e0e0e0;
  --color-bg-dark:    #ffffff;
  --color-accent:     #1a73e8;
  --color-header-bg:  rgba(255, 255, 255, 0.95);
  --max-w: 1140px;
  --gutter: 24px;
  --g-gutter: 10px;
  --ease-splash: cubic-bezier(0.65, 0, 0.35, 1);
}

/* Inner content wrapper — caps width at 1600px, centers, applies side padding */
.inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--g-gutter);
  width: 100%;
}



/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--color-header-bg);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-line);
  transition: background 0.25s ease, border-color 0.25s ease;
}
.site-header .inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 22px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-title {
  font-size: 22px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted);
}

/* ---------- Theme toggle button ---------- */
.theme-toggle {
  background: none;
  border: 0;
  padding: 4px;
  color: var(--color-muted);
  display: flex;
  align-items: center;
  transition: color 0.2s;
}
.theme-toggle:hover { color: var(--color-text); opacity: 1; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-bg);
  margin-top: auto;
}
.footer-main {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 36px var(--g-gutter);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-title {
  font-size: 32px;
  font-weight: 200;
  letter-spacing: 7.04px;
  text-transform: uppercase;
  color: var(--color-text);
  margin: 0;
  line-height: 1;
}
.footer-contacts-links {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 300;
  color: var(--color-muted);
  transition: color 0.2s;
}
.footer-contact-link:hover { color: var(--color-text); opacity: 1; }
.footer-divider {
  height: 1px;
  background: var(--color-line);
  max-width: calc(var(--max-w) - var(--g-gutter) * 2);
  width: calc(100% - var(--g-gutter) * 2);
  margin: 0 auto;
}
.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 24px var(--g-gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-copy, .footer-privacy {
  font-size: 14px;
  font-weight: 300;
  color: var(--color-muted);
  letter-spacing: 0;
}
.footer-privacy { transition: color 0.2s; }
.footer-privacy:hover { color: var(--color-text); opacity: 1; }
.footer-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer-social {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-bg-icon);
  color: var(--color-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.footer-social:hover { background: var(--color-line); color: var(--color-text); opacity: 1; }
.footer-backtop {
  font-size: 14px;
  font-weight: 300;
  color: var(--color-muted);
  letter-spacing: 0;
  white-space: nowrap;
  transition: color 0.2s;
}
.footer-backtop:hover { color: var(--color-text); opacity: 1; }
@media (max-width: 900px) {
  .footer-main { flex-direction: column; gap: 40px; padding: 48px var(--gutter) 40px; }
  .footer-brand { flex: none; }
  .footer-nav { gap: 32px; }
}
@media (max-width: 640px) {
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 14px; }
}

/* ---------- Hero Section (Light theme) ---------- */
.hero-section {
  padding: 0;
  background: var(--color-bg);
}
.hero-block {
  background: #0d1410;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 6px;
  padding: 78px 60px;
  min-height: 420px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 64px;
  line-height: 0.95;
  color: #f4efe7;
  margin: 0 0 20px 0;
  text-transform: uppercase;
}
.hero-date {
  font-family: 'DM Sans', sans-serif;
  font-size: 12.5px;
  letter-spacing: 2.75px;
  color: #bdb5a6;
  text-transform: uppercase;
  margin-top: auto;
  margin-bottom: 24px;
}
.hero-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  color: rgba(244, 239, 231, 0.85);
  line-height: 1.4;
  margin: 0;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  justify-content: flex-start;
  padding: 48px 0 8px;
}
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 27px;
  border: 1px solid #111;
  border-radius: 0;
  background: #fff;
  color: #111;
  font-family: 'Arial', sans-serif;
  font-weight: bold;
  font-size: 12px;
  letter-spacing: 2.64px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.hero-btn:hover {
  background: #111;
  color: #fff;
}

/* ---------- Home: collections grid ---------- */
.collections-section {
  background: var(--color-bg-dark);
}
.collections-section .inner {
  padding: 0 var(--g-gutter) 42px;
}
.collections {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}
@media (max-width: 900px) {
  .collections { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 600px) {
  .collections { grid-template-columns: 1fr; gap: 24px; }
}
.collection {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  text-decoration: none;
  cursor: pointer;
}
.collection .cover {
  position: relative;
  width: 100%;
  aspect-ratio: 350 / 576;
  overflow: hidden;
  background: var(--color-bg-soft);
  border-radius: 6px;
}
.collection .cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.collection:hover { opacity: 1; }
.collection:hover .cover img { transform: scale(1.04); }
.collection .meta {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 6px;
  text-align: left;
}
.collection h3 {
  font-family: \'Cormorant Garamond\', serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0;
  color: var(--color-text);
}
.collection .date {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 11.5px;
  letter-spacing: 2.75px;
  text-transform: uppercase;
  color: var(--color-muted);
  margin: 0;
}
.collection .desc {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 13px;
  line-height: 1.5;
  color: var(--color-text);
  margin: 10px 0 0 0;
}

/* ---------- Gallery navbar ---------- */
.g-nav {
  position: relative;
  background: var(--color-bg);
  height: 88px;
  transition: background 0.25s, border-color 0.25s;
}
.g-nav .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 var(--gutter);
}
.g-nav-back {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
  flex-shrink: 0;
  transition: background 0.15s;
}
.g-nav-back:hover { background: var(--color-bg-icon); opacity: 1; }
.g-nav-logo {
  display: none;
}
.g-nav-actions {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.g-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #0d1410;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, opacity 0.15s;
  cursor: pointer;
  flex-shrink: 0;
}
.g-icon-btn:hover { background: #000; opacity: 0.8; }
.g-icon-btn img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* ---------- Gallery hero ---------- */
.g-hero {
  width: 100%;
  height: 480px;
  position: relative;
  background: var(--color-bg-soft);
  overflow: hidden;
  border-radius: 6px;
}
.g-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* admin-configurable focal point: 0% = top, 50% = center, 100% = bottom */
  object-position: 50% var(--hero-pos-y, 50%);
  opacity: 0;
  transform: scale(1.1) translate(var(--mouse-x, 0%), var(--mouse-y, 0%));
  transition: opacity 0.7s ease, transform 4.8s cubic-bezier(0.15, 0.95, 0.25, 1);
  will-change: transform;
}
.g-hero:hover img {
  transition: opacity 0.7s ease, transform 1.6s cubic-bezier(0.15, 0.95, 0.25, 1);
}
.g-hero img.loaded { opacity: 1; }
@media (max-width: 768px) { .g-hero { height: 360px; } }
@media (max-width: 480px)  { .g-hero { height: 280px; } }

/* ---------- Gallery info block ---------- */
.g-info {
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.g-title-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.g-info-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}
.g-title-col h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  font-weight: 700;
  letter-spacing: 0.32px;
  text-transform: uppercase;
  margin: 0;
  color: #202020;
  line-height: 0.95;
}
.g-second-line {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 300;
  color: var(--color-muted);
}
#g-desc:empty { display: none; }

/* ---------- Gallery divider ---------- */
.g-divider {
  border: none;
  border-top: 1px solid var(--color-line);
  margin: 0;
}

/* ---------- Gallery photo grid (uniform 4-col) ---------- */
.g-grid-wrapper {
  background: var(--color-bg-dark);
  padding: 8px 0;
}
.g-photo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}
.g-photo {
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border-radius: 6px;
  background: var(--color-bg-soft);
  cursor: zoom-in;
  position: relative;
  margin: 0;
}
.g-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.45s ease, transform 0.4s ease;
  display: block;
}
.g-photo img.loaded { opacity: 1; }
.g-photo:hover img { transform: scale(1.03); }
@media (max-width: 1100px) { .g-photo-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px)  { .g-photo-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 14, 0.97);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  user-select: none;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
}
.lightbox .lb-btn {
  position: absolute;
  background: none;
  border: 0;
  color: #fff;
  font-size: 28px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.lightbox .lb-btn:hover { opacity: 1; }
.lightbox .lb-close { top: 16px; right: 16px; font-size: 36px; }
.lightbox .lb-prev { left: 12px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-next { right: 12px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-count {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.18em;
  opacity: 0.7;
}

.empty-state {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px var(--gutter);
  text-align: center;
  color: var(--color-muted);
}
.empty-state a {
  display: inline-block;
  margin-top: 18px;
  padding: 10px 22px;
  border: 1px solid var(--color-text);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ---------- Home splash + timed collapse animation ---------- */

/* iOS-style easing: smooth in/out, slight overshoot avoidance */
:root {
  --ease-splash: cubic-bezier(0.65, 0, 0.35, 1);
}

.home-nav {
  background: transparent;
  border-color: transparent;
  transition: background 0.8s var(--ease-splash), opacity 0.8s var(--ease-splash);
  height: 88px;
}
body[data-splash="loading"],
body[data-splash="active"] {
  overflow: hidden;
}

body[data-splash="loading"] .home-nav,
body[data-splash="active"] .home-nav {
  opacity: 0;
  pointer-events: none;
}
.home-nav.solid {
  background: var(--color-bg);
}
.home-nav-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text);
  flex: 1;
}

.menu-btn {
  background: transparent;
  border: none;
  color: var(--color-text);
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  transition: opacity 0.2s;
  flex-shrink: 0;
}
.menu-btn:hover {
  opacity: 0.7;
}

.splash {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg);
  z-index: 40;
  pointer-events: none;
  /* initial state */
  will-change: opacity, background-color;
}


.splash-content {
  text-align: center;
  padding: 0 var(--g-gutter);
  transform-origin: 50% 50%;
}

.splash-title {
  font-family: 'Inter', sans-serif;
  font-weight: 200;
  font-size: clamp(32px, 4.5vw, 52px);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-text);
  margin: 0;
  line-height: 1;
  /* initial state: full size, slightly faded-in */
  opacity: 0;
  transform: translateY(12px) scale(1);
  animation: splash-title-in 0.9s var(--ease-splash) 0.15s forwards;
  will-change: transform, opacity;
}
.splash-tagline {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: var(--color-muted);
  margin: 10px 0 0;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transform: translateY(8px);
  animation: splash-tagline-in 0.7s var(--ease-splash) 0.55s forwards;
  will-change: transform, opacity;
}

/* Entry — gentle fade up after the page mounts */
@keyframes splash-title-in {
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes splash-tagline-in {
  to { opacity: 1; transform: translateY(0); }
}

/* Splash container fades out completely when collapsing */
.splash.collapsing {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s var(--ease-splash) 0.2s;
}

/* ---------- Info Popup ---------- */
.info-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 351px;
  height: 90px;
  background: var(--color-bg);
  border-radius: 6px;
  box-shadow: 2px 8px 20px rgba(0, 0, 0, 0.48);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  z-index: 9999;
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.info-popup.visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.info-popup-text {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: #5eab23;
  margin: 0;
}

.footer-contact-link:hover .social-icon-box {
  background: var(--color-bg-icon);
}
.social-icon-box {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-bg-icon);
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s;
}
.social-icon-box svg {
  width: 18px;
  height: 18px;
}
.social-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.g-icon-btn .social-img {
  width: 100%;
  height: 100%;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto; /* Push to right */
  position: relative;
}

.burger-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 16px;
  background: var(--color-bg);
  border: 1px solid var(--color-line);
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 100;
  display: flex;
  flex-direction: column;
}

.burger-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.burger-item {
  display: block;
  padding: 16px 20px;
  color: var(--color-text);
  text-decoration: none;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  transition: background 0.2s, opacity 0.2s;
}

.burger-dropdown.lang-dropdown {
  min-width: 80px;
  right: 50%;
  transform: translateY(-10px) translateX(50%);
}
.burger-dropdown.lang-dropdown.open {
  transform: translateY(0) translateX(50%);
}
.lang-dropdown .burger-item {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 12px 16px;
}

.burger-item:hover {
  background: var(--color-bg-soft);
  opacity: 1;
}

.header-social-links {
  display: flex;
  gap: 12px;
  align-items: center;
}
.header-social-links .social-icon-box {
  width: 36px;
  height: 36px;
  background: #0d1410;
  color: #fff;
}
.header-social-links .social-icon-box svg {
  width: 18px;
  height: 18px;
}
.header-social-links .social-img {
  width: 100%;
  height: 100%;
}
.header-social-links .footer-contact-link {
  gap: 0;
}
.header-social-links .footer-contact-link span.social-text {
  display: none;
}
@media (max-width: 600px) {
  .header-social-links {
    display: none;
  }
}

/* ---------- Home Page Layout ---------- */
.section-divider {
  height: 1px;
  background: var(--color-line);
  width: 100%;
}
.divider-hero {
  margin-top: 42px;
  margin-bottom: 42px;
}
.divider-about {
  margin-top: 0;
  margin-bottom: 42px;
}
.divider-gallery-info {
  margin-top: 0;
  margin-bottom: 24px;
}
.divider-gallery-footer {
  margin-top: 24px;
  margin-bottom: 0;
}
.divider-footer {
  margin-top: 42px;
  margin-bottom: 24px;
}
.section-title {
  font-family: 'Inter', sans-serif;
  font-weight: 200;
  font-size: 32px;
  letter-spacing: 7.04px;
  text-transform: uppercase;
  color: var(--color-text);
  text-align: center;
  margin: 0 0 28px 0;
}
.info-block {
  width: 100%;
  background: var(--color-bg);
}
.info-columns {
  display: flex;
  gap: 64px;
  padding: 0;
}
.info-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.info-col h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 26px;
  letter-spacing: normal;
  text-transform: none;
  color: var(--color-text);
  margin: 0;
}
.info-col p {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 768px) {
  .info-columns {
    flex-direction: column;
    gap: 32px;
  }
}

/* ---------- Hidden Login Modal ---------- */
.hidden-login-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.hidden-login-modal.show {
  opacity: 1;
  pointer-events: auto;
}
.hidden-login-content {
  background: var(--color-bg);
  padding: 32px;
  border-radius: 8px;
  width: 300px;
  box-shadow: 2px 8px 30px rgba(0,0,0,0.5);
}
.hidden-login-content h3 {
  margin: 0 0 16px 0;
  font-size: 16px;
  text-align: center;
}
.hidden-login-content form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hidden-login-content input {
  width: 100%;
  background: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-text);
  padding: 10px 12px;
  border-radius: 4px;
  font-family: inherit;
  font-size: 14px;
}
.hidden-login-content input:focus {
  outline: none;
  border-color: #5eab23;
}
.hidden-login-content .g-btn {
  background: #5eab23;
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 4px;
  font-weight: 500;
  cursor: pointer;
}
.hidden-login-content .g-btn:hover {
  background: #4d9319;
}

/* --- Smooth Animations --- */
.animate-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.animate-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-fade {
  opacity: 0;
  transition: opacity 1s ease;
}
.animate-fade.is-visible {
  opacity: 1;
}

.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
