:root {
  --gold: #D4A03C;
  --gold-light: #F0C864;
  --gold-dim: rgba(212,160,60,0.18);
  --cream: #F5EDD8;
  --warm-dark: #130D06;
  --warm-mid: #1E1208;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Jost', system-ui, sans-serif;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  cursor: none !important; /* Cursor personalizado */
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-sans);
}

body {
  background: var(--warm-dark);
  color: var(--cream);
  overflow-x: hidden;
  line-height: 1.5;
}

::-webkit-scrollbar { width: 2px; }
::-webkit-scrollbar-track { background: var(--warm-dark); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 4px; }
::selection { background: rgba(212,160,60,0.25); }

/* UTILIDADES Y TIPO */
.serif { font-family: var(--font-serif); }

.container {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--sm {
  max-width: 1024px;
}

.container--relative {
  position: relative;
}

.highlight {
  color: var(--gold);
  font-style: italic;
}

.highlight-dim {
  color: rgba(212,160,60,0.55);
}

.icon-sm {
  width: 13px;
  height: 13px;
}

.hidden-mobile {
  display: none;
}

.mobile-only {
  display: flex;
}

@media (min-width: 768px) {
  .hidden-mobile { display: flex; }
  .mobile-only { display: none; }
  .container { padding: 0 48px; }
}

/* CURSOR PERSONALIZADO */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(212,160,60,0.55);
  background: rgba(212,160,60,0.06);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.15s, transform 0.15s;
}

.cursor.clicking {
  transform: translate(-50%, -50%) scale(0.7);
}

/* ANIMACIONES GLOBALES (REEMPLAZO FRAMER MOTION) */
.blur-reveal {
  opacity: 0;
  filter: blur(12px);
  transform: translateY(24px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), 
              filter 1s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.blur-reveal.visible {
  opacity: 1;
  filter: blur(0px);
  transform: translateY(0);
}

/* HEADER */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(19,13,6,0.7);
  border-bottom: 1px solid rgba(212,160,60,0.08);
}

@media (min-width: 768px) {
  .header { padding: 20px 48px; }
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header__logo-icon {
  color: var(--gold);
  opacity: 0.8;
  width: 16px;
  height: 16px;
}

.header__logo-text {
  font-size: 1.125rem;
  letter-spacing: 0.18em;
  font-weight: 300;
  color: var(--cream);
}

.header__nav {
  align-items: center;
  gap: 28px;
}

.header__link {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245,237,216,0.4);
  font-weight: 300;
  text-decoration: none;
  transition: color 0.3s;
}

.header__link:hover {
  color: var(--gold);
}

.header__cta {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 9999px;
  color: var(--gold);
  border: 1px solid rgba(212,160,60,0.3);
  text-decoration: none;
  font-weight: 300;
  transition: all 0.4s;
  align-items: center;
  gap: 8px;
}

.header__cta:hover {
  background: rgba(212,160,60,0.1);
  border-color: rgba(212,160,60,0.6);
}

.header__menu-btn {
  background: none;
  border: none;
  flex-direction: column;
  gap: 6px;
  padding: 4px;
}

.menu-line {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
  transition: transform 0.3s, opacity 0.3s;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(19,13,6,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 32px;
  text-align: center;
}

.mobile-menu__link {
  font-size: 2.25rem;
  color: var(--cream);
  font-weight: 300;
  text-decoration: none;
}

/* HERO SECTION */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--warm-dark);
}

.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero__vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 90% 80% at 50% 40%, transparent 15%, rgba(19,13,6,0.85) 100%);
}

.hero__gradient-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 192px;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent, var(--warm-dark));
}

.hero__line-deco {
  position: absolute;
  left: 50%;
  top: 20%;
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, rgba(212,160,60,0.2), transparent);
  transform: translateX(-50%) scaleY(0);
  transform-origin: top;
  transition: transform 2s 1.5s, opacity 2s 1.5s;
  opacity: 0;
}

.hero__line-deco.loaded {
  transform: translateX(-50%) scaleY(1);
  opacity: 1;
}

.hero__content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 24px;
  max-width: 896px;
  margin: 0 auto;
}

.hero__icon-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}

.hero__sun-icon {
  width: 22px;
  height: 22px;
  color: rgba(212,160,60,0.5);
}

.rotation-anim {
  animation: spin 40s linear infinite;
}

@keyframes spin {
  100% { transform: rotate(360deg); }
}

.hero__subtitle {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: rgba(212,160,60,0.55);
  font-weight: 200;
  margin-bottom: 28px;
}

