/* =============================================
   HERANDENYSANA.COM — Estilos principales
   Terapias Alternativas Amaneceres
   ============================================= */

/* ── VARIABLES ── */
:root {
  --terracota: #C4622D;
  --terracota-dark: #A0501F;
  --terracota-light: #E8856A;
  --cream: #FAF6F0;
  --warm-white: #FDF9F4;
  --brown-dark: #2D1F14;
  --brown-mid: #5C3D2A;
  --brown-light: #8B6150;
  --gold: #C9A96E;
  --gold-light: #E8D5B0;
  --morado: #16102A;
  --morado-dark: #0E0A1C;
  --morado-mid: #2A1F45;
  --morado-light: #D4B8E8;
}

/* ── RESET ── */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', sans-serif;
  background: var(--warm-white);
  color: var(--brown-dark);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.2rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.4s, backdrop-filter 0.4s;
}
nav.scrolled {
  background: rgba(250,246,240,0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 20px rgba(45,31,20,0.08);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--brown-dark);
  text-decoration: none;
}
.nav-logo span { color: var(--terracota); }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brown-mid);
  text-decoration: none;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--terracota); }
.nav-cta {
  background: var(--terracota);
  color: white !important;
  padding: 0.6rem 1.4rem;
  border-radius: 2px;
  transition: background 0.3s !important;
}
.nav-cta:hover { background: var(--terracota-dark) !important; }

/* ── HERO ── */
.hero {
  background: var(--terracota);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 10rem 6rem 8rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -10rem; left: -10rem;
  width: 40rem; height: 40rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -8rem; right: -8rem;
  width: 32rem; height: 32rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.hero-watermark {
  position: absolute;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22rem;
  font-weight: 600;
  color: rgba(255,255,255,0.04);
  bottom: -3rem;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: -0.02em;
}
.star-decoration {
  width: 70px; height: 70px;
  opacity: 0.45;
  margin-bottom: 2.5rem;
  animation: fadeUp 1s ease both;
}
.star-decoration svg { width: 100%; height: 100%; }
.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1.5rem;
  animation: fadeUp 1s 0.1s ease both;
  position: relative;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.2rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: white;
  margin-bottom: 1.5rem;
  animation: fadeUp 1s 0.2s ease both;
  position: relative;
  max-width: 800px;
}
.hero-title em { font-style: italic; font-weight: 400; display: block; }
.hero-tagline {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  margin-bottom: 3rem;
  max-width: 520px;
  animation: fadeUp 1s 0.3s ease both;
  position: relative;
}
.hero-tagline strong { color: white; font-weight: 500; }
.hero-taglines-row {
  display: flex;
  gap: 0;
  margin-bottom: 3rem;
  animation: fadeUp 1s 0.35s ease both;
  position: relative;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-tagline-pill {
  color: rgba(255,255,255,0.7);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  padding: 0 1.5rem;
  border-right: 1px solid rgba(255,255,255,0.25);
  line-height: 1;
}
.hero-tagline-pill:last-child { border-right: none; }
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: white;
  color: var(--terracota);
  padding: 1.1rem 2.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  border-radius: 2px;
  transition: all 0.3s;
  animation: fadeUp 1s 0.45s ease both;
  position: relative;
}
.hero-btn:hover { background: var(--brown-dark); color: white; transform: translateY(-2px); }
.hero-btn svg { transition: transform 0.3s; }
.hero-btn:hover svg { transform: translateX(4px); }
.hero-stats {
  display: flex;
  gap: 4rem;
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  animation: fadeUp 1s 0.55s ease both;
  position: relative;
}
.hero-stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: white;
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 0.3rem;
}

/* ── ABOUT ── */
.about {
  padding: 8rem 6rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  background: var(--warm-white);
}
.about-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracota);
  margin-bottom: 1.2rem;
}
.about-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: var(--brown-dark);
}
.about-title em { font-style: italic; color: var(--terracota); }
.about-text {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--brown-mid);
  margin-bottom: 1.5rem;
}
.about-stats {
  display: flex;
  gap: 3rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gold-light);
}
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--terracota);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brown-light);
  margin-top: 0.3rem;
}
.about-image-side { position: relative; }
.about-image-box {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, var(--gold-light), var(--terracota-light));
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  color: var(--brown-mid);
  overflow: hidden;
}
/* Cuando se añada la foto real: */
.about-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.about-accent-box {
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  background: var(--terracota);
  padding: 2rem;
  width: 180px;
}
.about-accent-box p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-style: italic;
  color: white;
  line-height: 1.3;
}

