/* ======================
   DESIGN SYSTEM - JAPANESE THEME
====================== */
:root {
  /* Japanese Brand Colors */
  --primary: #c41e3a; /* Japanese red (torii gate red) */
  --primary-dark: #9b1628;
  --primary-light: #e63946;
  
  /* Japanese Accents */
  --gold: #d4af37; /* Gold accent */
  --cherry: #ffb7c5; /* Cherry blossom pink */
  --sakura: #ffe4e6; /* Light sakura */
  
  /* Neutrals - Japanese aesthetic */
  --bg: #faf8f5; /* Warm off-white */
  --surface: #ffffff;
  --text-main: #2c2416; /* Deep brown-black */
  --text-muted: #6b6458;
  --border: #e8e4df;

  /* Status */
  --success: #16a34a;
  --warning: #dc2626;

  /* UI */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;

  --shadow-sm: 0 2px 8px rgba(196, 30, 58, 0.08);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-japanese: 0 4px 12px rgba(196, 30, 58, 0.15);
}

/* ======================
   RESET & BASE
====================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", "Hiragino Kaku Gothic ProN", "Hiragino Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text-main);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3 {
  font-family: "Poppins", sans-serif;
  letter-spacing: -0.03em;
  margin: 0;
  font-weight: 600;
  line-height: 1.3;
}

h2 {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

#hero-subheading {
  padding-bottom: 20px;
}

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

/* ======================
   LAYOUT
====================== */
.container {
  max-width: 1100px;
  padding: 0 20px;
  margin: auto;
}

.section {
  padding: 80px 0;
  margin-top: 0;
}

.section.light {
  background: #f9fafb;
}

.center {
  text-align: center;
  margin-bottom: 56px;
}

.center h2 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .center h2 {
    font-size: 2rem;
  }
  
  .center {
    margin-bottom: 40px;
  }
}

/* ======================
   HEADER / NAV
====================== */
.header {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid var(--primary);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.03em;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.logo:hover {
  opacity: 0.85;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--text-main);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
  background-color: var(--primary);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
  background-color: var(--primary);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text-main);
  font-weight: 500;
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
  transition: color 0.25s ease;
  position: relative;
  padding: 4px 0;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2.5px;
  background-color: var(--primary);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

.nav-menu a:hover {
  color: var(--primary);
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-menu .btn {
  margin-left: 0;
  padding: 11px 24px;
  font-size: 0.9375rem;
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 280px;
    background: var(--surface);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 32px 32px;
    gap: 24px;
    box-shadow: var(--shadow-md);
    transition: right 0.3s ease;
    border-left: 2px solid var(--primary);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu a {
    width: 100%;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
  }

  .nav-menu .btn {
    margin-left: 0;
    width: 100%;
    text-align: center;
  }
}

/* ======================
   HERO
====================== */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(196, 30, 58, 0.2), rgba(44, 36, 22, 0.5)),
    url("images/hero-fuji.jpg") center / cover no-repeat;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

.overlay {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  color: white;
  text-align: center;
  max-width: 700px;
  position: relative;
  z-index: 1;
  padding-top: 80px;
}

.hero-content h2 {
  font-size: 3.5rem;
  margin-bottom: 24px;
  text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.4);
  letter-spacing: -0.03em;
  font-weight: 700;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.1875rem;
  opacity: 0.95;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.3);
  margin-bottom: 32px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.01em;
}

@media (max-width: 768px) {
  .hero-content h2 {
    font-size: 2.5rem;
  }
  
  .hero-content p {
    font-size: 1.0625rem;
  }
}

/* ======================
   ABOUT
====================== */
.about {
  display: flex;
  gap: 48px;
  align-items: center;
}

.about h2 {
  font-size: 2.25rem;
  margin-bottom: 20px;
  color: var(--text-main);
}

.about p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.about img {
  width: 300px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-japanese);
  border: 3px solid var(--primary);
}

@media (max-width: 768px) {
  .about {
    flex-direction: column;
    text-align: center;
  }
  
  .about img {
    width: 100%;
    max-width: 300px;
  }
}