.hero__title {
  font-size: clamp(3.2rem, 9vw, 8rem);
  line-height: 0.92;
  font-weight: 300;
  color: var(--cream);
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}

.hero__text {
  font-size: 0.875rem;
  line-height: 1.625;
  color: rgba(245,237,216,0.38);
  max-width: 340px;
  margin: 0 auto 48px auto;
  font-weight: 200;
  letter-spacing: 0.06em;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

@media (min-width: 640px) {
  .hero__actions {
    flex-direction: row;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  cursor: none;
}

.btn--primary {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 9999px;
  background: rgba(212,160,60,0.14);
  border: 1px solid rgba(212,160,60,0.35);
  color: var(--gold);
  font-weight: 300;
  transition: background 0.4s;
}

.btn--primary:hover {
  background: rgba(212,160,60,0.22);
}

.btn--text {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(245,237,216,0.35);
  font-weight: 200;
  transition: color 0.3s;
}

.btn--text:hover {
  color: rgba(245,237,216,0.7);
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero__scroll-text {
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(212,160,60,0.3);
}

.hero__scroll-icon {
  color: rgba(212,160,60,0.3);
  width: 16px;
  height: 16px;
}

.bounce-anim {
  animation: bounce 2.5s ease-in-out infinite;
}

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

/* SECTION HEADERS */
.section-tag {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.section-tag__line {
  width: 20px;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
}

.section-tag__text {
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(212,160,60,0.5);
  font-weight: 300;
}

.section-title {
  font-size: clamp(2.2rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.05;
  margin-bottom: 64px;
}

/* VALORES */
.values {
  border-top: 1px solid rgba(212,160,60,0.08);
  border-bottom: 1px solid rgba(212,160,60,0.08);
  background: rgba(30,18,8,0.5);
}

.values__container {
  max-width: 1024px;
  margin: 0 auto;
  padding: 56px 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  text-align: center;
}

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

.value-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.value-item__icon-wrapper {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212,160,60,0.08);
  border: 1px solid rgba(212,160,60,0.18);
}

.value-item__icon {
  width: 16px;
  height: 16px;
  color: var(--gold);
}

.value-item__title {
  font-size: 1.125rem;
  font-weight: 300;
  color: var(--cream);
}

.value-item__desc {
  font-size: 0.875rem;
  line-height: 1.625;
  color: rgba(245,237,216,0.35);
  font-weight: 200;
  letter-spacing: 0.04em;
}

/* CLASES */
.classes {
  position: relative;
  padding: 112px 0;
  background: var(--warm-dark);
}

@media (min-width: 768px) {
  .classes { padding: 160px 0; }
}

.classes__tabs {
  gap: 8px;
  margin-bottom: 32px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.classes__tab {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 8px 16px;
  border-radius: 9999px;
  font-family: var(--font-sans);
  font-weight: 300;
  background: transparent;
  border: 1px solid rgba(245,237,216,0.1);
  color: rgba(245,237,216,0.4);
  transition: all 0.3s;
  flex-shrink: 0;
}

.classes__tab.active {
  background: rgba(212,160,60,0.14);
  border-color: rgba(212,160,60,0.4);
  color: var(--gold);
}

.classes__grid {
  grid-template-columns: 1fr;
  gap: 20px;
}

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

.class-card {
  position: relative;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: rgba(30,18,8,0.6);
  border: 1px solid rgba(212,160,60,0.1);
  overflow: hidden;
  transition: all 0.5s;
}

.class-card:hover {
  border-color: rgba(212,160,60,0.3);
  background: rgba(40,24,8,0.8);
}

.class-card__glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s;
  background: radial-gradient(circle, var(--c-glow) 0%, transparent 70%);
  transform: translate(30%, -30%);
}

.class-card:hover .class-card__glow {
  opacity: 1;
}

.class-card__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-bg);
  border: 1px solid var(--c-br);
}

.class-card__icon i { width: 15px; height: 15px; }

.class-card__title {
  font-size: 1.125rem;
  color: var(--cream);
  font-weight: 300;
  margin-bottom: 4px;
}

.class-card__level {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.7;
  font-weight: 300;
  margin-bottom: 12px;
}

.class-card__desc {
  font-size: 0.75rem;
  line-height: 1.625;
  color: rgba(245,237,216,0.38);
  font-weight: 200;
}

.class-card__footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(212,160,60,0.08);
}

.class-card__time {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,237,216,0.3);
}

/* MOBILE VIEWS CONTAINER */
.classes__mobile-views {
  flex-direction: column;
}

