/* ============================================
   R_degree — LA-targeted brand site
   Minimal, photo-driven, gallery aesthetic
   ============================================ */

/* Reset & base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #FAFAF7;
  --bg-alt: #F2F0EA;
  --ink: #1A1A1A;
  --ink-soft: #4A4A4A;
  --ink-muted: #8A8A85;
  --line: #E5E3DC;
  --accent: #1A1A1A;

  --font-serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  --font-mono: 'JetBrains Mono', 'Menlo', monospace;

  --container: 1320px;
  --gutter: clamp(20px, 4vw, 48px);
  --section-y: clamp(80px, 12vw, 160px);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Use modern lining figures (vs Cormorant's default oldstyle figures)
     so digits in addresses, phone numbers, etc. read consistently. */
  font-variant-numeric: lining-nums;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.25s ease, color 0.25s ease;
}

a:hover { opacity: 0.6; }

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* Typography */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 24px;
  display: inline-block;
}

.display {
  font-family: var(--font-serif);
  font-size: clamp(48px, 8vw, 112px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  font-weight: 300;
}

.h-xl { font-size: clamp(36px, 5vw, 64px); font-weight: 300; }
.h-lg { font-size: clamp(28px, 3.5vw, 44px); }
.h-md { font-size: clamp(22px, 2.4vw, 30px); }

.lead {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.6;
  color: var(--ink-soft);
  font-weight: 400;
}

.text-mono {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.05em;
}

/* Layout */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.container-narrow {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section {
  padding: var(--section-y) 0;
}

.section-title {
  margin-bottom: clamp(40px, 6vw, 80px);
}

/* Header / Navigation */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px var(--gutter);
  background: rgba(250, 250, 247, 0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.site-header.scrolled {
  border-bottom-color: var(--line);
}

.nav {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 0.02em;
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.brand-sup {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-left: 12px;
  display: none;
}

@media (min-width: 768px) {
  .brand-sup { display: inline; }
}

.nav-links {
  list-style: none;
  display: none;
  gap: 36px;
  align-items: center;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
}

.nav-links a.active {
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
}

@media (min-width: 900px) {
  .nav-links { display: flex; }
}

.nav-toggle {
  display: block;
  width: 32px;
  height: 32px;
  position: relative;
}

.nav-toggle span {
  position: absolute;
  left: 4px;
  right: 4px;
  height: 1px;
  background: var(--ink);
  transition: all 0.3s ease;
}

.nav-toggle span:nth-child(1) { top: 11px; }
.nav-toggle span:nth-child(2) { top: 20px; }

.nav-toggle.open span:nth-child(1) {
  top: 16px;
  transform: rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  top: 16px;
  transform: rotate(-45deg);
}

@media (min-width: 900px) {
  .nav-toggle { display: none; }
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg);
  z-index: 90;
  padding: 100px var(--gutter) var(--gutter);
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.7, 0, 0.3, 1);
}

.mobile-menu.open {
  transform: translateY(0);
}

.mobile-menu ul {
  list-style: none;
}

.mobile-menu li {
  border-bottom: 1px solid var(--line);
}

.mobile-menu a {
  display: block;
  padding: 24px 0;
  font-family: var(--font-serif);
  font-size: 32px;
}

/* Main spacing under fixed header */
main {
  padding-top: 76px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--bg);
  border-radius: 999px;
  transition: all 0.25s ease;
}

.btn:hover {
  background: transparent;
  color: var(--ink);
  opacity: 1;
}

.btn-outline {
  background: transparent;
  color: var(--ink);
}

.btn-outline:hover {
  background: var(--ink);
  color: var(--bg);
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
}

.btn-link::after {
  content: '→';
  transition: transform 0.25s ease;
}

.btn-link:hover {
  opacity: 1;
}

.btn-link:hover::after {
  transform: translateX(4px);
}

/* Hero */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  position: relative;
  padding: 0;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.55) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0 var(--gutter) clamp(40px, 8vw, 96px);
  color: white;
}

.hero-content .container {
  padding: 0;
}

.hero-content .eyebrow {
  color: rgba(255,255,255,0.85);
}

.hero-title {
  max-width: 920px;
  margin-bottom: 24px;
  color: white;
}

.hero-sub {
  max-width: 560px;
  color: rgba(255,255,255,0.92);
  font-size: clamp(16px, 1.4vw, 19px);
  margin-bottom: 40px;
}

.hero .btn {
  background: white;
  color: var(--ink);
  border-color: white;
}

.hero .btn:hover {
  background: transparent;
  color: white;
}

/* Inner hero (lighter, for sub pages) */
.page-hero {
  padding: clamp(80px, 14vw, 180px) 0 clamp(60px, 10vw, 120px);
}

.page-hero .container-narrow {
  text-align: center;
}

