/* ─────────────────────────────────────────
   ABY AROMAS — Página En Construcción
   Paleta: crema, blanco, café/terracota
   Tipografía: Cormorant Garamond + Jost
   ───────────────────────────────────────── */

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

:root {
  --cream:       #F7F3EE;
  --cream-dark:  #EDE5D8;
  --white:       #FDFBF8;
  --terracota:   #B5714A;
  --cafe:        #7A5C3F;
  --cafe-light:  #C4A882;
  --text-main:   #3A2E25;
  --text-muted:  #8A7865;
  --border:      rgba(122, 92, 63, 0.18);
}

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

body {
  background: var(--cream);
  color: var(--text-main);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── HERO ── */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  max-height: 900px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  z-index: 0;
}

/* Overlay más suave, respeta la imagen original */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(247,243,238,0.15) 0%,
    rgba(247,243,238,0.08) 35%,
    rgba(58,46,37,0.62) 100%
  );
  z-index: 1;
}

/* Logo centrado sobre la imagen */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.logo-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: fadeDown 1s ease both;
}

/* Logo floral como icono — versión crema para fondo oscuro */
.logo-img {
  width: 130px;
  height: 130px;
  object-fit: contain;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,0.28));
}

/* Texto del logo */
.logo-text {
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
  letter-spacing: 0.10em;
}

.logo-a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: #fff;
  line-height: 1;
  text-shadow: 0 2px 14px rgba(0,0,0,0.3);
}
.logo-by {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.88);
  line-height: 1;
  margin-right: 5px;
}
.logo-divider {
  color: rgba(255,255,255,0.45);
  font-size: 1rem;
  margin: 0 8px;
  font-weight: 200;
}
.logo-aromas {
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 300;
  letter-spacing: 0.32em;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
}

.hero-tagline {
  font-size: 0.70rem;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.68);
  font-weight: 300;
  margin-top: 4px;
}

/* Flecha scroll abajo */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  opacity: 0.6;
  animation: bounce 2s infinite;
}
.hero-scroll svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
}

/* ── INNER ── */
.inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ── CONSTRUCCIÓN ── */
.construction {
  text-align: center;
  padding: 88px 0 68px;
}

.eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--terracota);
  margin-bottom: 20px;
  display: block;
}

.headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 6.5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.12;
  color: var(--text-main);
  margin-bottom: 28px;
}
.headline em { font-style: italic; color: var(--terracota); }

.divider-line {
  width: 44px;
  height: 1px;
  background: var(--cafe-light);
  margin: 0 auto 36px;
}

.build-msg {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 52px;
}
.highlight {
  font-style: italic;
  color: var(--cafe);
  display: block;
  margin-top: 6px;
}

/* ── PÍLDORAS PRODUCTOS ── */
.product-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 18px;
}
.pill {
  font-size: 0.70rem;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--cafe);
  border-radius: 100px;
  padding: 9px 24px;
  cursor: default;
  transition: background 0.25s;
}
.pill:hover { background: var(--terracota); }

/* ── PÍLDORAS AROMAS ── */
.scent-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.spill {
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cafe);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 5px 16px;
  background: rgba(255,255,255,0.55);
  transition: border-color 0.2s, background 0.2s;
  cursor: default;
}
.spill:hover { border-color: var(--terracota); background: rgba(181,113,74,0.06); }

/* ── LIFESTYLE ── */
.lifestyle-section { padding: 0 0 88px; }

.lifestyle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 540px;
}

.lifestyle-img-wrap { overflow: hidden; }
.lifestyle-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.7s ease;
}
.lifestyle-img-wrap:hover img { transform: scale(1.03); }

.lifestyle-text {
  background: var(--cream-dark);
  padding: 60px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow-sm {
  font-size: 0.63rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--terracota);
  margin-bottom: 18px;
  display: block;
}