.mobile-class-view {
  border-radius: 16px;
  padding: 28px;
  background: rgba(30,18,8,0.8);
  border: 1px solid rgba(212,160,60,0.15);
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: fadeIn 0.35s ease-out;
}

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

.mobile-class-view__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-class-view__title {
  font-size: 1.5rem;
  color: var(--cream);
  font-weight: 300;
}

.mobile-class-view__level {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.mobile-class-view__desc {
  font-size: 0.875rem;
  line-height: 1.625;
  color: rgba(245,237,216,0.45);
  font-weight: 200;
}


/* INSTRUCTORS */
.instructors {
  position: relative;
  padding: 112px 0;
  overflow: hidden;
  background: rgba(20,12,4,0.8);
}

@media (min-width: 768px) {
  .instructors { padding: 144px 0; }
}

.instructors__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(212,160,60,0.04) 0%, transparent 70%);
}

.instructors__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

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

.instructor-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.instructor-card__img {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(212,160,60,0.1);
}

.instructor-card__letter {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.1;
  font-size: 7rem;
  color: var(--gold);
  line-height: 1;
}

.instructor-card__info-overlay {
  position: relative;
  z-index: 10;
  padding: 20px;
  width: 100%;
  background: linear-gradient(to top, rgba(19,13,6,0.95) 0%, transparent 100%);
}

.instructor-card__name {
  font-size: 1.25rem;
  color: var(--cream);
  font-weight: 300;
}

.instructor-card__role {
  display: block;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 4px;
  color: var(--gold);
  opacity: 0.6;
  font-weight: 300;
}

.instructor-card__exp {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: rgba(212,160,60,0.4);
}

.instructor-card__desc {
  font-size: 0.875rem;
  line-height: 1.625;
  color: rgba(245,237,216,0.4);
  font-weight: 200;
}

/* PRICING */
.pricing {
  position: relative;
  padding: 112px 0;
  background: var(--warm-dark);
}

@media (min-width: 768px) {
  .pricing { padding: 160px 0; }
}

.pricing__subtitle {
  font-size: 0.875rem;
  color: rgba(245,237,216,0.32);
  font-weight: 200;
  letter-spacing: 0.06em;
  margin-bottom: 64px;
}

.pricing__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

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

.price-card {
  position: relative;
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: rgba(30,18,8,0.5);
  border: 1px solid rgba(212,160,60,0.1);
  transition: all 0.4s;
  height: 100%;
}

.price-card--popular {
  background: rgba(212,160,60,0.07);
  border-color: rgba(212,160,60,0.35);
}

.price-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 9999px;
  background: var(--gold);
  color: var(--warm-dark);
  font-weight: 400;
}

.price-card__title {
  font-size: 1.25rem;
  color: var(--cream);
  font-weight: 300;
  margin-bottom: 4px;
}

.price-card__desc {
  font-size: 0.75rem;
  color: rgba(245,237,216,0.3);
  font-weight: 200;
}

.price-card__amount {
  display: flex;
  align-items: flex-end;
  gap: 4px;
}

.price-card__val {
  font-size: 3.5rem;
  line-height: 1;
  font-weight: 300;
  color: var(--cream);
}

.price-card__val--highlight, .price-card__euro--highlight {
  color: var(--gold);
}

.price-card__euro {
  font-size: 3.5rem;
  line-height: 1;
  font-weight: 300;
  color: var(--cream);
}

.price-card__unit {
  font-size: 0.75rem;
  margin-bottom: 8px;
  color: rgba(245,237,216,0.3);
}

.price-card__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}

.price-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(245,237,216,0.5);
  font-weight: 200;
}

.feat-dash {
  color: var(--gold);
  opacity: 0.6;
  margin-top: 2px;
  flex-shrink: 0;
}

.btn--outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 14px 0;
  border-radius: 9999px;
  background: transparent;
  border: 1px solid rgba(212,160,60,0.2);
  color: var(--gold);
  font-weight: 300;
  transition: all 0.3s;
  text-decoration: none;
}

.btn--outline:hover {
  background: rgba(212,160,60,0.18);
}

.btn--popular {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 14px 0;
  border-radius: 9999px;
  background: rgba(212,160,60,0.18);
  border: 1px solid rgba(212,160,60,0.5);
  color: var(--gold);
  font-weight: 300;
  transition: all 0.3s;
  text-decoration: none;
}
.btn--popular:hover {
  background: rgba(212,160,60,0.22);
}


/* RETREATS */
.retreats {
  position: relative;
  padding: 112px 0;
  overflow: hidden;
  background: rgba(18,10,3,0.95);
}

@media (min-width: 768px) {
  .retreats { padding: 160px 0; }
}

