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

:root {
  --terra-50: #fdf0eb;
  --terra-100: #f9ddd3;
  --terra-300: #e99574;
  --terra-400: #df6b45;
  --terra-500: #d4522a;
  --terra-600: #c23d1e;
  --arena-100: #fdf6ec;
  --arena-200: #fae9cc;
  --arena-300: #f5d5a0;
  --arena-500: #e5a855;
  --arena-800: #915e2f;
  --crema: #FDF8F3;
  --arena-oscuro: #5C4033;
  --arena-oscuro-light: #7a5c4f;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(92, 64, 51, 0.06);
  --shadow-md: 0 4px 20px rgba(92, 64, 51, 0.1);
  --shadow-lg: 0 8px 40px rgba(92, 64, 51, 0.12);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--crema);
  color: var(--arena-oscuro);
  font-family: 'Nunito', system-ui, sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  font-weight: 700;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

/* ===== NAVIGATION ===== */
.nav-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 248, 243, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(228, 170, 120, 0.15);
  transition: var(--transition);
}

.nav-fixed.scrolled {
  background: rgba(253, 248, 243, 0.95);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--arena-oscuro);
}

.nav-logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--terra-400), var(--terra-500));
  border-radius: 10px;
  color: white;
}

.nav-links-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-link-desktop {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--arena-oscuro-light);
  position: relative;
  padding: 0.25rem 0;
}

.nav-link-desktop::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--terra-400);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-link-desktop:hover::after {
  width: 100%;
}

.nav-link-desktop:hover {
  color: var(--terra-500);
}

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--arena-oscuro);
  border-radius: 10px;
  transition: var(--transition);
}

.nav-toggle:hover {
  background: var(--terra-50);
  color: var(--terra-500);
}

/* Mobile menu overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(253, 248, 243, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

.nav-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--arena-oscuro);
  border-radius: 10px;
  transition: var(--transition);
}

.nav-close:hover {
  background: var(--terra-50);
  color: var(--terra-500);
}

.nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.nav-link {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--arena-oscuro);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--terra-500);
  background: var(--terra-50);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--terra-400), var(--terra-500));
  color: white;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 4px 20px rgba(212, 82, 42, 0.3);
  transition: var(--transition);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(212, 82, 42, 0.4);
  color: white;
}

/* ===== SECTION COMMON ===== */
.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terra-400);
  background: var(--terra-50);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--arena-oscuro);
  margin-bottom: 1rem;
}

.text-terra {
  color: var(--terra-500);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--arena-oscuro-light);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

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

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 2rem 4rem;
  background: linear-gradient(135deg, var(--crema) 0%, var(--arena-100) 50%, var(--terra-50) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(228, 170, 120, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 82, 42, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-content {
  order: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--terra-500);
  background: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--terra-400);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  line-height: 1.1;
  color: var(--arena-oscuro);
  margin-bottom: 1.5rem;
}

.hero-title-accent {
  color: var(--terra-500);
  font-style: italic;
  position: relative;
}

.hero-title-accent::after {
  content: '';
  position: absolute;
  bottom: 0.05em;
  left: 0;
  right: 0;
  height: 0.12em;
  background: var(--terra-100);
  z-index: -1;
  border-radius: 4px;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--arena-oscuro-light);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--terra-400), var(--terra-500));
  color: white;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 4px 20px rgba(212, 82, 42, 0.3);
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(212, 82, 42, 0.4);
  color: white;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--white);
  color: var(--arena-oscuro);
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: var(--terra-500);
}

.hero-stats {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--terra-500);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--arena-oscuro-light);
  font-weight: 500;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--arena-200);
}

.hero-visual {
  order: 1;
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 420px;
  width: 100%;
}

.hero-img-main img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.hero-img-secondary {
  position: absolute;
  bottom: -1rem;
  left: -2rem;
  width: 180px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--crema);
}