/* ======================
   CARDS
====================== */
#tours {
  background: linear-gradient(to bottom, var(--sakura), #fff5f7);
  padding: 110px 0;
  border-radius: 40px;
  margin: 40px auto;
  border-top: 3px solid var(--primary);
  border-bottom: 3px solid var(--primary);
}

/* Optional: add subtle separation */
#tours .center {
  margin-bottom: 50px;
}

.cards {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 24px;
  text-align: center;
  flex: 1 1 320px;
  max-width: 360px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

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

.card img {
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 16px;
}

.card h3 {
  margin: 0 0 12px;
  font-size: 1.5rem;
}

.card p {
  flex-grow: 1;
  margin-bottom: 16px;
  line-height: 1.6;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.price {
  font-weight: 600;
  margin: 16px 0;
  font-size: 1.125rem;
  color: var(--primary);
}

.tour-info {
  text-align: center;
  margin-top: 48px;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.6);
  padding: 24px;
  border-radius: var(--radius-md);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.tour-info p {
  margin: 10px 0;
  font-size: 0.9375rem;
}

/* ======================
   GALLERY / CAROUSEL
====================== */
.gallery-intro {
  max-width: 800px;
  margin: 0 auto 48px;
  color: var(--text-muted);
  font-size: 1.0625rem;
  line-height: 1.7;
}

.gallery-carousel {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--surface);
}

.carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
}

.carousel-slide {
  min-width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4), transparent);
  color: white;
  padding: 32px 40px 24px;
  text-align: center;
}

.carousel-caption p {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 500;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.01em;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid var(--primary);
  color: var(--primary);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  font-size: 1.125rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.carousel-btn:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(196, 30, 58, 0.4);
}

.carousel-btn:active {
  transform: translateY(-50%) scale(1.05);
}

.carousel-prev {
  left: 20px;
}

.carousel-next {
  right: 20px;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 24px;
  background: var(--surface);
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.indicator:hover {
  background: rgba(196, 30, 58, 0.3);
  transform: scale(1.2);
}

.indicator.active {
  background: var(--primary);
  width: 32px;
  border-radius: 6px;
}

@media (max-width: 768px) {
  .gallery-intro {
    font-size: 1rem;
    margin-bottom: 32px;
  }
  
  .carousel-container {
    aspect-ratio: 4 / 3;
  }
  
  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .carousel-prev {
    left: 12px;
  }
  
  .carousel-next {
    right: 12px;
  }
  
  .carousel-caption {
    padding: 24px 20px 20px;
  }
  
  .carousel-caption p {
    font-size: 0.9375rem;
  }
  
  .carousel-indicators {
    padding: 20px;
    gap: 8px;
  }
  
  .indicator {
    width: 10px;
    height: 10px;
  }
  
  .indicator.active {
    width: 24px;
  }
}

/* ======================
   TESTIMONIALS
====================== */
.testimonials blockquote {
  background: var(--surface);
  padding: 24px;
  border-left: 5px solid var(--primary);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
  position: relative;
  font-style: italic;
}

.testimonials blockquote::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: var(--cherry);
  opacity: 0.3;
  font-family: serif;
}

.testimonials span {
  display: block;
  margin-top: 16px;
  font-style: italic;
  color: var(--text-muted);
  font-weight: 500;
}

/* ======================
   FAQ
====================== */
.faq-container {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 24px;
}

.faq-item {
  background: var(--surface);
  padding: 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--primary);
}

.faq-item h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--text-main);
  font-weight: 600;
}

.faq-item p {
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
  font-size: 0.9375rem;
}

@media (max-width: 768px) {
  .faq-item {
    padding: 20px;
  }
  
  .faq-item h3 {
    font-size: 1.125rem;
  }
}

/* ======================
   BUTTONS
====================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  background: var(--primary);
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 8px rgba(196, 30, 58, 0.2), 0 1px 2px rgba(0, 0, 0, 0.1);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(196, 30, 58, 0.3), 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(196, 30, 58, 0.25);
}

.btn:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* ======================
   MODAL
====================== */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 20px;
  overflow-y: auto;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: var(--surface);
  width: 100%;
  max-width: 540px;
  max-height: calc(100vh - 40px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  animation: scaleIn 0.25s ease;
  display: flex;
  flex-direction: column;
  margin: auto;
}