.lifestyle-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 2.7rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--text-main);
  margin-bottom: 24px;
}
.lifestyle-h2 em { font-style: italic; color: var(--terracota); }

.lifestyle-body {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 32px;
  max-width: 320px;
}

.product-list { display: flex; flex-direction: column; gap: 10px; }
.product-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.76rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--cafe);
}
.product-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--terracota);
  flex-shrink: 0;
}

/* ── LEYENDA AROMAS ── */
.scent-legend {
  padding: 64px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  background: rgba(255,255,255,0.42);
}

.legend-intro {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 300;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.legend-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  align-items: center;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.fdot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* ── CONTACTO ── */
.contact-section {
  padding: 88px 0;
  text-align: center;
}

.contact-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--text-main);
  margin-bottom: 52px;
}
.contact-h2 em { font-style: italic; color: var(--terracota); }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.contact-card {
  background: rgba(255,255,255,0.62);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 30px 20px 26px;
  text-align: center;
  text-decoration: none;
  display: block;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  backdrop-filter: blur(6px);
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(122,92,63,0.12);
  border-color: var(--cafe-light);
}
.featured-card {
  background: rgba(181,113,74,0.09);
  border-color: rgba(181,113,74,0.32);
}

.cicon { width: 38px; height: 38px; margin: 0 auto 14px; color: var(--terracota); }
.cicon svg { width: 100%; height: 100%; }

.clabel {
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.cvalue {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--cafe);
  line-height: 1.4;
}

/* ── CTA BOTONES ── */
.cta-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.cta-btn {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--cafe);
  border-radius: 100px;
  padding: 16px 42px;
  text-decoration: none;
  transition: background 0.25s, transform 0.2s;
}
.cta-btn:hover { background: var(--terracota); transform: translateY(-2px); }

.cta-btn-outline {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cafe);
  background: transparent;
  border: 1px solid var(--cafe);
  border-radius: 100px;
  padding: 16px 42px;
  text-decoration: none;
  transition: background 0.25s, color 0.25s, transform 0.2s;
}
.cta-btn-outline:hover { background: var(--cafe); color: var(--white); transform: translateY(-2px); }

/* ── FOOTER ── */
.site-footer {
  background: var(--cream-dark);
  border-top: 1px solid var(--border);
  padding: 52px 24px 44px;
  text-align: center;
}

.footer-logo-img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  opacity: 0.75;
  margin-bottom: 12px;
}

.footer-brand {
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
  letter-spacing: 0.10em;
  margin-bottom: 14px;
}
.footer-brand .logo-a { color: var(--cafe); text-shadow: none; }
.footer-brand .logo-by { color: var(--cafe); }
.footer-brand .logo-aromas { color: var(--text-muted); font-size: 0.72rem; }
.footer-brand .logo-divider { color: var(--cafe-light); }

.footer-sub {
  font-size: 0.70rem;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--cafe-light);
  margin-bottom: 18px;
}
.footer-copy {
  font-size: 0.66rem;
  color: var(--text-muted);
  opacity: 0.65;
  letter-spacing: 0.08em;
}

/* ── ANIMACIONES ── */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ── RESPONSIVE ── */
@media (max-width: 720px) {
  .lifestyle-grid { grid-template-columns: 1fr; }
  .lifestyle-img-wrap { height: 300px; }
  .lifestyle-text { padding: 40px 28px; }
  .lifestyle-body { max-width: 100%; }
  .contact-grid {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
  .cta-wrap { flex-direction: column; align-items: center; }
  .cta-btn, .cta-btn-outline { width: 100%; max-width: 280px; text-align: center; }
  .hero-section { height: 85vh; }
  .logo-img { width: 100px; height: 100px; }
  .logo-a { font-size: 2.3rem; }
}

@media (max-width: 480px) {
  .construction { padding: 64px 0 52px; }
  .contact-section { padding: 64px 0; }
  .logo-img { width: 88px; height: 88px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