/* ── SERVICES ── */
.services {
  padding: 8rem 6rem;
  background: var(--brown-dark);
}
.section-header { text-align: center; margin-bottom: 5rem; }
.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracota-light);
  margin-bottom: 1rem;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.2;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-sub {
  margin-top: 1rem;
  font-size: 1rem;
  color: rgba(250,246,240,0.5);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(255,255,255,0.05);
}
.service-card {
  background: var(--brown-dark);
  padding: 3rem 2.5rem;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  height: 2px; width: 0;
  background: var(--terracota);
  transition: width 0.4s ease;
}
.service-card:hover { background: #3D2A1A; }
.service-card:hover::before { width: 100%; }
.service-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: rgba(201,169,110,0.2);
  line-height: 1;
  margin-bottom: 1.5rem;
  transition: color 0.3s;
}
.service-card:hover .service-number { color: rgba(201,169,110,0.4); }
.service-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.8rem;
  line-height: 1.3;
}
.service-desc {
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(250,246,240,0.5);
}

/* ── HOW IT WORKS ── */
.how { padding: 8rem 6rem; background: var(--cream); }
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-top: 5rem;
}
.how-step { position: relative; }
.how-step-line { display: none; }
.how-step-num {
  width: 3rem; height: 3rem;
  border: 1px solid var(--terracota);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--terracota);
  margin-bottom: 1.5rem;
}
.how-step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--brown-dark);
  margin-bottom: 0.8rem;
}
.how-step-text {
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--brown-mid);
}

/* ── TESTIMONIALS ── */
.testimonials { padding: 8rem 6rem; background: var(--warm-white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 5rem;
}
.testimonial-card {
  padding: 2.5rem;
  background: white;
  box-shadow: 0 4px 30px rgba(45,31,20,0.06);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: 'Cormorant Garamond', serif;
  font-size: 6rem;
  color: var(--gold-light);
  position: absolute;
  top: -1rem; left: 1.5rem;
  line-height: 1;
}
.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--brown-dark);
  margin-bottom: 1.5rem;
  padding-top: 1rem;
}
.testimonial-author {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracota);
}
.testimonial-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 0.5rem; }

/* ── CURSO PÉNDULO ── */
.curso {
  padding: 8rem 6rem;
  background: var(--morado);
  position: relative;
  overflow: hidden;
}
.curso::before {
  content: '';
  position: absolute;
  top: -8rem; right: -8rem;
  width: 36rem; height: 36rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107,78,125,0.45) 0%, transparent 70%);
  pointer-events: none;
}
.curso-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}
.curso-badge {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  color: var(--morado-light);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 2px;
  margin-bottom: 1.2rem;
}
.curso-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
  color: white;
  margin-bottom: 1.5rem;
}
.curso-title em { font-style: italic; color: var(--morado-light); }
.curso-desc {
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2rem;
}
.curso-includes {
  list-style: none;
  margin-bottom: 2.5rem;
}
.curso-includes li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  line-height: 1.5;
}
.curso-includes li:last-child { border-bottom: none; }
.curso-includes li::before {
  content: '✦';
  color: var(--morado-light);
  font-size: 0.7rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}
.curso-pricing {
  background: var(--morado-mid);
  padding: 2.5rem;
  border-radius: 2px;
}
.curso-pricing-label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracota-light);
  margin-bottom: 1.5rem;
}
.curso-price-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: white;
  line-height: 1;
}
.curso-price-main span {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.5);
  vertical-align: super;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
}
.curso-price-sub {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}
.curso-discount-box {
  background: rgba(212,184,232,0.12);
  border: 1px solid rgba(212,184,232,0.25);
  padding: 1rem 1.2rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}
