/* ========================================
   MINIMALLY MODERN HOME - DESIGN SYSTEM
   ======================================== */

/* CSS Variables */
:root {
  /* Colors */
  --color-white: #FFFFFF;
  --color-linen: #F6F4F0;
  --color-ink: #0E0E0E;
  --color-charcoal: #3A3A3A;
  --color-border-soft: #E5E3DF;
  --color-sage: #8FA89A;
  --color-sage-dark: #6F8F7E;
  --color-beige: #D8CFC4;

  /* Spacing */
  --space-xxs: 4px;
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;
  --space-xxl: 96px;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* Layout */
  --max-width: 1200px;
  --radius: 2px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-charcoal);
  background-color: var(--color-white);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

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

a {
  text-decoration: none;
  color: inherit;
}

/* ========================================
   AFFILIATE LINKS (Simple chevron list)
   ======================================== */

.product-section {
  margin-top: 10px;
}

/* =====================================================
   Affiliate links – minimal divider rows (no box sides)
   ===================================================== */

/* Container list: remove default UL bullets + spacing */
.affiliate-list{
  list-style: none;
  margin: 0;
  padding: 0;

  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
}

/* Each LI */
.affiliate-item{
  list-style: none;
  margin: 0;
  padding: 0;
}

/* The clickable row */
.affiliate-link{
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 14px 12px;
  text-decoration: none;

  /* ✅ only top/bottom dividers (no left/right box) */
  border: 0;
  border-bottom: 1px solid rgba(0,0,0,0.25);

  background: transparent;
  box-shadow: none;
}

/* Top divider on the first row so it feels like a list */
.affiliate-item:first-child .affiliate-link{
  border-top: 1px solid rgba(0,0,0,0.25);
}

/* Name + custom bullet */
.affiliate-name{
  position: relative;        /* required for ::before bullet */
  padding-left: 18px;        /* bullet sits inside the row */
  font-weight: 600;
  color: var(--color-ink);
}

/* ✅ Deep black bullet (no transparency) */
.affiliate-name::before{
  content: "•";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #000;               /* deep black */
  font-size: 16px;
  line-height: 1;
}

/* Right chevron */
.affiliate-chevron{
  color: rgba(0,0,0,0.35);
  font-size: 20px;
  line-height: 1;
}

/* Hover: subtle underline only */
.affiliate-link:hover{
  background: transparent;
}

.affiliate-link:hover .affiliate-name{
  text-decoration: underline;
  text-underline-offset: 3px;
}


/* ========================================
   Pinterest overlay badge (image version)
   ======================================== */

.post-hero-image {
  position: relative;
  display: block;
  border-radius: 18px;
  overflow: hidden;
}

.post-hero-image img {
  display: block;
  width: 100%;
  height: auto;
}

/* link wrapper behaves like div */
a.post-hero-image {
  text-decoration: none;
  color: inherit;
}

/* badge container */
.pin-badge {
  position: absolute;
  top: 12px;
  right: 12px;

  width: 34px;
  height: 34px;
  border-radius: 999px;

  display: grid;
  place-items: center;

  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 25px rgba(0,0,0,0.18);
  backdrop-filter: blur(6px);

  pointer-events: none; /* click goes through to link */
}

/* the pinterest.webp inside */
.pin-badge-img {
  width: 18px;
  height: 18px;
  display: block;
}

.pin-link:hover .pin-badge {
  transform: translateY(-1px);
  box-shadow: 0 16px 35px rgba(0,0,0,0.22);
}

@media (max-width: 480px) {
  .pin-badge {
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
  }
  .pin-badge-img {
    width: 16px;
    height: 16px;
  }
}
.post-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--color-ink);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: var(--space-sm);
}

h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: var(--space-md);
}

h3 {
  font-size: 1.25rem;
  letter-spacing: -0.01em;
}

p {
  margin-bottom: var(--space-sm);
}

/* ========================================
   LAYOUT
   ======================================== */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

@media (max-width: 768px) {
  .container {
    padding: 0 var(--space-sm);
  }
}

.section {
  padding: var(--space-xl) 0;
}

.section-linen {
  background-color: var(--color-linen);
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.page-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.page-header p {
  font-size: 1.125rem;
  max-width: 500px;
  margin: 0 auto;
}

.ai-note {
  margin-top: var(--space-xs);
  font-size: 0.85rem;
  font-style: italic;
  color: var(--color-charcoal);
  opacity: 0.7;
}

/* ========================================
   HEADER
   ======================================== */

.header {
  width: 100%;
  border-bottom: 1px solid var(--color-border-soft);
  padding: var(--space-sm) 0;
  background-color: var(--color-white);
  position: sticky;
  top: 0;
  z-index: 100;
}

@media (min-width: 769px) {
  .header {
    padding: var(--space-md) 0;
  }
}

@media (max-width: 768px) {
  :root { --mobile-header-h: 64px; }

  .header{
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: var(--color-white);
  }

  body{
    padding-top: var(--mobile-header-h);
  }

  /* ✅ dropdown pinned UNDER the header */
  .mobile-nav{
    position: fixed;
    top: var(--mobile-header-h);
    left: 0;
    right: 0;

    z-index: 999;
    background: var(--color-white);

    /* dropdown behaviour */
    max-height: calc(100vh - var(--mobile-header-h));
    overflow-y: auto;

    /* keep your existing spacing */
    padding: var(--space-md);

    /* optional: makes it feel like a panel */
    box-shadow: 0 18px 40px rgba(0,0,0,0.10);
  }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 32px;
  width: auto;
}

@media (min-width: 769px) {
  .logo img {
    height: 40px;
  }
}

.nav {
  display: none;
  align-items: center;
  gap: var(--space-lg);
}

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

.nav-link {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-charcoal);
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-ink);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
}

