/* ============================================================
   judithalessandra.com — v0.2 (vibra Studio Lumio)
   Minimalista, tonos tierra apagados, espacio para respirar.
   El color viene de las fotos, no del CSS.
   ============================================================ */

:root {
  --bg: #f4ede2;          /* crema-beige base, como Studio Lumio */
  --bg-soft: #ede4d6;     /* casi igual al bg, contraste sutil */
  --ink: #2a2520;         /* tinta cálida casi negra */
  --ink-soft: #6b5f52;    /* tinta media para texto secundario */
  --ink-mute: #9a8d7d;    /* tinta apagada para meta */
  --accent: #8a6f5c;      /* sepia callado, no terracota brillante */
  --accent-deep: #6e5645;
  --line: #d8cdb9;        /* línea apenas visible */
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --maxw: 1080px;
  --maxw-narrow: 640px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16px;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.01em;
}

a { color: var(--accent); text-decoration: none; transition: color 0.25s ease; }
a:hover { color: var(--accent-deep); }

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

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: -0.005em;
}

/* ---------- Hero ---------- */
.hero {
  background: var(--bg);
  padding-bottom: 8rem;
  border-bottom: 1px solid var(--line);
}

.nav {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.brand {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--ink);
  letter-spacing: 0.02em;
  font-weight: 400;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--ink-soft);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: lowercase;
}
.nav-links a:hover { color: var(--ink); }

.hero-content {
  max-width: var(--maxw-narrow);
  margin: 0 auto;
  padding: 6rem 2rem 0;
  text-align: center;
}

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.7rem;
  color: var(--ink-mute);
  margin-bottom: 2rem;
  font-weight: 400;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  margin-bottom: 2rem;
  font-weight: 400;
  font-style: normal;
  color: var(--ink);
  line-height: 1.1;
}

.hero-sub {
  font-size: 1rem;
  color: var(--ink-soft);
  max-width: 480px;
  margin: 0 auto 3rem;
  line-height: 1.65;
  font-weight: 300;
}

/* ---------- Sections ---------- */
main { background: var(--bg); }

.section { border: 0; }

.section + .section { border-top: 1px solid var(--line); }

.section-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 7rem 2rem;
}

.section h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  margin-bottom: 2rem;
  font-weight: 400;
  font-style: normal;
}

.lead {
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin-bottom: 3rem;
  max-width: 560px;
  line-height: 1.65;
  font-weight: 300;
}

.section p { margin-bottom: 1rem; }

.section p:last-child { margin-bottom: 0; }

/* ---------- Placeholder (notas internas) ---------- */
.placeholder {
  display: block;
  padding: 0;
  background: transparent;
  border: 0;
  color: var(--ink-mute);
  font-style: italic;
  font-size: 0.85rem;
  margin: 0.75rem 0 0;
  font-weight: 300;
}

/* ---------- Card feature (encuentro Kalupo) ---------- */
.card-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: hidden;
  max-width: 100%;
  margin-top: 1rem;
}

.card-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 380px;
}

.card-feature-body {
  padding: 2.5rem 2.5rem 2.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-feature h3 {
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  font-weight: 400;
}

.meta-list {
  list-style: none;
  margin: 1.5rem 0 2rem;
  padding: 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
  font-weight: 300;
}

.meta-list li { padding: 0.3rem 0; }
.meta-list strong {
  color: var(--ink);
  font-weight: 400;
  display: inline-block;
  min-width: 8.5rem;
}

/* ---------- CTA ---------- */
.cta {
  display: inline-block;
  padding: 0.9rem 1.75rem;
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 0;
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.25s ease;
  text-decoration: none;
}

.cta:hover {
  background: var(--ink);
  color: var(--bg);
}

.cta-primary {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

.cta-primary:hover {
  background: transparent;
  color: var(--ink);
}

.link-arrow {
  display: inline-block;
  margin-top: 1rem;
  color: var(--ink-soft);
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
  transition: all 0.25s ease;
}
.link-arrow:hover {
  color: var(--ink);
  border-bottom-color: var(--ink);
  text-decoration: none;
}

/* ---------- Section feature (Crea tu experiencia) ---------- */
.section-feature {
  background: var(--bg-soft);
}

/* ---------- Grid 2 / 3 / 4 ---------- */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 2rem;
  margin-bottom: 4rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  margin-bottom: 4rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  margin-top: 2rem;
}

.art-card {
  background: transparent;
  padding: 0;
  border-radius: 0;
  border: 0;
  display: flex;
  flex-direction: column;
}

.art-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.85rem;
  font-weight: 400;
}

.art-card p {
  color: var(--ink-soft);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.6;
}

.art-photo {
  margin-top: 1.5rem;
  border-radius: 0;
  overflow: hidden;
}

/* ---------- Gallery (Crea tu experiencia, Pide tu postre) ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.gallery figure {
  border-radius: 0;
  overflow: hidden;
  background: var(--bg-soft);
  aspect-ratio: 4 / 5;
}

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

.gallery figure:hover img { transform: scale(1.02); }

/* ---------- Section contact ---------- */
.section-contact { text-align: center; }
.section-contact .lead { margin-left: auto; margin-right: auto; }

/* ---------- Footer ---------- */
footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
}

.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 3rem 2rem;
  text-align: center;
  color: var(--ink-mute);
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.05em;
}

.footer-tag {
  margin-top: 0.5rem;
  font-style: normal;
  color: var(--ink-mute);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem 1.5rem;
  }
  .nav-links { gap: 1.25rem; font-size: 0.8rem; }
  .hero-content { padding-top: 3rem; }
  .section-inner { padding: 5rem 1.5rem; }
  .card-feature { grid-template-columns: 1fr; }
  .card-feature img { min-height: 300px; }
  .card-feature-body { padding: 2rem 1.5rem; }
  .meta-list strong { min-width: auto; display: block; }
}

@media (max-width: 480px) {
  body { font-size: 15px; }
  .hero-content h1 { font-size: 2.25rem; }
  .hero-sub { font-size: 0.95rem; }
}