.curso-discount-label {
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--morado-light);
  margin-bottom: 0.3rem;
}
.curso-discount-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: white;
  line-height: 1.4;
}
.curso-discount-price {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--morado-light);
}
.curso-details {
  list-style: none;
  margin-bottom: 2rem;
}
.curso-details li {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.curso-details li:last-child { border-bottom: none; }
.curso-details li strong { color: rgba(255,255,255,0.85); }
.btn-curso {
  display: block;
  background: rgba(212,184,232,0.1);
  color: var(--morado-light);
  border: 1px solid rgba(212,184,232,0.35);
  text-align: center;
  padding: 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.btn-curso:hover { background: rgba(212,184,232,0.2); border-color: var(--morado-light); color: white; }
.curso-spots {
  text-align: center;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  margin-top: 0.8rem;
  letter-spacing: 0.08em;
}

/* ── CTA BANNER ── */
.cta-banner {
  padding: 8rem 6rem;
  background: var(--terracota);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: 'AMANECERES';
  position: absolute;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18rem;
  font-weight: 600;
  color: rgba(255,255,255,0.04);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
}
.cta-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.5rem;
}
.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 300;
  color: white;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.cta-title em { font-style: italic; }
.cta-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 3rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-white {
  background: white;
  color: var(--terracota);
  padding: 1rem 2.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  border-radius: 2px;
  transition: all 0.3s;
}
.btn-white:hover { background: var(--brown-dark); color: white; }
.btn-outline-white {
  background: transparent;
  color: white;
  padding: 1rem 2.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 400;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 2px;
  transition: all 0.3s;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: white; }

/* ── CONTACT ── */
.contact {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  background: var(--cream);
}
.contact-left {
  padding: 8rem 5rem 8rem 6rem;
  border-right: 1px solid var(--gold-light);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 3.5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--brown-dark);
  margin-top: 1.2rem;
}
.contact-heading em { font-style: italic; color: var(--terracota); display: block; }
.contact-right {
  padding: 8rem 6rem 8rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: var(--brown-mid);
}
.contact-item-icon {
  width: 2.5rem; height: 2.5rem;
  background: var(--terracota);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ── FOOTER ── */
footer {
  background: var(--brown-dark);
  padding: 3rem 6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--cream);
}
.footer-logo span { color: var(--terracota-light); }
.footer-links { display: flex; gap: 2rem; list-style: none; }
.footer-links a {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250,246,240,0.4);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--terracota-light); }
.footer-copy { font-size: 0.75rem; color: rgba(250,246,240,0.3); }

/* ── WHATSAPP ── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 200;
  width: 3.5rem;
  height: 3.5rem;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}
.whatsapp-float svg { width: 1.8rem; height: 1.8rem; }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.55); }

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 0.8rem;
  background: #25D366;
  color: white;
  padding: 1.1rem 2.2rem;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.3s, transform 0.3s;
  margin-bottom: 2.5rem;
}
.btn-whatsapp:hover { background: #1ebe5d; transform: translateY(-2px); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  html, body { overflow-x: hidden; max-width: 100%; }
  nav { padding: 1rem 2rem; }
  .nav-links { display: none; }
  .hero { padding: 8rem 2rem 5rem; }
  .hero-watermark { font-size: 8rem; }
  .hero-title { font-size: 2.4rem; }
  .hero-taglines-row { display: none; }
  .about { grid-template-columns: 1fr; padding: 5rem 2rem; gap: 3rem; }
  .about-image-side { display: none; }
  .services { padding: 5rem 2rem; }
  .services-grid { grid-template-columns: 1fr; gap: 1px; }
  .how { padding: 5rem 2rem; }
  .how-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .how-step-line { display: none; }
  .testimonials { padding: 5rem 2rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .curso { padding: 5rem 2rem; }
  .curso-inner { grid-template-columns: 1fr; gap: 3rem; }
  .cta-banner { padding: 5rem 2rem; }
  .contact { grid-template-columns: 1fr; }
  .contact-left { padding: 5rem 2rem 3rem; border-right: none; border-bottom: 1px solid var(--gold-light); }
  .contact-right { padding: 3rem 2rem 5rem; }
  .btn-whatsapp { align-self: stretch; justify-content: center; }
  footer { padding: 2rem; flex-direction: column; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 1rem 1.5rem; }
  .footer-copy { word-break: break-all; }
}
