/* =========================================================
   Click It Up Media — Landing Page Styles
   Paleta exacta provista por el cliente
   ========================================================= */

:root {
  --color-teal-dark: #095459;
  --color-teal-light: #C8DCDA;
  --color-mist: #F0F4F3;
  --color-ink: #080705;
  --color-coral: #F9665E;
  --color-peach: #F8AF8E;
  --color-cream: #FBF2EB;
  --color-white: #FFFFFF;

  --font-hero: 'Clash Display', sans-serif;
  --font-section: 'Clash Display', sans-serif;
  --font-secondary: 'Satoshi', sans-serif;
  --font-nav: 'General Sans', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-md: 14px;
  --radius-lg: 28px;
  --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
  --transition-fast: 0.22s var(--ease-premium);
  --transition-mid: 0.45s var(--ease-premium);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

/* ============ Page Loader ============ */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--color-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  z-index: 9999;
  transition: opacity 0.55s var(--ease-premium), visibility 0.55s;
}
.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-logo {
  width: 200px;
  height: auto;
  overflow: visible;
}

#ldr-box {
  transform-box: fill-box;
  transform-origin: center;
  animation: ldrBox 3.8s ease-in-out infinite backwards;
}
#ldr-U {
  transform-box: fill-box;
  transform-origin: center;
  animation: ldrRight 3.8s 0.2s ease-in-out infinite backwards;
}
#ldr-P {
  transform-box: fill-box;
  transform-origin: center;
  animation: ldrRight 3.8s 0.35s ease-in-out infinite backwards;
}
#ldr-media {
  animation: ldrMedia 3.8s 0.55s ease-in-out infinite backwards;
}

@keyframes ldrBox {
  0%, 4%  { opacity: 0; transform: translateX(-20px); }
  20%, 60% { opacity: 1; transform: translateX(0); }
  78%, 100% { opacity: 0; transform: translateX(-12px); }
}
@keyframes ldrRight {
  0%, 4%  { opacity: 0; transform: translateX(20px); }
  20%, 60% { opacity: 1; transform: translateX(0); }
  78%, 100% { opacity: 0; transform: translateX(12px); }
}
@keyframes ldrMedia {
  0%, 4%  { opacity: 0; transform: translateY(10px); }
  20%, 60% { opacity: 1; transform: translateY(0); }
  78%, 100% { opacity: 0; transform: translateY(6px); }
}
.loader-dots {
  display: flex;
  gap: 10px;
}
.loader-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-coral);
  animation: loaderDot 1.2s ease-in-out infinite;
}
.loader-dots span:nth-child(2) { animation-delay: 0.2s; }
.loader-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes loaderDot {
  0%, 80%, 100% { transform: scale(0.55); opacity: 0.35; }
  40% { transform: scale(1); opacity: 1; }
}

body {
  font-family: var(--font-body);
  color: var(--color-ink);
  background: var(--color-white);
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }

.eyebrow {
  font-family: var(--font-nav);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-coral);
  font-size: 0.82rem;
  margin-bottom: 0.5rem;
}
.eyebrow--light { color: var(--color-peach); }

.text-coral { color: var(--color-coral); }
.text-teal { color: var(--color-teal-dark); }

/* ============ Buttons ============ */
.btn-cta, .btn-primary-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-nav);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast);
  will-change: transform;
}

.btn-cta {
  background: var(--color-coral);
  color: var(--color-white);
}
.btn-cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 24px -8px rgba(249, 102, 94, 0.55);
  background: #f0524a;
}
.btn-cta:active { transform: translateY(0) scale(0.98); }

.btn-cta--nav {
  background: var(--color-peach);
  color: var(--color-ink);
}
.btn-cta--nav:hover {
  background: #f4a07b;
  box-shadow: 0 12px 24px -8px rgba(248, 175, 142, 0.5);
  color: var(--color-ink);
}

.btn-primary-dark {
  background: var(--color-teal-dark);
  color: var(--color-white);
}
.btn-primary-dark:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 24px -8px rgba(9, 84, 89, 0.45);
  background: #0c6469;
}
.btn-primary-dark:active { transform: translateY(0) scale(0.98); }

.btn-cta .arrow, .btn-primary-dark .arrow {
  transition: transform var(--transition-fast);
  display: inline-block;
}
.btn-cta:hover .arrow, .btn-primary-dark:hover .arrow {
  transform: translateX(4px);
}