.modal-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

.modal-header h2 {
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
}

.close-modal {
  font-size: 1.75rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: opacity 0.2s ease;
}

.close-modal:hover {
  opacity: 0.8;
}

.modal-body {
  padding: 28px 24px;
  overflow-y: auto;
  flex: 1;
  min-height: 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.modal-body::-webkit-scrollbar {
  width: 8px;
}

.modal-body::-webkit-scrollbar-track {
  background: transparent;
}

.modal-body::-webkit-scrollbar-thumb {
  background-color: var(--border);
  border-radius: 4px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
  background-color: var(--text-muted);
}

/* ======================
   FORMS
====================== */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

@media (max-width: 768px) {
  .modal {
    padding: 16px;
  }
  
  .modal-content {
    max-width: 100%;
    max-height: calc(100vh - 32px);
    border-radius: var(--radius-md);
  }
  
  .modal-header {
    padding: 18px 20px;
  }
  
  .modal-header h2 {
    font-size: 1.25rem;
  }
  
  .modal-body {
    padding: 24px 20px;
  }
  
  .contact-form {
    gap: 18px;
  }
}

@media (max-height: 600px) {
  .modal-body {
    padding: 20px 24px;
  }
  
  .contact-form {
    gap: 16px;
  }
  
  .field-group {
    gap: 6px;
  }
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-main);
  letter-spacing: 0.01em;
}

input,
select,
textarea {
  padding: 13px 16px;
  font-size: 0.9375rem;
  border-radius: 6px;
  border: 2px solid var(--border);
  font-family: inherit;
  background: var(--surface);
  color: var(--text-main);
  transition: all 0.2s ease;
  line-height: 1.5;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.1);
}

input::placeholder,
textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.7;
}

.form-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.form-row > * {
  flex: 1;
  min-width: 0;
}

@media (max-width: 480px) {
  .form-row {
    flex-direction: column;
    gap: 20px;
  }
  
  .form-row > * {
    flex: 1 1 100%;
  }
}

.helper-text {
  font-size: 0.8rem;
  font-weight: normal;
  color: var(--text-muted);
}

.warning {
  color: var(--warning);
  font-weight: 500;
}

.hidden {
  display: none;
}

.form-row textarea {
  flex: 1 1 100%;
  min-height: 100px;
  resize: vertical;
  max-height: 200px;
}

@media (max-width: 768px) {
  .form-row textarea {
    min-height: 90px;
    max-height: 150px;
  }
}

/* ======================
   FOOTER
====================== */
.footer {
  background: linear-gradient(135deg, #1f1a13 0%, #2c2416 100%);
  color: rgba(255, 255, 255, 0.9);
  padding: 48px 32px 40px;
  border-top: 3px solid var(--primary);
  margin-top: 0;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.footer-content p {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.85);
}

.social-icons {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(196, 30, 58, 0.4);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 1.125rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  position: relative;
}

.social-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(196, 30, 58, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.4s, height 0.4s;
}

.social-icon:hover::before {
  width: 100%;
  height: 100%;
}

.social-icon:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 24px rgba(196, 30, 58, 0.4);
}

.social-icon:active {
  transform: translateY(-1px) scale(1.02);
}

.social-icon i {
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 24px 36px;
  }
  
  .footer-content {
    gap: 24px;
  }
  
  .footer-content p {
    font-size: 0.875rem;
  }
  
  .social-icons {
    gap: 14px;
  }
  
  .social-icon {
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }
}

/* ======================
   BACK TO TOP BUTTON
====================== */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 52px;
  height: 52px;
  background: var(--primary);
  color: white;
  border: 2px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(196, 30, 58, 0.3);
  font-size: 1.125rem;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-4px);
  box-shadow: 0 6px 24px rgba(196, 30, 58, 0.4);
}

.back-to-top:active {
  transform: translateY(-2px);
}

.back-to-top:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    font-size: 1rem;
  }
}

/* ======================
   ANIMATION
====================== */
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
