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

:root {
  --cream: #F8FAFC;
  --ink: #0D3B66;
  --rose: #E8B4C8;
  --rose-light: #F0C5D8;
  --muted: #4B7A99;
  --border: #D4E5F0;
  --blue-sky: #5BA3D0;
  --blue-dark: #1A4D7F;
  --gold: #D4AF37;
  --gold-light: #E8D5B7;
  --dark-cream: #E8DCC8;
}

html { scroll-behavior: smooth; }

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

/* NAV */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 3rem;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  color: var(--ink);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--ink); }

.cart-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  border: 1px solid var(--border);
  padding: 0.4rem 0.75rem;
  border-radius: 4px;
  background: white;
  font-size: 1rem;
}

.cart-count {
  background: var(--rose);
  color: white;
  font-size: 0.65rem;
  font-weight: 500;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: absolute;
  top: -8px;
  right: -8px;
}

/* SECTIONS COMMON */
section {
  padding: 7rem 5rem;
}

.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.section-title em { font-style: italic; color: var(--rose); }

.divider {
  width: 40px;
  height: 1px;
  background: var(--rose);
  margin-bottom: 3rem;
}

/* HERO */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-content: flex-start;
  padding-top: 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0D3B66 0%, #1A4D7F 100%);
  gap: 0;
}

#hero::before {
  display: none;
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 5rem;
  max-width: 600px;
  position: relative;
  z-index: 10;
  color: var(--cream);
}

.hero-tag {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose-light);
  margin-bottom: 1.5rem;
}

.hero-name {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(3rem, 5vw, 5.5rem);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--cream);
  letter-spacing: -0.02em;
}

.hero-name em {
  font-style: italic;
  display: block;
  color: var(--rose-light);
  font-weight: 400;
}

.hero-sub {
  font-size: 1.1rem;
  color: #B8D4E8;
  max-width: 420px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
  font-weight: 300;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--ink);
  color: var(--cream);
  padding: 0.85rem 2rem;
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}

.btn-primary:hover { background: var(--rose); }

.btn-outline {
  border: 1px solid var(--cream);
  color: var(--cream);
  padding: 0.85rem 2rem;
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.2s;
}

.btn-outline:hover { background: var(--cream); color: var(--ink); }

.btn-secondary {
  background: var(--rose);
  color: var(--ink);
  padding: 0.7rem 1.5rem;
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: background 0.2s;
}

.btn-secondary:hover { background: var(--blue-sky); color: white; }

.btn-danger {
  background: #E8B4C8;
  color: #1A4D7F;
  padding: 0.5rem 1rem;
  border: none;
  cursor: pointer;
  font-size: 0.75rem;
  text-transform: uppercase;
  transition: background 0.2s;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.08em;
}

.btn-danger:hover { background: #F0C5D8; }

.hero-image {
  background: var(--rose-light);
  position: relative;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--rose);
}

.hero-image-placeholder span {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.6;
}

/* QUOTE BAND */
.quote-band {
  background: var(--ink);
  color: var(--cream);
  padding: 5rem;
  text-align: center;
}

.quote-band blockquote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  color: var(--cream);
}

.quote-band cite {
  display: block;
  margin-top: 1.5rem;
  font-style: normal;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose-light);
}

/* SOBRE MÍ */
#sobre {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.sobre-image {
  aspect-ratio: 4/5;
  background: var(--rose-light);
  position: relative;
  overflow: hidden;
}

.sobre-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sobre-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--rose);
  opacity: 0.5;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sobre-texto p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 1.25rem;
}

.sobre-ig {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--rose);
  padding-bottom: 2px;
  transition: color 0.2s;
}

.sobre-ig:hover { color: var(--rose); }

/* FOOTER */
footer {
  background: var(--ink);
  color: #7A7A99;
  padding: 3rem 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #1A4D7F;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: 1rem;
  color: var(--cream);
  text-decoration: none;
}

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

.footer-links a {
  color: #7A7A99;
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--cream); }

.footer-copy {
  font-size: 0.75rem;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  nav { padding: 1.25rem 2rem; }
  .nav-links { gap: 1.5rem; }

  #hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-text { padding: 5rem 2rem 3rem; }
  .hero-image { height: 55vw; min-height: 300px; }

  section { padding: 5rem 2rem; }

  #sobre { grid-template-columns: 1fr; gap: 3rem; }
  .sobre-image { aspect-ratio: 4/3; }

  .quote-band { padding: 4rem 2rem; }

  footer { padding: 2.5rem 2rem; flex-direction: column; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 600px) {
  .nav-links { display: none; }
  nav { padding: 1rem 1.5rem; }
  .nav-logo { font-size: 0.95rem; }
  section { padding: 3rem 1.5rem; }
}
// Cache bust