.hero-img-secondary img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.hero-decoration {
  position: absolute;
  top: -2rem;
  right: -1rem;
  color: var(--arena-300);
  opacity: 0.4;
  animation: rotate-slow 20s linear infinite;
}

@keyframes rotate-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  color: var(--crema);
}

.hero-wave svg {
  display: block;
  width: 100%;
  height: 80px;
}

/* ===== ABOUT ===== */
.about {
  padding: 6rem 2rem;
  background: var(--crema);
}

.about-container {
  max-width: 1280px;
  margin: 0 auto;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.about-images {
  position: relative;
}

.about-img-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-wrapper img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.about-img-accent {
  position: absolute;
  bottom: -2rem;
  right: -1rem;
  width: 200px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--crema);
}

.about-img-accent img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  top: -1rem;
  right: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--terra-400), var(--terra-500));
  color: white;
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 4px 20px rgba(212, 82, 42, 0.3);
}

.about-content {
  padding: 1rem 0;
}

.about-text {
  font-size: 1.05rem;
  color: var(--arena-oscuro-light);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.about-value {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.about-value-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--terra-50);
  color: var(--terra-500);
  border-radius: 12px;
}

.about-value strong {
  display: block;
  font-size: 0.95rem;
  color: var(--arena-oscuro);
  margin-bottom: 0.15rem;
}

.about-value span {
  font-size: 0.85rem;
  color: var(--arena-oscuro-light);
}

/* ===== SERVICES ===== */
.services {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, var(--crema) 0%, var(--arena-100) 100%);
}

.services-container {
  max-width: 1280px;
  margin: 0 auto;
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.service-card-img {
  overflow: hidden;
  height: 200px;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-img img {
  transform: scale(1.05);
}

.service-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--terra-50), var(--terra-100));
  color: var(--terra-500);
  border-radius: 14px;
}

.service-card-title {
  font-size: 1.25rem;
  color: var(--arena-oscuro);
}

.service-card-text {
  font-size: 0.95rem;
  color: var(--arena-oscuro-light);
  line-height: 1.7;
}

/* ===== GALLERY ===== */
.gallery {
  padding: 6rem 2rem;
  background: var(--crema);
}

.gallery-container {
  max-width: 1280px;
  margin: 0 auto;
}

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

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(92, 64, 51, 0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay span {
  color: white;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
}

/* ===== SCHEDULE ===== */
.schedule {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, var(--arena-100) 0%, var(--terra-50) 100%);
}

.schedule-container {
  max-width: 1280px;
  margin: 0 auto;
}

.schedule-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.schedule-content {
  order: 2;
}

.schedule-text {
  font-size: 1.05rem;
  color: var(--arena-oscuro-light);
  line-height: 1.9;
  margin-bottom: 2rem;
}

.schedule-table {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 1.5rem;
}

.schedule-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--arena-100);
  transition: var(--transition);
}

.schedule-row:last-child {
  border-bottom: none;
}

.schedule-row:hover {
  background: var(--terra-50);
}

.schedule-day {
  font-weight: 700;
  color: var(--arena-oscuro);
  font-size: 0.95rem;
}

.schedule-hours {
  font-size: 0.9rem;
  color: var(--arena-oscuro-light);
}

.schedule-row--closed .schedule-day,
.schedule-row--closed .schedule-hours {
  color: var(--terra-400);
}

.schedule-note {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--arena-oscuro-light);
  box-shadow: var(--shadow-sm);
}

.schedule-note svg {
  color: var(--terra-400);
  flex-shrink: 0;
}

.schedule-visual {
  order: 1;
  position: relative;
  display: flex;
  justify-content: center;
}

.schedule-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 380px;
  width: 100%;
}

.schedule-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.schedule-deco {
  position: absolute;
  bottom: -1.5rem;
  left: -1rem;
  color: var(--arena-300);
  opacity: 0.3;
}

/* ===== CONTACT ===== */
.contact {
  padding: 6rem 2rem;
  background: var(--crema);
}

