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

:root {
  --blush:      #F2E4E1;
  --blush-deep: #E8CFC9;
  --rose-gold:  #B8887E;
  --rose-dark:  #9A6B62;
  --greige:     #C8BDB8;
  --greige-mid: #A89C97;
  --warm-white: #FAF6F4;
  --parchment:  #F5EDE9;
  --text-dark:  #3A2E2C;
  --text-mid:   #6E5E5A;
  --text-light: #A89590;
  --nav-h:      68px;
}

html { height: 100%; }
body {
  font-family: 'Jost', sans-serif;
  background: var(--warm-white);
  color: var(--text-dark);
  height: 100%;
  display: flex;
  flex-direction: column;
  cursor: none;
}

body::before {
  content: '';
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: .022;
}

/* cursor */
.cursor {
  position: fixed; width: 9px; height: 9px;
  background: var(--rose-gold); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
}
.cursor-ring {
  position: fixed; width: 34px; height: 34px;
  border: 1px solid var(--rose-gold); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: left .18s ease, top .18s ease;
  opacity: .45;
}

/* NAV */
nav {
  flex-shrink: 0;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  background: rgba(250,246,244,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--blush-deep);
  position: relative; z-index: 100;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 500; letter-spacing: .06em;
  color: var(--text-dark); cursor: pointer;
  border: none; background: none;
}
.nav-logo span { color: var(--rose-gold); }

.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links button {
  background: none; border: none; cursor: pointer;
  font-family: 'Jost', sans-serif;
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--text-mid); padding-bottom: 3px;
  position: relative; transition: color .25s;
}
.nav-links button::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--rose-gold);
  transition: width .3s ease;
}
.nav-links button:hover,
.nav-links button.active { color: var(--rose-dark); }
.nav-links button.active::after,
.nav-links button:hover::after { width: 100%; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; background: none; border: none;
}
.hamburger span {
  display: block; width: 24px; height: 1px;
  background: var(--text-dark); transition: all .3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile overlay */
.mobile-menu {
  position: fixed; left: 0; right: 0; top: var(--nav-h); bottom: 0;
  background: rgba(250,246,244,.97); backdrop-filter: blur(20px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 44px; z-index: 90;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.76,0,.24,1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu button {
  background: none; border: none; cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; font-weight: 300; font-style: italic;
  color: var(--text-dark); transition: color .2s;
}
.mobile-menu button:hover { color: var(--rose-gold); }

/* APP / PAGES */
#app { flex: 1; position: relative; overflow: hidden; }

.page {
  position: absolute; inset: 0;
  overflow-y: auto;
  opacity: 0; pointer-events: none;
  transition: opacity .38s ease, transform .38s ease;
  transform: translateY(16px);
}
.page.active {
  opacity: 1; pointer-events: all; transform: translateY(0); z-index: 2;
}
.page.leaving {
  opacity: 0; transform: translateY(-10px);
  transition: opacity .25s ease, transform .25s ease; z-index: 1;
}

/* fade-in children */
.fi { opacity: 0; transform: translateY(20px); }
.fi.go { animation: fadeUp .65s ease forwards; }
.fi.go.d1 { animation-delay: .08s; }
.fi.go.d2 { animation-delay: .20s; }
.fi.go.d3 { animation-delay: .32s; }
.fi.go.d4 { animation-delay: .44s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* SHARED */
.si { max-width: 1000px; margin: 0 auto; padding: 72px 48px; }
.eyebrow {
  font-size: .68rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--rose-gold); margin-bottom: 16px;
}
.stitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 300; line-height: 1.2;
  color: var(--text-dark); margin-bottom: 24px;
}
.stitle em { font-style: italic; }
.sbody {
  font-size: .95rem; font-weight: 300; line-height: 1.9; color: var(--text-mid);
}

/* HOME */
#page-home {
  background:
    radial-gradient(ellipse 65% 75% at 85% 50%, var(--blush) 0%, transparent 65%),
    radial-gradient(ellipse 38% 38% at 10% 85%, var(--blush-deep) 0%, transparent 55%),
    var(--warm-white);
}
.home-grid {
  min-height: calc(100vh - var(--nav-h));
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 60px;
  max-width: 1200px; margin: 0 auto;
  padding: 60px 48px 80px;
}
.hero-eyebrow {
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--rose-gold); margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}
.hero-eyebrow::before {
  content: ''; display: inline-block;
  width: 30px; height: 1px; background: var(--rose-gold);
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  font-weight: 300; line-height: 1.12;
  color: var(--text-dark); margin-bottom: 28px;
}
.hero-title em { font-style: italic; color: var(--rose-dark); }
.hero-tag {
  font-size: .95rem; font-weight: 300; line-height: 1.85;
  color: var(--text-mid); max-width: 420px; margin-bottom: 44px;
}
.btn-p {
  display: inline-block; padding: 14px 36px;
  background: var(--rose-gold); color: #fff;
  font-family: 'Jost', sans-serif;
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  border: none; cursor: pointer;
  transition: background .25s, transform .2s;
}
.btn-p:hover { background: var(--rose-dark); transform: translateY(-1px); }

