/* =============================================
   ATELIER CŒUR D'ARGILE — Styles
   Palette doodle / artisanale
============================================= */

:root {
  /* Couleurs marque */
  --pink: #ED7B9C;
  --pink-vivid: #FF4D8D;
  --burgundy: #5C1A2D;
  --burgundy-soft: #7A2D42;
  --peach: #F5D5BC;
  --peach-light: #FAE5D3;
  --cream: #FBF6EF;
  --cream-deep: #F4ECE0;
  --lavender: #B5B8E0;
  --yellow: #F4C95D;
  --olive: #B5C76A;
  --orange: #F49B5C;

  /* Tokens */
  --radius-soft: 16px;
  --radius-pill: 999px;
  --shadow-soft: 0 6px 24px rgba(92, 26, 45, 0.08);
  --shadow-card: 0 10px 30px rgba(92, 26, 45, 0.10);

  --font-body: 'Quicksand', system-ui, -apple-system, sans-serif;
  --font-script: 'Caveat', cursive;
  --font-hand: 'Shadows Into Light', cursive;
  --font-display: 'Pacifico', cursive;

  --max-width: 1200px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--burgundy);
  background: var(--cream);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

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

a {
  color: var(--burgundy);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--pink-vivid);
}

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

.cursive {
  font-family: var(--font-script);
  font-weight: 700;
}

/* =============================================
   FESTONS (scallops)
============================================= */
.scallop-top,
.scallop-bottom,
.scallop-mini {
  background: var(--pink);
  height: 26px;
  width: 100%;
  position: relative;
}

.scallop-top {
  border-bottom: none;
}

.scallop-top::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -18px;
  height: 20px;
  background: radial-gradient(circle at 14px 0, var(--pink) 14px, transparent 14.5px);
  background-size: 28px 20px;
  background-repeat: repeat-x;
}

.scallop-bottom::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -18px;
  height: 20px;
  background: radial-gradient(circle at 14px 20px, var(--pink) 14px, transparent 14.5px);
  background-size: 28px 20px;
  background-repeat: repeat-x;
}

.scallop-mini {
  background: var(--lavender);
  height: 16px;
  width: 200px;
  margin: 0.5rem auto 1.5rem;
  border-radius: 2px;
  position: relative;
}

.scallop-mini::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 12px;
  background: radial-gradient(circle at 10px 0, var(--lavender) 10px, transparent 10.5px);
  background-size: 20px 12px;
  background-repeat: repeat-x;
}

/* =============================================
   HEADER
============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
}

.header-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0.75rem 1.5rem;
  background: var(--pink);
  color: var(--cream);
}

.header-bar > .icon-btn:first-child {
  justify-self: start;
}

.header-bar > .menu-toggle {
  justify-self: end;
}

.header-title {
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.6em;
  font-size: 0.95rem;
  color: var(--cream);
}

.icon-btn {
  width: 38px;
  height: 38px;
  background: transparent;
  border: none;
  color: var(--cream);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.icon-btn svg {
  width: 20px;
  height: 20px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.main-nav {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: var(--peach-light);
}

.main-nav.open {
  max-height: 400px;
}

.main-nav ul {
  list-style: none;
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.main-nav a {
  font-weight: 600;
  color: var(--burgundy);
  font-size: 1.05rem;
  display: block;
  padding: 0.4rem 0;
}

@media (min-width: 900px) {
  .header-bar {
    padding: 0.85rem 2.5rem;
  }
  .header-title {
    font-size: 1.05rem;
  }
  .menu-toggle {
    display: none;
  }
  .main-nav {
    max-height: none;
    overflow: visible;
    background: var(--cream);
    border-bottom: 1px solid var(--cream-deep);
  }
  .main-nav ul {
    flex-direction: row;
    justify-content: center;
    gap: 2.5rem;
    padding: 1rem;
  }
}

/* =============================================
   HERO
============================================= */
.hero {
  position: relative;
  background: var(--peach);
  padding: 3rem 1.5rem 4rem;
  overflow: hidden;
}

.confetti-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  opacity: 0.85;
}