/* ============ Header ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-teal-light);
}

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

.brand-logo {
  height: 46px;
  transition: transform var(--transition-fast);
}
.brand:hover .brand-logo { transform: scale(1.04); }

.main-nav {
  gap: 2rem;
  font-family: var(--font-nav);
  font-weight: 500;
  font-size: 0.95rem;
}
.main-nav a {
  position: relative;
  padding: 0.25rem 0;
  transition: color var(--transition-fast);
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--color-coral);
  transition: width var(--transition-fast);
}
.main-nav a:hover { color: var(--color-coral); }
.main-nav a:hover::after { width: 100%; }

.nav-toggle {
  background: none;
  border: none;
  width: 26px;
  height: 20px;
  position: relative;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-ink);
  border-radius: 2px;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}
.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 9px; }
.nav-toggle span:nth-child(3) { top: 18px; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
.nav-toggle:not(.is-open):hover span:nth-child(1) { transform: translateY(9px); }
.nav-toggle:not(.is-open):hover span:nth-child(3) { transform: translateY(-9px); }

.mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  background: var(--color-white);
  font-family: var(--font-nav);
  font-weight: 500;
  transition: max-height var(--transition-mid), padding var(--transition-mid);
}
.mobile-menu.is-open {
  max-height: 400px;
  padding: 1rem 1.5rem 1.5rem;
}
.mobile-cta { align-self: flex-start; margin-top: 0.5rem; }

/* ============ Hero ============ */
.hero {
  background: var(--color-white);
  overflow: hidden;
}

.hero-text-col {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 3rem;
}

.hero-text-inner {
  max-width: 520px;
  width: 100%;
}

.hero-title {
  font-family: var(--font-hero);
  font-weight: 700;
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  line-height: 1.05;
  margin-bottom: 1.25rem;
}

.hero-subtitle {
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  margin-bottom: 1.5rem;
}
.hero-subtitle::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--color-coral);
  border-radius: 2px;
  margin-top: 1rem;
}

.hero-body {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #3a3a38;
  max-width: 440px;
  margin-bottom: 1.75rem;
}

.hero-media {
  border-radius: 0;
  overflow: hidden;
  height: 100%;
  min-height: 460px;
  position: relative;
}
.hero-img {
  position: absolute;
  width: 100%;
  height: 160%;
  top: -30%;
  object-fit: cover;
  display: block;
  will-change: transform;
}

/* ============ Services split ============ */
.services-split { overflow: hidden; }

.service-panel {
  padding: 4rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-panel--coral { background: var(--color-cream); }
.service-panel--teal { background: var(--color-mist); }

.service-panel-inner { max-width: 460px; width: 100%; }

.service-index {
  font-family: var(--font-nav);
  font-weight: 600;
  font-size: 0.85rem;
}
.service-panel--coral .service-index { color: var(--color-coral); }
.service-panel--teal .service-index { color: var(--color-teal-dark); }

.service-title {
  font-family: var(--font-hero);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.05;
  margin: 0.5rem 0 0;
}
.service-panel--coral .service-title { color: var(--color-coral); }
.service-panel--teal .service-title { color: var(--color-teal-dark); }

.service-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  border-radius: 2px;
  margin: 1rem 0 1.25rem;
}
.service-panel--coral .service-title::after { background: var(--color-coral); }
.service-panel--teal .service-title::after { background: var(--color-teal-dark); }

.service-desc {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #2c2c2a;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.95rem;
  font-weight: 400;
  transition: transform var(--transition-fast);
}
.service-list li:hover { transform: translateX(4px); }

.icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}
.icon-circle svg { flex-shrink: 0; }
.service-panel--coral .icon-circle { background: var(--color-peach); }
.service-panel--teal .icon-circle { background: var(--color-teal-light); }

/* ============ Process ============ */
.process-section {
  padding: 6rem 0;
  background: var(--color-cream);
}

.process-title {
  font-family: var(--font-hero);
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: 0.5rem;
}

.underline-accent {
  text-decoration: underline;
  text-decoration-color: var(--color-coral);
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
}

.process-subtitle {
  font-size: 1.2rem;
  color: #444;
  min-height: 1.6em;
}
#processSubtitle {
  display: inline-block;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.step-card {
  background: transparent;
  border-radius: var(--radius-md);
  padding: 0;
  position: relative;
  height: 100%;
  min-height: 210px;
  perspective: 1000px;
  transform-style: preserve-3d;
}

.step-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 210px;
  transform-style: preserve-3d;
  transition: transform 0.6s var(--ease-premium);
}

@media (min-width: 768px) {
  .step-card:hover .step-card-inner {
    transform: rotateX(180deg);
  }
}

.step-card-front,
.step-card-back {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.75rem 1.75rem;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.step-card-front {
  background: var(--color-white);
}

.step-card-back {
  background: var(--color-peach);
  transform: rotateX(180deg);
}

.step-back-text {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.55;
  text-align: center;
  color: var(--color-white);
  margin: 0;
  font-weight: 500;
}

.step-num {
  position: absolute;
  top: 0.75rem;
  left: 0.9rem;
  font-family: var(--font-nav);
  font-weight: 600;
  font-size: 0.82rem;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-coral);
  color: var(--color-white);
}