@media (min-width: 769px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-ink);
  transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation */
.mobile-nav {
  display: none;
  flex-direction: column;
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-border-soft);
  padding: var(--space-md);
}

.mobile-nav.active {
  display: flex;
}

@media (min-width: 769px) {
  .mobile-nav {
    display: none !important;
  }
}

.mobile-nav-link {
  padding: var(--space-sm) 0;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-charcoal);
  border-bottom: 1px solid var(--color-border-soft);
}

.mobile-nav-link:last-child {
  border-bottom: none;
}

.mobile-nav-link.active {
  color: var(--color-ink);
}

/* ========================================
   HERO
   ======================================== */

.hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  max-height: 800px;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4), transparent, transparent);
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
}

.hero-text {
  max-width: 600px;
  padding-bottom: var(--space-xl);
}

.hero-text h1 {
  color: var(--color-white);
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: var(--space-sm);
}

.hero-text p {
  color: rgba(255,255,255,0.9);
  font-size: 1.125rem;
  margin-bottom: var(--space-md);
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
  display: inline-block;
  padding: 14px 24px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}

.btn-primary {
  background-color: var(--color-sage);
  color: var(--color-ink);
}

.btn-primary:hover {
  background-color: var(--color-sage-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-ink);
  border: 1px solid var(--color-border-soft);
}

.btn-secondary:hover {
  border-color: var(--color-ink);
}

.btn-full {
  width: 100%;
  text-align: center;
}

/* ========================================
   QUOTE CTA
   ======================================== */

.quote-cta {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.quote-cta blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-style: italic;
  color: var(--color-ink);
  margin-bottom: var(--space-md);
}

.quote-author {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-lg);
}

/* ========================================
   CARDS
   ======================================== */

/* Post Cards */
.posts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.posts-grid--tiles {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-sm);
}

@media (min-width: 769px) {
  .posts-grid--tiles {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-md);
  }
}

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

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

.post-card {
  background-color: var(--color-linen);
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.post-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.post-card-image {
  aspect-ratio: 4/3;
  overflow: hidden;
}

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

.post-card:hover .post-card-image img {
  transform: scale(1.03);
}

.post-card-content {
  padding: var(--space-md);
}

.post-meta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-xs);
}

.room-tag {
  display: inline-block;
  padding: 6px 12px;
  background-color: var(--color-beige);
  color: var(--color-ink);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius);
}

.post-date {
  font-size: 0.75rem;
  color: var(--color-charcoal);
  opacity: 0.6;
}

.post-card h3 {
  margin-bottom: var(--space-xs);
  transition: color 0.2s ease;
}

.post-card:hover h3 {
  color: var(--color-sage);
}

.post-card p {
  font-size: 0.875rem;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Latest Inspiration tiles (mobile-only via JS toggle) */
.latest-tile {
  display: block;
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-linen);
}