/* "Built For" — dark section grid */
.who-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px 32px;
}

@media (min-width: 700px) {
  .who-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1100px) {
  .who-grid { grid-template-columns: repeat(4, 1fr); }
}

.who-item {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

/* Hero CTA row */
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

/* Concept grid */
.concept-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}

@media (min-width: 768px) {
  .concept-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
  }
}

.concept-item .num {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--ink-muted);
  font-style: italic;
  display: block;
  margin-bottom: 16px;
}

.concept-item h3 {
  margin-bottom: 16px;
}

.concept-item p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
}

/* Two column section */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 900px) {
  .two-col {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

.two-col.reverse > :first-child { order: 2; }
.two-col.reverse > :last-child { order: 1; }

@media (max-width: 899px) {
  .two-col.reverse > :first-child { order: 1; }
  .two-col.reverse > :last-child { order: 2; }
}

.two-col img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

/* Featured works grid */
.works-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
}

@media (min-width: 768px) {
  .works-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
}

.work-card {
  position: relative;
  overflow: hidden;
}

.work-card img {
  width: 100%;
  aspect-ratio: 1 / 1.3;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0, 0.2, 1);
}

.work-card:hover img {
  transform: scale(1.04);
}

.work-card .work-meta {
  padding: 16px 4px;
}

.work-card .work-title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-style: italic;
  margin-bottom: 4px;
}

.work-card .work-artist {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

/* Story hero — full-width photo with overlay text */
.story-hero {
  position: relative;
  min-height: 92vh;
  padding: 0;
  overflow: hidden;
  color: white;
  display: flex;
  align-items: stretch;
}

.story-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.story-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.story-hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.55) 40%, rgba(0,0,0,0.18) 70%, rgba(0,0,0,0) 100%);
}

.story-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  align-items: center;
  padding: clamp(80px, 12vw, 140px) 0;
}

.story-hero-inner .container { width: 100%; }

.story-hero-content {
  max-width: 620px;
  color: white;
}

.story-hero-content .eyebrow {
  color: rgba(255, 255, 255, 0.88);
}

.story-hero-content h2 {
  color: white;
  margin-bottom: 28px;
}

.story-hero-content .lead {
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 20px;
}

.story-hero-content .btn-link {
  color: white;
  border-bottom-color: rgba(255, 255, 255, 0.65);
}

.story-hero-content .btn-link:hover {
  border-bottom-color: white;
  opacity: 1;
}

.signature {
  margin: 36px 0 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  max-width: 280px;
}

.signature-name {
  font-family: var(--font-serif);
  font-size: 30px;
  font-style: italic;
  font-weight: 400;
  color: white;
  margin: 0 0 2px;
  letter-spacing: 0.005em;
}

.signature-jp {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 10px;
  letter-spacing: 0.08em;
}

.signature-title {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

@media (max-width: 768px) {
  .story-hero-media img {
    object-position: center;
  }
  .story-hero-media::after {
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.55) 40%, rgba(0,0,0,0.82) 100%);
  }
  .story-hero {
    min-height: 100vh;
  }
  .story-hero-inner {
    align-items: flex-end;
  }
}

/* Visit section preview */
.visit-preview {
  position: relative;
  background: var(--bg-alt);
  padding: clamp(60px, 10vw, 120px) 0;
}

.visit-preview .two-col {
  align-items: center;
}

.visit-preview img {
  aspect-ratio: 3 / 4;
}

/* Artist grid */
.artist-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}

@media (min-width: 640px) {
  .artist-grid { grid-template-columns: repeat(2, 1fr); gap: 48px; }
}

@media (min-width: 1024px) {
  .artist-grid { grid-template-columns: repeat(3, 1fr); gap: 64px 48px; }
}

.artist-card {
  display: flex;
  flex-direction: column;
}

.artist-card .image {
  aspect-ratio: 4 / 5;
  background: var(--bg-alt);
  margin-bottom: 20px;
  overflow: hidden;
}

.artist-card .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.artist-card:hover .image img { transform: scale(1.04); }

.artist-card .jp {
  font-family: var(--font-serif);
  font-size: 26px;
  margin-bottom: 4px;
}

.artist-card .romaji {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 12px;
}

.artist-card .type {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 12px;
}

.artist-card .bio {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* Gallery — categories */
.gallery-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 56px;
  justify-content: center;
}

.gallery-nav button {
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  background: transparent;
  transition: all 0.2s ease;
}

.gallery-nav button:hover,
.gallery-nav button.active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--bg);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 24px;
  }
}