.dot-pink   { background: var(--pink-vivid); }
.dot-blue   { background: #8AA8E0; }
.dot-orange { background: var(--orange); }
.dot-yellow { background: var(--yellow); }
.dot-purple { background: var(--lavender); }
.dot-green  { background: var(--olive); }

.dot:nth-child(1)  { top: 8%;  left: 6%;  }
.dot:nth-child(2)  { top: 18%; left: 88%; width: 12px; height: 12px; }
.dot:nth-child(3)  { top: 35%; left: 12%; }
.dot:nth-child(4)  { top: 50%; left: 92%; }
.dot:nth-child(5)  { top: 65%; left: 8%;  width: 14px; height: 14px; }
.dot:nth-child(6)  { top: 78%; left: 80%; }
.dot:nth-child(7)  { top: 22%; left: 45%; width: 8px;  height: 8px;  }
.dot:nth-child(8)  { top: 88%; left: 35%; }
.dot:nth-child(9)  { top: 12%; left: 70%; }
.dot:nth-child(10) { top: 70%; left: 55%; width: 8px;  height: 8px;  }
.dot:nth-child(11) { top: 42%; left: 78%; }
.dot:nth-child(12) { top: 5%;  left: 30%; width: 12px; height: 12px; }

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.logo-circle {
  width: 200px;
  height: 200px;
  margin: 0 auto 2rem;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
}

.logo-svg {
  width: 80%;
  height: 80%;
}

.logo-text {
  font-family: var(--font-script);
  font-weight: 700;
  font-size: 42px;
  fill: var(--burgundy);
}

.hero-photo {
  max-width: 700px;
  margin: 0 auto 2rem;
}

.photo-placeholder {
  background: var(--cream);
  border: 2px dashed var(--burgundy);
  border-radius: 6px;
  aspect-ratio: 16 / 7;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  position: relative;
  color: var(--burgundy);
  opacity: 0.9;
}

.photo-placeholder svg {
  width: 60px;
  height: 60px;
  opacity: 0.6;
}

.photo-placeholder p {
  font-family: var(--font-hand);
  font-size: 1.2rem;
  margin: 0;
}

.photo-placeholder.small {
  aspect-ratio: 1;
}

.hand-note {
  position: absolute;
  bottom: -1.5rem;
  right: 1rem;
  font-family: var(--font-hand);
  color: var(--burgundy);
  font-size: 1rem;
  opacity: 0.7;
}

.hero-tagline {
  font-size: 1.25rem;
  color: var(--burgundy);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 500;
}

.hero-tagline .cursive {
  font-size: 2rem;
  color: var(--burgundy);
}

.inline-heart {
  width: 22px;
  height: 22px;
  display: inline-block;
  vertical-align: middle;
  margin: 0 2px;
}

@media (min-width: 768px) {
  .hero {
    padding: 4rem 2rem 5rem;
  }
  .hero-tagline {
    font-size: 1.4rem;
  }
  .hero-tagline .cursive {
    font-size: 2.4rem;
  }
}

/* =============================================
   QUICK NAV (icônes doodle)
============================================= */
.quick-nav {
  background: var(--cream);
  padding: 2.5rem 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.quick-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  width: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: transform 0.2s ease;
}

.quick-item:hover {
  transform: translateY(-4px);
}

.quick-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quick-icon svg {
  width: 100%;
  height: 100%;
}

@media (min-width: 768px) {
  .quick-nav {
    gap: 3rem;
    padding: 3rem 2rem;
  }
  .quick-item {
    width: 130px;
  }
  .quick-icon {
    width: 80px;
    height: 80px;
  }
}

/* =============================================
   SECTION TITLES
============================================= */
.section-title {
  font-size: 3rem;
  color: var(--pink-vivid);
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
  color: var(--burgundy-soft);
  font-size: 1.05rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 4rem;
  }
}

/* =============================================
   À PROPOS
============================================= */
.about {
  background: var(--cream-deep);
  padding: 5rem 0;
}

.about .section-title {
  color: var(--burgundy);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 2rem;
  align-items: start;
}

.about-portrait {
  position: relative;
  max-width: 340px;
  margin: 0 auto;
}

.polaroid {
  background: var(--cream);
  padding: 1rem 1rem 3rem;
  box-shadow: var(--shadow-card);
  transform: rotate(-3deg);
}

.speech-bubble {
  position: absolute;
  top: -1rem;
  right: -2rem;
  background: var(--cream);
  padding: 1rem 1.2rem;
  border-radius: 18px;
  max-width: 220px;
  font-size: 0.95rem;
  font-style: italic;
  box-shadow: var(--shadow-soft);
  transform: rotate(2deg);
}