.latest-tile-image {
  display: block;
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.latest-tile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.latest-tile:hover .latest-tile-image img {
  transform: scale(1.03);
}

/* Room Cards */
.rooms-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

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

.room-card {
  display: block;
  background-color: var(--color-linen);
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.room-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.room-card-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

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

.room-card:hover .room-card-image img {
  transform: scale(1.03);
}

.room-card[data-available="false"] .room-card-image img {
  opacity: 0.7;
}

.coming-soon-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(14,14,14,0.2);
}

.coming-soon-overlay span {
  background-color: var(--color-linen);
  color: var(--color-ink);
  padding: var(--space-xs) var(--space-sm);
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.room-card-content {
  padding: var(--space-md);
}

.room-card h3 {
  margin-bottom: var(--space-xs);
  transition: color 0.2s ease;
}

.room-card[data-available="true"]:hover h3 {
  color: var(--color-sage);
}

.room-card p {
  font-size: 0.875rem;
  margin-bottom: 0;
}

/* ========================================
   ROOM FEED (Beige backdrop + white sheets)
   ======================================== */

/* Beige backdrop only on room pages */
body.room-page {
  background: #F6F0E6; /* warm beige */
}

/* Let the beige show through */
body.room-page .section {
  background: transparent;
}

/* Vertical feed */
.room-feed {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  padding-bottom: var(--space-xxl);
}

/* White "sheet" card per post */
.room-post {
  width: min(980px, calc(100% - 48px));
  margin: 0 auto;
  background: var(--color-white);
  border: 1px solid rgba(14, 14, 14, 0.06);
  border-radius: 6px;
  overflow: hidden;

  /* soft lift */
  box-shadow:
    0 2px 10px rgba(0,0,0,0.06),
    0 30px 60px rgba(0,0,0,0.06);
}

/* Inner spacing for text + products */
.room-post .post-hero,
.room-post .product-section {
  max-width: 860px;
  margin: 0 auto;
  padding: 34px 28px 0;
}

.room-post .product-section {
  padding-bottom: 34px;
}

/* Hero image spans the full white sheet width */
.room-post .post-hero-image {
  width: 100%;
  margin: 16px 0 0;
  border: none;
  background: transparent;
}

.room-post .post-hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Divider inside the sheet */
.room-post .post-divider {
  max-width: 860px;
  margin: 26px auto;
}

@media (max-width: 768px) {
  .room-feed {
    gap: calc(56px / 6);
  }

  .room-post {
    width: min(980px, calc(100% - 8px));
  }
}

/* ========================================
   TRUST BLOCK
   ======================================== */

.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

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

.trust-item {
  text-align: center;
}

.trust-item h3 {
  margin-bottom: var(--space-xs);
}

.trust-item p {
  margin-bottom: 0;
}


/* ========================================
   CONTACT FORM
   ======================================== */

.contact-wrapper {
  max-width: 560px;
  margin: 0 auto;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.form-group label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.form-group input,
.form-group textarea {
  padding: var(--space-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-ink);
  background-color: var(--color-white);
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-sage);
  box-shadow: 0 0 0 3px rgba(143,168,154,0.2);
}

.form-group textarea {
  resize: none;
}

.form-status {
  min-height: 1.25em;
  margin: 0;
  font-size: 0.875rem;
  color: #b23a3a;
}

.success-message {
  text-align: center;
  padding: var(--space-xl);
  background-color: var(--color-white);
  border-radius: var(--radius);
}

.success-message h2 {
  margin-bottom: var(--space-sm);
}

.success-message p {
  margin-bottom: 0;
}

/* ========================================
   ARTICLE CONTENT
   ======================================== */

.article-content {
  max-width: 700px;
  margin: 0 auto;
}

.article-content h1 {
  margin-bottom: var(--space-lg);
}

.article-content h2 {
  font-size: 1.5rem;
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
}

.article-content p {
  line-height: 1.7;
}

/* =====================================================
   FOOTER (Matches Minimally Modern tokens + centered columns + matching headings)
   ===================================================== */

.footer {
  border-top: 1px solid var(--color-border-soft);
  background: var(--color-linen);
  padding: var(--space-xl) 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: start;
  text-align: center;
  justify-items: center;
}

/* 3 columns on desktop (ALL centered) */
@media (min-width: 900px) {
  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: var(--space-xl);
    text-align: center;
    justify-items: center;
  }
}

/* Brand block */
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-brand h4 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-ink);
  margin-bottom: var(--space-xs);
}

.footer-brand p {
  font-size: 0.95rem;
  color: var(--color-charcoal);
  opacity: 0.75;
  margin-bottom: 0;
}

.footer-photo--below {
  margin-top: var(--space-sm);
  width: 140px;
  height: 140px;
  border-radius: 16px;
  object-fit: cover;
  border: 1px solid var(--color-border-soft);
  box-shadow: 0 14px 28px rgba(0,0,0,0.10);
}

/* Links + Connect columns */
.footer-links,
.footer-connect {
  text-align: center;
}

/* ✅ Make these headings match the brand heading style */
.footer-links h5,
.footer-connect h5 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  color: var(--color-ink);
  margin-bottom: var(--space-sm);
  text-align: center;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 0;
  align-items: center;
}

.footer-links a {
  font-size: 0.95rem;
  color: var(--color-ink);
  text-decoration: underline;
  text-underline-offset: 3px;
  opacity: 0.9;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.footer-links a:hover {
  color: var(--color-sage);
  opacity: 1;
}

/* Social buttons */
.social-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.social-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 280px;
  padding: 0.8rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: 0;
  box-shadow: 0 0 0 1px rgba(14,14,14,0.10) inset;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.social-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.10), 0 0 0 1px rgba(14,14,14,0.10) inset;
}

.social-btn.pinterest {
  background: #bd081c;
  color: #ffffff;
}

/* Bottom row */
.footer-bottom {
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border-soft);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  align-items: center;
  text-align: center;
}

@media (min-width: 900px) {
  /* ✅ Keep it centered on desktop too */
  .footer-bottom {
    flex-direction: row;
    justify-content: center;
    gap: var(--space-xl);
    text-align: center;
  }
}

.footer-bottom p {
  font-size: 0.95rem;
  color: var(--color-charcoal);
  opacity: 0.75;
  margin: 0;
}

.company-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--color-charcoal);
  opacity: 0.75;
}

.company-logo-link {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.company-logo-img {
  height: 22px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  opacity: 0;
  animation: fadeInUp 0.4s ease-out forwards;
}

/* Intersection Observer will trigger these */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