@media (min-width: 1100px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gallery-item .image {
  aspect-ratio: 1 / 1.3;
  overflow: hidden;
  background: var(--bg-alt);
  margin-bottom: 12px;
}

.gallery-item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover .image img { transform: scale(1.04); }

.gallery-item .meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.gallery-item .title-block .title {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 17px;
  margin-bottom: 2px;
}

.gallery-item .title-block .artist {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.gallery-item .inquire {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--ink-soft);
  padding-bottom: 2px;
  white-space: nowrap;
  align-self: flex-end;
}

/* About long-form */
.story {
  display: flex;
  flex-direction: column;
  gap: clamp(60px, 10vw, 120px);
}

.story-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}

@media (min-width: 768px) {
  .story-block {
    grid-template-columns: 200px 1fr;
    gap: 80px;
  }
}

.story-block .num {
  font-family: var(--font-serif);
  font-size: 16px;
  font-style: italic;
  color: var(--ink-muted);
  letter-spacing: 0.05em;
}

.story-block .copy h3 {
  font-size: clamp(28px, 3vw, 40px);
  margin-bottom: 24px;
  max-width: 28ch;
}

.story-block .copy p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 16px;
  max-width: 60ch;
}

/* Visit page */
.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin: 40px 0;
}

@media (min-width: 640px) {
  .info-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .info-grid { grid-template-columns: repeat(3, 1fr); }
}

.info-item {
  padding: 32px 0;
  border-top: 1px solid var(--line);
}

.info-item .label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 12px;
}

.info-item .value {
  font-family: var(--font-serif);
  font-size: 22px;
}

.info-item .value-sub {
  font-size: 14px;
  color: var(--ink-soft);
  margin-top: 4px;
}

.map-block {
  margin-top: 60px;
  aspect-ratio: 16 / 9;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-muted);
  font-family: var(--font-serif);
  font-size: 22px;
  font-style: italic;
}

/* Contact form */
.contact-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 720px;
  margin: 0 auto;
}

.field label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 10px;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 14px 0;
  border: none;
  border-bottom: 1px solid var(--line);
  background: transparent;
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--ink);
  transition: border-color 0.2s ease;
}

.field textarea {
  resize: vertical;
  min-height: 140px;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-bottom-color: var(--ink);
}

.field.row-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 640px) {
  .field.row-2 { grid-template-columns: 1fr 1fr; }
}

/* Instagram feed section */
.instagram-section {
  padding: clamp(80px, 12vw, 140px) 0;
  border-top: 1px solid var(--line);
}

#ig-feed-container {
  margin-top: clamp(40px, 6vw, 64px);
}

/* Behold.so widget styling — let it breathe to full container width */
behold-widget {
  display: block;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}

/* Newsletter (footer) */
.newsletter {
  background: var(--ink);
  color: var(--bg);
  padding: clamp(60px, 10vw, 110px) 0;
}

.newsletter h2 {
  font-size: clamp(32px, 4vw, 56px);
  margin-bottom: 24px;
  max-width: 16ch;
}

.newsletter p {
  color: rgba(250,250,247,0.7);
  margin-bottom: 32px;
  max-width: 56ch;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 480px;
}

@media (min-width: 560px) {
  .newsletter-form { flex-direction: row; }
}

.newsletter-form input {
  flex: 1;
  padding: 14px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  color: white;
  font-family: inherit;
  font-size: 15px;
}

.newsletter-form input::placeholder {
  color: rgba(255,255,255,0.5);
}

.newsletter-form input:focus {
  outline: none;
  border-bottom-color: white;
}

.newsletter-form button {
  padding: 14px 28px;
  background: white;
  color: var(--ink);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: opacity 0.25s ease;
}

.newsletter-form button:hover { opacity: 0.85; }

/* Footer */
.site-footer {
  padding: 80px 0 40px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
  }
}

.footer-grid h4 {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 20px;
}

.footer-grid ul {
  list-style: none;
}

.footer-grid li {
  margin-bottom: 12px;
}

.footer-grid a {
  font-size: 14px;
  color: var(--ink-soft);
}

.footer-brand .brand {
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--ink-soft);
  max-width: 36ch;
  line-height: 1.6;
}

.footer-meta {
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  font-size: 12px;
  color: var(--ink-muted);
  letter-spacing: 0.05em;
}

/* Utilities */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-4 { margin-top: 32px; }
.mt-6 { margin-top: 48px; }
.mt-8 { margin-top: 64px; }
.mb-4 { margin-bottom: 32px; }
.mb-6 { margin-bottom: 48px; }

.divider {
  height: 1px;
  background: var(--line);
  border: none;
  margin: clamp(60px, 10vw, 120px) 0;
}

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-up {
  opacity: 0;
  animation: fadeUp 0.8s cubic-bezier(0.2, 0, 0.2, 1) forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.25s; }
.delay-3 { animation-delay: 0.4s; }
.delay-4 { animation-delay: 0.55s; }