.retreats__bg-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(19,13,6,0.95) 0%, transparent 20%, transparent 80%, rgba(19,13,6,0.95) 100%);
}

.retreats__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

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

.retreat-card {
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.4s;
  background: rgba(30,18,8,0.7);
  border: 1px solid rgba(212,160,60,0.1);
}

.retreat-card:hover {
  border-color: rgba(212,160,60,0.28);
}

.retreat-card__banner {
  height: 144px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  background: linear-gradient(135deg, var(--g-from), var(--g-to));
}

.retreat-card__symbol {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  color: var(--gold);
  line-height: 1;
}

.retreat-card__meta {
  position: relative;
  z-index: 10;
}

.retreat-card__date {
  display: block;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 4px;
  color: var(--gold);
  opacity: 0.65;
}

.retreat-card__loc {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  letter-spacing: 0.15em;
  color: rgba(245,237,216,0.4);
}

.retreat-card__content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.retreat-card__title {
  font-size: 1.25rem;
  color: var(--cream);
  font-weight: 300;
}

.retreat-card__desc {
  font-size: 0.875rem;
  line-height: 1.625;
  color: rgba(245,237,216,0.38);
  font-weight: 200;
  flex: 1;
}

.retreat-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(212,160,60,0.08);
}

.retreat-card__spots {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,237,216,0.28);
}

.retreat-card__link {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-weight: 300;
  opacity: 0.7;
  text-decoration: none;
  transition: opacity 0.3s;
}

.retreat-card__link:hover {
  opacity: 1;
}

/* CITA */
.quote {
  position: relative;
  padding: 144px 0;
  overflow: hidden;
  background: var(--warm-dark);
  text-align: center;
}

.quote__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(212,160,60,0.05) 0%, transparent 70%);
}

.quote__content {
  max-width: 768px;
  margin: 0 auto;
  padding: 0 24px;
}

.quote__mark {
  font-size: 3rem;
  color: rgba(212,160,60,0.25);
  line-height: 1;
  margin-bottom: 32px;
}

.quote__text {
  font-size: clamp(1.6rem, 4.5vw, 3.2rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.2;
  font-style: italic;
}

.quote__author {
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-top: 32px;
  color: rgba(245,237,216,0.25);
  font-weight: 200;
}

/* FOOTER */
.footer {
  position: relative;
  padding-top: 96px;
  padding-bottom: 48px;
  background: rgba(14,8,2,0.98);
  border-top: 1px solid rgba(212,160,60,0.07);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  margin-bottom: 80px;
}

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

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer__logo i {
  color: var(--gold);
  opacity: 0.7;
  width: 15px;
  height: 15px;
}

.footer__logo span {
  font-size: 1.25rem;
  letter-spacing: 0.18em;
  color: var(--cream);
  font-weight: 300;
}

.footer__desc {
  font-size: 0.875rem;
  line-height: 1.625;
  color: rgba(245,237,216,0.3);
  font-weight: 200;
  margin-bottom: 24px;
}

.footer__socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer__socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212,160,60,0.15);
  color: rgba(212,160,60,0.4);
  transition: all 0.3s;
  text-decoration: none;
}

.footer__socials a:hover {
  border-color: rgba(212,160,60,0.4);
  color: var(--gold);
}

.footer__socials a i {
  width: 13px;
  height: 13px;
}

.footer__title {
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: rgba(212,160,60,0.45);
  font-weight: 300;
}

.footer__list {
  display: flex;
  flex-direction: column;
}

.footer__row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 0.875rem;
  border-bottom: 1px solid rgba(212,160,60,0.06);
  color: rgba(245,237,216,0.35);
  font-weight: 200;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.footer__contact-item i {
  width: 13px;
  height: 13px;
  color: rgba(212,160,60,0.45);
  margin-top: 4px;
  flex-shrink: 0;
}

.footer__contact-item span {
  font-size: 0.875rem;
  color: rgba(245,237,216,0.35);
  font-weight: 200;
  line-height: 1.6;
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid rgba(212,160,60,0.06);
}

@media (min-width: 768px) {
  .footer__bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.footer__bottom-brand {
  font-size: 1rem;
  color: rgba(245,237,216,0.15);
  letter-spacing: 0.15em;
  font-weight: 300;
}

.footer__bottom-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer__bottom-links a {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,237,216,0.18);
  text-decoration: none;
  transition: color 0.3s;
}

.footer__bottom-links a:hover {
  color: rgba(245,237,216,0.45);
}

.footer__copyright {
  font-size: 10px;
  letter-spacing: 0.15em;
  color: rgba(245,237,216,0.12);
}