.hero-card { width: 300px; height: 380px; position: relative; margin: auto; }
.hero-card-border {
  position: absolute; inset: 0;
  border: 1px solid var(--blush-deep); transform: rotate(3deg);
}
.hero-card-inner {
  position: absolute; inset: 14px;
  background: linear-gradient(150deg, var(--parchment), var(--blush));
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 18px; padding: 32px;
}
.card-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; font-style: italic; font-weight: 300;
  line-height: 1.65; color: var(--text-dark); text-align: center;
}
.card-line { width: 30px; height: 1px; background: var(--rose-gold); }
.card-author {
  font-size: .65rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--text-light);
}

/* ACERCA */
#page-acerca { background: var(--parchment); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1.45fr;
  gap: 68px; align-items: center;
}
.about-img {
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, var(--blush-deep), var(--blush) 60%, var(--greige));
  position: relative; overflow: hidden;
}
.about-monogram {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 7rem; font-weight: 300; font-style: italic;
  color: rgba(184,136,126,.2);
}
.about-img::after {
  content: '✦'; position: absolute; bottom: 20px; right: 20px;
  font-size: 1.8rem; color: var(--rose-gold); opacity: .35;
}
.about-text .sbody { max-width: 100%; margin-top: 14px; }
.about-text .sbody + .sbody { margin-top: 12px; }
.pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.pill {
  padding: 6px 15px; border: 1px solid var(--blush-deep);
  font-size: .68rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--rose-dark); background: rgba(242,228,225,.4);
}

/* CONTACTO */
#page-contacto { background: var(--text-dark); }
#page-contacto .eyebrow { color: var(--greige); }
#page-contacto .stitle  { color: var(--warm-white); }
#page-contacto .sbody   { color: var(--greige); }

.ct-cols {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; margin-top: 52px; align-items: start;
}
.ct-item {
  display: flex; gap: 18px; align-items: flex-start; margin-bottom: 28px;
}
.ct-icon {
  width: 42px; height: 42px; border: 1px solid var(--greige-mid);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0; color: var(--rose-gold);
}
.ct-label {
  font-size: .66rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--greige-mid); margin-bottom: 5px;
}
.ct-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; color: var(--warm-white);
}
.ct-val a {
  color: var(--warm-white); text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .25s, color .25s;
}
.ct-val a:hover { color: var(--rose-gold); border-color: var(--rose-gold); }

.ct-cta {
  padding: 48px 40px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(200,189,184,.12);
  display: flex; flex-direction: column; gap: 20px;
}
.ct-cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem; font-weight: 300; font-style: italic;
  color: var(--warm-white); line-height: 1.3;
}
.ct-cta-body {
  font-size: .9rem; font-weight: 300; line-height: 1.8; color: var(--greige-mid);
}
.ct-cta-btns { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.btn-ct {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 20px;
  border: 1px solid rgba(200,189,184,.25);
  color: var(--warm-white); text-decoration: none;
  font-size: .8rem; font-weight: 300; letter-spacing: .06em;
  transition: border-color .25s, background .25s;
}
.btn-ct:hover {
  border-color: var(--rose-gold);
  background: rgba(184,136,126,.08);
}
.btn-ct-icon {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(184,136,126,.15);
  font-size: .9rem; flex-shrink: 0; color: var(--rose-gold);
}

footer {
  background: #2B2120;
  padding: 26px 48px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.f-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: .95rem; color: var(--greige); letter-spacing: .06em;
}
.f-copy { font-size: .68rem; color: var(--greige-mid); opacity: .55; }

/* RESPONSIVE */
@media (max-width: 880px) {
  nav { padding: 0 22px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .home-grid {
    grid-template-columns: 1fr;
    padding: 40px 22px 60px;
    min-height: auto;
  }
  .hero-card { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-img { display: none; }
  .ct-cols { grid-template-columns: 1fr; gap: 40px; }
  .si { padding: 48px 22px; }
  footer { padding: 22px; flex-direction: column; align-items: flex-start; }
}