.speech-bubble::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 30px;
  border: 12px solid transparent;
  border-top-color: var(--cream);
  border-bottom: 0;
  border-left: 0;
}

.about-text .lead {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.about-text p {
  margin-bottom: 1rem;
}

.quote {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--cream);
  border-left: 4px solid var(--pink);
  border-radius: var(--radius-soft);
}

.quote blockquote {
  font-family: var(--font-script);
  font-size: 1.6rem;
  color: var(--burgundy);
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.quote figcaption {
  font-family: var(--font-script);
  font-size: 1.3rem;
  color: var(--burgundy-soft);
  text-align: right;
}

@media (min-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
  }
}

/* =============================================
   COURS
============================================= */
.courses {
  padding: 5rem 0;
  background: var(--cream);
  position: relative;
}

.courses::before {
  content: "";
  position: absolute;
  top: 20%;
  left: 10%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--yellow);
  opacity: 0.6;
}

.courses::after {
  content: "";
  position: absolute;
  bottom: 15%;
  right: 12%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--lavender);
  opacity: 0.7;
}

.courses-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.course-card {
  background: var(--cream);
  border: 2px solid var(--peach);
  border-radius: var(--radius-soft);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.course-card.featured {
  background: var(--peach-light);
  border-color: var(--pink);
  transform: scale(1.02);
}

.course-card.featured:hover {
  transform: scale(1.02) translateY(-6px);
}

.course-tag {
  display: inline-block;
  background: var(--pink);
  color: var(--cream);
  padding: 0.25rem 0.8rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.course-card.featured .course-tag {
  background: var(--pink-vivid);
}

.course-card h3 {
  font-size: 1.3rem;
  color: var(--burgundy);
  margin-bottom: 0.5rem;
}

.course-price {
  font-family: var(--font-script);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--pink-vivid);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.price-alt {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--burgundy-soft);
  font-weight: 500;
}

.course-desc {
  color: var(--burgundy-soft);
  margin-bottom: 1.2rem;
}

.course-meta {
  list-style: none;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.course-meta li {
  padding: 0.2rem 0;
}

@media (min-width: 768px) {
  .courses-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
  .course-card {
    display: flex;
    flex-direction: column;
  }
  .course-card .btn {
    margin-top: auto;
  }
}

/* =============================================
   BOUTONS
============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--pink);
  color: var(--cream);
  border: 2px solid var(--pink);
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn:hover {
  background: var(--pink-vivid);
  border-color: var(--pink-vivid);
  color: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 77, 141, 0.25);
}

.btn-primary {
  background: var(--burgundy);
  border-color: var(--burgundy);
}

.btn-primary:hover {
  background: var(--burgundy-soft);
  border-color: var(--burgundy-soft);
}

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

.btn-outline:hover {
  background: var(--burgundy);
  color: var(--cream);
}

/* =============================================
   BOUTIQUE
============================================= */
.shop {
  padding: 5rem 0;
  background: var(--peach-light);
  position: relative;
}

.shop-header {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.shop-title {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--burgundy);
  display: inline-block;
}

.coming-badge {
  display: inline-block;
  background: var(--pink-vivid);
  color: var(--cream);
  padding: 0.4rem 1.2rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 1rem;
}

.shop-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  color: var(--burgundy);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 1rem;
  max-width: 900px;
  margin: 0 auto 3rem;
}

.category {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.category-circle {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--cream);
  border: 2px solid var(--burgundy);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease;
}

.category-circle::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, transparent 48%, rgba(92, 26, 45, 0.05) 50%, transparent 52%);
}

.category:hover .category-circle {
  transform: scale(1.05);
}

.category-circle svg {
  width: 70%;
  height: 70%;
}

.category-label {
  font-family: var(--font-script);
  font-size: 1.4rem;
  color: var(--lavender);
  text-align: center;
  filter: brightness(0.7) saturate(1.2);
}

@media (min-width: 768px) {
  .categories-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
  }
}

/* Newsletter dans la boutique */
.newsletter {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
  background: var(--cream);
  padding: 2rem;
  border-radius: var(--radius-soft);
  box-shadow: var(--shadow-soft);
}

.newsletter p {
  margin-bottom: 1rem;
  color: var(--burgundy);
}

.newsletter-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.newsletter input[type="email"] {
  flex: 1;
  min-width: 200px;
  padding: 0.75rem 1rem;
  border: 2px solid var(--peach);
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--cream);
  color: var(--burgundy);
}