.step-icon {
  font-size: 1.8rem;
  margin: 1.25rem 0 0.85rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-coral);
}
.step-icon svg { flex-shrink: 0; width: 52px; height: 52px; }

.step-label {
  font-family: var(--font-nav);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  margin: 0;
}

/* connecting dotted line between steps (desktop only) */
/* gap between cards = col right padding (0.75rem) + col left padding (0.75rem) = 1.5rem */
.process-steps .col-md-3:not(:last-child) .step-card::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -1.5rem;
  width: 1.5rem;
  border-top: 2px dotted var(--color-peach);
  transform: translateY(-50%);
  z-index: 2;
  pointer-events: none;
}
@media (max-width: 767.98px) {
  .process-steps .col-md-3 .step-card::after { display: none; }
}

/* ============ About ============ */
.about-section {
  display: block;
  margin: 0;
}

.about-media {
  position: relative;
  min-height: 200px;
  overflow: hidden;
}
.about-img {
  position: absolute;
  width: 100%;
  height: 140%;
  top: -20%;
  object-fit: cover;
  object-position: center center;
  display: block;
  will-change: transform;
}

.experience-badge {
  position: absolute;
  left: 1.5rem;
  top: 1.5rem;
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 8px 24px -8px rgba(8, 7, 5, 0.3);
}
.experience-line {
  width: 3px;
  height: 28px;
  background: var(--color-coral);
  border-radius: 2px;
}
.experience-text {
  font-family: var(--font-nav);
  font-weight: 600;
  font-size: 0.82rem;
  line-height: 1.3;
  color: var(--color-ink);
}

.about-content {
  background: var(--color-white);
  padding: 1.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-title {
  font-family: var(--font-hero);
  font-weight: 700;
  font-size: clamp(2rem, 2.5vw, 2.75rem);
  line-height: 1.05;
  margin-bottom: 0;
}
.about-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--color-coral);
  border-radius: 2px;
  margin: 0.6rem 0 0.85rem;
}

.about-body {
  font-size: 1rem;
  line-height: 1.55;
  color: #3a3a38;
  margin-bottom: 0.75rem;
  max-width: 480px;
}
.about-body:last-of-type { margin-bottom: 0; }

/* ============ Contact ============ */
.contact-section {
  background: var(--color-teal-dark);
  color: var(--color-white);
  padding: 5rem 0;
}

.contact-title {
  font-family: var(--font-hero);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.1;
  color: var(--color-white);
  margin-bottom: 1.5rem;
}

.contact-info li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
  font-size: 0.98rem;
}
.contact-icon {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.contact-info a { transition: color var(--transition-fast); }
.contact-info a:hover { color: var(--color-peach); }

.contact-form .form-control {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--color-white);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  transition: border-color var(--transition-fast), background-color var(--transition-fast), box-shadow var(--transition-fast);
}
.contact-form .form-control::placeholder { color: rgba(255, 255, 255, 0.55); }
.contact-form .form-control:focus {
  outline: none;
  border-color: var(--color-coral);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 0 0 4px rgba(249, 102, 94, 0.18);
}

.form-feedback {
  display: inline-block;
  margin-left: 1rem;
  font-size: 0.9rem;
  color: var(--color-peach);
  opacity: 0;
  transition: opacity var(--transition-fast);
}
.form-feedback.is-visible { opacity: 1; }

/* ============ Lang toggle ============ */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: none;
  border: none;
  border-radius: 8px;
  padding: 0.3rem 0.5rem;
  font-size: 0.82rem;
  font-family: var(--font-nav);
  font-weight: 400;
  cursor: pointer;
  color: var(--color-ink);
  transition: background var(--transition-fast);
  white-space: nowrap;
}
.lang-flag { font-size: 1rem; line-height: 1; display: inline-flex; align-items: center; }
.lang-toggle:hover { background: none; }

.header-actions { align-items: center; }
.header-actions .lang-toggle,
.header-actions .header-instagram,
.header-actions .btn-cta--nav { vertical-align: middle; }
.lang-toggle--mobile { align-self: flex-start; }

/* ============ Form success ============ */
.form-success-state {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 2rem 0;
  color: var(--color-white);
}
.form-success-icon { color: var(--color-peach); }
.form-success-title {
  font-family: var(--font-hero);
  font-weight: 700;
  font-size: 1.75rem;
  margin: 0;
  color: var(--color-white);
}
.form-success-body {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  margin: 0;
}