.contact-container {
  max-width: 1280px;
  margin: 0 auto;
}

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

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.contact-card-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--terra-50), var(--terra-100));
  color: var(--terra-500);
  border-radius: 12px;
}

.contact-card strong {
  display: block;
  font-size: 0.85rem;
  color: var(--arena-oscuro);
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-card p {
  font-size: 0.95rem;
  color: var(--arena-oscuro-light);
  line-height: 1.6;
}

.contact-card a {
  color: var(--terra-500);
  font-weight: 600;
}

.contact-card a:hover {
  color: var(--terra-600);
  text-decoration: underline;
}

.contact-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--arena-oscuro);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.85rem 1rem;
  border: 2px solid var(--arena-200);
  border-radius: var(--radius-sm);
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  color: var(--arena-oscuro);
  background: var(--crema);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--terra-400);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(228, 170, 120, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--arena-300);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-full {
  width: 100%;
  justify-content: center;
  padding: 1.1rem 2rem;
  font-size: 1.05rem;
}

.form-success {
  text-align: center;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.form-success-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--terra-50), var(--terra-100));
  color: var(--terra-500);
  border-radius: 50%;
}

.form-success h3 {
  font-size: 1.5rem;
  color: var(--arena-oscuro);
}

.form-success p {
  color: var(--arena-oscuro-light);
  font-size: 1rem;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--arena-oscuro);
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 2rem 2rem;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: white;
  margin-bottom: 1rem;
}

.footer-logo-icon {
  font-size: 1.5rem;
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.5);
}

.footer-links-group h4 {
  font-family: 'Nunito', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1rem;
}

.footer-links-group a {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  padding: 0.3rem 0;
  transition: var(--transition);
}

.footer-links-group a:hover {
  color: var(--terra-300);
  padding-left: 0.5rem;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding-top: 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ===== FLOATING CTA ===== */
.float-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--terra-400), var(--terra-500));
  color: white;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(212, 82, 42, 0.4);
  z-index: 900;
  transition: var(--transition);
  animation: float-bounce 3s ease-in-out infinite;
}

.float-cta:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(212, 82, 42, 0.5);
  color: white;
}

@keyframes float-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ===== ANIMATIONS ===== */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item--large {
    grid-column: span 2;
  }

  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .hero {
    padding: 8rem 3rem 6rem;
  }

  .hero-img-main img {
    height: 600px;
  }

  .about-img-wrapper img {
    height: 560px;
  }

  .schedule-img img {
    height: 560px;
  }

  .contact-layout {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .nav-toggle {
    display: none;
  }

  .hero-container {
    grid-template-columns: 1fr 1fr;
  }

  .hero-content {
    order: 1;
  }

  .hero-visual {
    order: 2;
  }

  .hero-img-main img {
    height: 640px;
  }

  .hero-img-secondary {
    width: 220px;
    left: -3rem;
  }

  .hero-img-secondary img {
    height: 220px;
  }

  .about-layout {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .about-img-wrapper img {
    height: 600px;
  }

  .about-img-accent {
    width: 240px;
    right: -2rem;
  }

  .about-img-accent img {
    height: 180px;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
  }

  .gallery-item--large {
    grid-column: span 2;
    grid-row: span 2;
  }

  .gallery-item--tall {
    grid-row: span 2;
  }

  .schedule-layout {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .schedule-content {
    order: 1;
  }

  .schedule-visual {
    order: 2;
    justify-content: flex-end;
  }

  .schedule-img {
    max-width: 420px;
  }

  .schedule-img img {
    height: 560px;
  }

  .footer-top {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

@media (min-width: 1280px) {
  .hero {
    padding: 8rem 4rem 6rem;
  }

  .hero-img-main {
    max-width: 520px;
  }

  .hero-img-secondary {
    width: 280px;
    left: -2rem;
  }

  .hero-img-secondary img {
    height: 280px;
  }
}