.newsletter input[type="email"]:focus {
  outline: none;
  border-color: var(--pink);
}

.newsletter-confirm {
  margin-top: 1rem;
  color: var(--pink-vivid);
  font-weight: 600;
}

/* =============================================
   INSTAGRAM
============================================= */
.instagram {
  padding: 5rem 0;
  background: var(--cream);
}

.instagram-header {
  text-align: center;
  margin-bottom: 3rem;
}

.handle {
  display: inline-block;
  font-family: var(--font-hand);
  font-size: 1.4rem;
  color: var(--pink-vivid);
  margin-top: 0.5rem;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  max-width: 800px;
  margin: 0 auto 2.5rem;
}

.insta-tile {
  aspect-ratio: 1;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.25s ease;
}

.insta-tile:hover {
  transform: scale(1.03);
}

.insta-tile svg {
  width: 50%;
  height: 50%;
  opacity: 0.5;
}

.insta-1 { background: var(--peach); }
.insta-2 { background: var(--peach-light); }
.insta-3 { background: var(--cream-deep); }
.insta-4 { background: var(--peach); }
.insta-5 { background: var(--cream-deep); }
.insta-6 { background: var(--peach-light); }

.insta-cta {
  display: flex;
  margin: 0 auto;
  width: max-content;
}

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

/* =============================================
   CONTACT
============================================= */
.contact {
  padding: 5rem 0;
  background: var(--cream-deep);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

.contact-form {
  background: var(--cream);
  padding: 2rem;
  border-radius: var(--radius-soft);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--burgundy);
}

.contact-form label em {
  font-weight: 400;
  color: var(--burgundy-soft);
  font-style: normal;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 0.7rem 1rem;
  border: 2px solid var(--peach);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--burgundy);
  background: var(--cream);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--pink);
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-info {
  background: var(--cream);
  padding: 2rem;
  border-radius: var(--radius-soft);
  border-top: 4px solid var(--pink);
  box-shadow: var(--shadow-soft);
}

.contact-info h3 {
  font-size: 2rem;
  color: var(--burgundy);
  margin-bottom: 1rem;
}

.contact-info address {
  font-style: normal;
  margin-bottom: 1.2rem;
}

.contact-info address p {
  margin-bottom: 0.4rem;
}

.contact-info p {
  margin-bottom: 0.5rem;
}

.map-placeholder {
  margin-top: 1.5rem;
  border-radius: var(--radius-soft);
  overflow: hidden;
  background: var(--peach-light);
  position: relative;
  text-align: center;
}

.map-placeholder svg {
  width: 100%;
  height: auto;
}

.map-placeholder span {
  display: block;
  padding: 0.5rem;
  font-family: var(--font-hand);
  color: var(--burgundy);
  font-size: 1.1rem;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1.5fr 1fr;
  }
}

/* =============================================
   FOOTER
============================================= */
.site-footer {
  background: var(--cream-deep);
  position: relative;
  margin-top: 0;
  padding-top: 3rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  text-align: center;
  padding-bottom: 3rem;
}

.footer-logo {
  width: 140px;
  margin: 0 auto;
}

.footer-logo svg {
  width: 100%;
  height: 100%;
}

.footer-info {
  font-size: 0.95rem;
}

.footer-info p {
  margin-bottom: 0.4rem;
}

.footer-socials {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--pink);
  color: var(--cream);
  border-radius: 50%;
  transition: transform 0.2s ease;
}

.footer-socials a:hover {
  transform: scale(1.1);
  color: var(--cream);
  background: var(--pink-vivid);
}

.footer-copy {
  font-size: 0.85rem;
  color: var(--burgundy-soft);
  border-top: 1px solid rgba(92, 26, 45, 0.1);
  padding-top: 1.5rem;
  margin-top: 1rem;
}

.scallop-bottom {
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: auto 1fr auto;
    align-items: center;
    text-align: left;
    gap: 3rem;
  }
  .footer-copy {
    grid-column: 1 / -1;
    text-align: center;
  }
  .footer-socials {
    justify-content: flex-start;
  }
}

/* =============================================
   ANIMATIONS
============================================= */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.dot {
  animation: float 4s ease-in-out infinite;
}

.dot:nth-child(odd) { animation-duration: 5s; }
.dot:nth-child(3n)  { animation-duration: 6s; animation-delay: 0.5s; }
.dot:nth-child(4n)  { animation-duration: 4.5s; animation-delay: 1s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