/* ============ Back to top ============ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--color-coral);
  color: var(--color-white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--transition-fast), transform var(--transition-fast), background var(--transition-fast);
  z-index: 99;
  pointer-events: none;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover { background: #f0524a; transform: translateY(-2px); }

/* ============ Instagram icon ============ */
.header-instagram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-ink);
  transition: color var(--transition-fast), transform var(--transition-fast);
  line-height: 1;
}
.header-instagram:hover {
  color: var(--color-coral);
  transform: scale(1.12);
}

.footer-instagram {
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition-fast);
  line-height: 1;
}
.footer-instagram:hover { color: rgba(255, 255, 255, 1); }

.footer-right {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

/* ============ Footer ============ */
.site-footer {
  background: var(--color-ink);
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
  padding: 1.5rem 0;
}

/* ============ Reveal on scroll (fallback class, AOS handles most) ============ */
[data-aos] { will-change: transform, opacity; }

/* ============ Lang flag SVG ============ */
.lang-flag { display: inline-flex; align-items: center; }
.lang-flag svg { width: 20px; height: 14px; border-radius: 2px; display: block; flex-shrink: 0; }

/* ============ Scroll anchor offset (accounts for sticky header ~78px) ============ */
#services, #process, #about, #contact {
  scroll-margin-top: 80px;
}

/* ============ Desktop-only overrides ============ */
@media (min-width: 992px) {
  /* Process — eyebrow más prominente */
  .process-section .eyebrow { font-size: 0.95rem; letter-spacing: 0.1em; }

  /* Hero & About — reduce height */
  .hero-text-col { padding: 2.75rem 3rem; }
  .hero-media { min-height: 300px; }
  .about-media { min-height: 300px; }
}

/* ============ Responsive ============ */
@media (max-width: 991.98px) {
  .hero-text-col { padding: 3.5rem 2rem; }
  .hero-media { min-height: 400px; }
  .about-content { padding: 2rem 1.75rem; }
  .service-panel { padding: 3rem 1.5rem; }
}

@media (max-width: 767.98px) {
  .hero-media { min-height: 320px; }
  .about-media { min-height: 260px; }
}

@media (max-width: 575.98px) {
  /* Hero */
  .hero-title { font-size: 2.4rem; }
  .hero-text-col { padding: 2rem 1.5rem; }
  .hero-media { min-height: 240px; max-height: 260px; }

  /* Services — Build The Base & Fuel The Growth */
  .service-panel { padding: 2.5rem 1.5rem; }
  .service-title { font-size: 2.4rem; }
  .service-desc { font-size: 1.1rem; }
  .service-list li { padding: 0.3rem 0; font-size: 0.95rem; }
  .service-panel--coral .service-list li:last-child strong {
    color: var(--color-coral);
    font-size: 1.05rem;
    font-weight: 700;
  }
  .service-panel--teal .service-list li:last-child strong {
    color: var(--color-teal-dark);
    font-size: 1.05rem;
    font-weight: 700;
  }

  /* Process — Build First. Scale Smart. */
  .process-section { padding: 3rem 0; }
  .process-steps { margin-top: 1.5rem !important; }

  /* Mobile: no flip — show icon+title then text stacked */
  .step-card {
    min-height: unset;
    perspective: none;
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: 0 4px 12px -6px rgba(8,7,5,0.12);
  }
  .step-card-inner {
    position: static;
    min-height: unset;
    height: auto;
    display: flex;
    flex-direction: column;
    transform: none !important;
    transform-style: flat;
  }
  .step-card-front {
    position: relative;
    inset: auto;
    transform: none !important;
    backface-visibility: visible;
    -webkit-backface-visibility: visible;
    height: auto;
    padding: 1.25rem 1.25rem 0.5rem;
    background: var(--color-white);
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    justify-content: flex-start;
  }
  .step-card-back {
    position: static;
    transform: none !important;
    backface-visibility: visible;
    -webkit-backface-visibility: visible;
    height: auto;
    background: transparent;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    padding: 0 1.25rem 1.25rem;
    justify-content: flex-start;
  }
  .step-back-text {
    font-size: 0.78rem;
    color: #555;
    text-align: center;
    line-height: 1.45;
  }

  /* About — Imagen aérea de Miami */
  .about-media { min-height: 160px; max-height: 180px; }
  .about-content { padding: 2rem 1.25rem; }

  /* Contact — más protagonismo a la info de contacto */
  .contact-section { padding: 3rem 0; }
  .contact-info { margin-top: 1.25rem; }
  .contact-info li { font-size: 1.05rem; margin-bottom: 1rem; gap: 0.75rem; }

  /* Footer */
  .site-footer { padding: 2rem 0; }
  .site-footer .container { flex-direction: column; gap: 0.6rem; text-align: center; }
  .footer-right { flex-direction: column; gap: 0.4rem; align-items: center; }
}
