/* ═══════════════════════════════════════════════════════
   ROSÉ CREATIVE AGENCY — style.css
   Estética: editorial de revista de lujo
   ═══════════════════════════════════════════════════════ */

/* ── TYPEWRITER CURSOR ──────────────────────────────────── */
@keyframes tw-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

.tw-cursor {
  display: inline;
  color: var(--cream);
  font-style: normal;
  animation: tw-blink .5s step-end infinite;
  transition: opacity .4s ease;
}

.tw-cursor--out {
  animation: none;
  opacity: 0;
}

/* ── INTRO OVERLAY ──────────────────────────────────────── */
@keyframes intro-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes intro-slide-up {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes intro-line-expand {
  from { width: 0; }
  to   { width: 80px; }
}

.intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity .5s ease;
}

.intro-overlay--out { opacity: 0; }

.intro-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.intro-logo {
  height: 120px;
  width: auto;
  margin-bottom: 20px;
  opacity: 0;
  animation: intro-slide-up .7s ease forwards;
  animation-delay: 0s;
}

.intro-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: #6B6560;
  margin-bottom: 16px;
  opacity: 0;
  animation: intro-fade-in .5s ease forwards;
  animation-delay: .5s;
}

.intro-line {
  height: 1px;
  width: 0;
  background: #720010;
  margin-bottom: 16px;
  animation: intro-line-expand .4s ease forwards;
  animation-delay: .9s;
}

.intro-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  font-weight: 300;
  color: #1C1A17;
  opacity: 0;
  animation: intro-fade-in .5s ease forwards;
  animation-delay: 1.2s;
}

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

/* ── CUSTOM PROPERTIES ──────────────────────────────────── */
:root {
  --cream:   #FAF7F2;
  --dark:    #1C1A17;
  --garnet:  #720010;
  --secondary: #6B6560;
  --border:  rgba(28,26,23,.10);
  --card-hover: #F2EBE2;
  --nav-h:   161px;
}

/* ── BASE ───────────────────────────────────────────────── */
html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--dark);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
em { font-style: italic; }

/* ── BUTTONS ────────────────────────────────────────────── */
/* Spec: rectangular, sin border-radius, sin sombras */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .9rem 1.85rem;
  font-family: 'DM Sans', sans-serif;
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: background .2s;
}

.btn-garnet {
  background: var(--garnet);
  color: var(--cream);
}
.btn-garnet:hover { background: #5a000c; }

.btn-cream {
  background: var(--cream);
  color: var(--dark);
}
.btn-cream:hover { background: #ede8e0; }

/* ── NAVBAR ─────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--nav-h);
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  transition: background .3s, backdrop-filter .3s;
}

.navbar.scrolled {
  background: rgba(250,247,242,.94);
  backdrop-filter: blur(10px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 5vw;
  gap: 2rem;
}

/* Brand */
.nav-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.brand-logo-link {
  display: flex;
  align-items: center;
}
.brand-logo-img {
  height: 125px;
  width: auto;
  display: block;
}

/* Links */
.nav-links {
  display: flex;
  list-style: none;
  gap: 2.8rem;
}
.nav-links a {
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--dark);
  transition: color .2s;
}
.nav-links a:hover { color: var(--garnet); }

/* ── HERO ───────────────────────────────────────────────── */
.hero { border-bottom: 1px solid var(--border); }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-height: 580px;
  height: 580px;
}

/* Left */
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 4rem 5rem 4rem 6vw;
  border-right: 1px solid var(--border);
}

.hero-tag {
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--garnet);
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(3.2rem, 5.5vw, 5.8rem);
  line-height: 1.04;
  color: var(--dark);
}

.hero-title em {
  color: var(--garnet);
  font-style: italic;
  background: none;
}

.hero-body {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.hero-desc {
  font-size: .95rem;
  color: var(--secondary);
  line-height: 1.85;
  max-width: 400px;
}

/* Right: 2 rows */
.hero-right {
  display: flex;
  flex-direction: column;
}

.hero-stat {
  flex: 1;
  display: flex;
  flex-direction: row;
  border-bottom: 1px solid var(--border);
}

.hero-stat-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  padding: 3.5rem 3rem;
}

.hero-stat-sep {
  width: 1px;
  background: var(--border);
  flex-shrink: 0;
  align-self: stretch;
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 4.5rem; /* ~72px */
  line-height: 1;
  color: var(--dark);
  display: block;
}

.stat-label {
  font-size: .69rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--secondary);
  line-height: 1.6;
}

.hero-dark {
  flex: 1;
  background: var(--dark);
  padding: 3rem 5rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-dark--garnet { background: var(--garnet); }

.hero-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: 1.75rem;
  color: var(--cream);
  line-height: 1.55;
  margin-bottom: 1.5rem;
}

.hero-quote cite {
  font-size: .81rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cream);
  font-style: normal;
  opacity: .7;
}

/* ── TICKER ─────────────────────────────────────────────── */
.ticker-wrapper {
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  padding: 1.2rem 0;
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 2.8rem;
  width: max-content;
  animation: ticker-scroll 30s linear infinite;
}

.ticker-track span {
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--dark);
  white-space: nowrap;
  font-weight: 400;
}

.ticker-track .dot {
  color: var(--garnet);
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0;
}

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── SERVICES ───────────────────────────────────────────── */
.services { border-bottom: 1px solid var(--border); }

.services-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
}

/* Sidebar */
.services-sidebar {
  padding: 5rem 3.5rem 5rem 6vw;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.8rem;
  position: sticky;
  top: var(--nav-h);
  align-self: start;
}

.eyebrow {
  font-size: .62rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--secondary);
}

.services-heading {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(1.7rem, 2.3vw, 2.4rem);
  line-height: 1.2;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--garnet);
  transition: gap .2s;
}
.text-link:hover { gap: .7rem; }

/* Cards grid */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.service-card {
  padding: 3.8rem 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background .25s;
  cursor: default;
}

/* Remove outer borders */
.service-card:nth-child(2),
.service-card:nth-child(4) { border-right: none; }
.service-card:nth-child(3),
.service-card:nth-child(4) { border-bottom: none; }

.service-card:hover { background: var(--card-hover); }

.card-num {
  font-size: .65rem;
  letter-spacing: .2em;
  color: var(--garnet);
  font-weight: 400;
}

.card-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(1.5rem, 2vw, 2.1rem);
  line-height: 1.1;
  color: var(--dark);
}

.card-desc {
  font-size: .84rem;
  color: var(--secondary);
  line-height: 1.8;
  flex: 1;
}

.card-arrow {
  font-size: 1.15rem;
  color: var(--garnet);
  display: inline-block;
  transition: transform .2s;
  margin-top: .4rem;
}
.service-card:hover .card-arrow { transform: translateX(5px); }

/* ── PROOF ──────────────────────────────────────────────── */
.proof {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 60px 48px;
}

.proof-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 960px;
  margin: 0 auto;
}

.proof-item {
  flex: 1;
  text-align: center;
  padding: 0 2rem;
}

.proof-sep {
  width: 1px;
  height: 72px;
  background: var(--border);
  flex-shrink: 0;
}

.proof-num {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(3rem, 5vw, 5.5rem);
  line-height: 1;
  color: var(--dark);
  margin-bottom: .8rem;
}

.accent { color: var(--garnet); }

.proof-label {
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--secondary);
}

/* ── CTA STRIP ──────────────────────────────────────────── */
.cta-strip {
  background: var(--garnet);
  padding: 80px 48px;
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.8rem, 5.5vw, 5.5rem);
  line-height: 1.1;
  color: var(--cream);
}

.cta-right {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.cta-sub {
  font-size: .9rem;
  color: rgba(250,247,242,.68);
  line-height: 1.85;
}

/* ── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--cream);
  border-top: 1px solid rgba(28,26,23,.10);
}

/* Top grid */
.footer-top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  padding: 64px 48px 48px;
}

/* Col 1 — brand */
.footer-brand { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }

.footer-logo-img {
  height: 80px;
  width: auto;
  object-fit: contain;
  display: block;
  align-self: flex-start;
}

.footer-tagline {
  font-size: .75rem;
  color: var(--secondary);
  line-height: 1.7;
  max-width: 200px;
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 8px;
}

.footer-social-icon {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(28,26,23,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  background: transparent;
  text-decoration: none;
  transition: border-color .2s, color .2s;
  flex-shrink: 0;
  cursor: pointer;
}

.footer-social-icon:hover {
  border-color: var(--garnet);
  color: var(--garnet);
}

/* Col 2-4 — nav/services/contact */
.footer-col { display: flex; flex-direction: column; }

.footer-col-title {
  font-size: .625rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--garnet);
  margin-bottom: 20px;
  font-weight: 400;
}

.footer-col a,
.footer-col span:not(.footer-col-title) {
  font-size: .8125rem;
  color: var(--dark);
  text-decoration: none;
  line-height: 1;
  margin-bottom: 12px;
  transition: color .2s;
}

.footer-col a:last-child,
.footer-col span:last-child { margin-bottom: 0; }

.footer-col a:hover { color: var(--garnet); }

/* Separator */
.footer-sep {
  border: none;
  border-top: 1px solid rgba(28,26,23,.10);
  margin: 0 48px;
}

/* Bottom bar */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 48px;
}

.footer-bottom span,
.footer-bottom a {
  font-size: .6875rem;
  color: rgba(28,26,23,.40);
  text-decoration: none;
  transition: color .2s;
}

.footer-bottom a:hover { color: var(--garnet); cursor: pointer; }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-left  { padding: 5rem 4rem 5rem 5vw; }
  .hero-stat  { padding: 3rem 4rem; }
  .hero-dark  { padding: 3rem 4rem; }
  .services-sidebar { padding: 4rem 3rem 4rem 5vw; }
  .service-card { padding: 3rem 2.5rem; }
}

@media (max-width: 768px) {
  .nav-links  { display: none; }
  .nav-cta    { display: none; }

  .hero-grid  { grid-template-columns: 1fr; }
  .hero-left  {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 4rem 5vw;
    min-height: 60vh;
  }
  .hero-right { flex-direction: row; min-height: 240px; }
  .hero-stat  {
    flex: 1;
    border-bottom: none;
    border-right: 1px solid var(--border);
    padding: 3rem 5vw;
  }
  .hero-dark  { flex: 1; padding: 3rem 5vw; }
  .stat-num   { font-size: 3.5rem; }

  .services-layout { grid-template-columns: 1fr; }
  .services-sidebar {
    position: static;
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 3rem 5vw;
  }
  .services-grid  { grid-template-columns: 1fr; }
  .service-card   {
    border-right: none;
    padding: 2.5rem 5vw;
  }
  .service-card:nth-child(3) { border-bottom: 1px solid var(--border); }

  .proof-inner    { flex-direction: column; gap: 3rem; }
  .proof-sep      { width: 48px; height: 1px; }

  .footer-top    { grid-template-columns: 1fr 1fr; padding: 40px 24px 32px; gap: 2.5rem; }
  .footer-sep    { margin: 0 24px; }
  .footer-bottom { flex-direction: column; gap: .75rem; text-align: center; padding: 20px 24px; }
}

/* ═══════════════════════════════════════════════════════
   CONTACTO — estilos específicos de la página
   ═══════════════════════════════════════════════════════ */

/* ── Nav: link activo ───────────────────────────────────── */
.nav-active { color: var(--dark) !important; }

/* ── Page hero (sin imagen, solo tipografía) ────────────── */
.page-hero {
  padding: 3rem 6vw 1.25rem;
}

.page-hero-inner { max-width: 800px; }

.page-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(3.2rem, 6vw, 7rem);
  line-height: 1.05;
  color: var(--dark);
  margin: 1.2rem 0 1.5rem;
}

.page-hero-title em {
  color: var(--garnet);
  font-style: italic;
  background: none;
}

.em-dark {
  color: var(--dark) !important;
  font-style: italic;
  background: none;
}

.page-hero-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #6B6560;
  letter-spacing: normal;
  background: none;
}

/* ── Contact section ────────────────────────────────────── */
.contact-section {
  padding: 5rem 6vw 7rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 6rem;
  align-items: start;
}

/* ── Left: contact info ─────────────────────────────────── */
.contact-info {
  display: flex;
  flex-direction: column;
}

.contact-block {
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.contact-block--last {
  border-bottom: none;
  margin-bottom: 3rem;
}

.contact-label {
  font-size: .62rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--secondary);
}

.contact-value {
  font-size: 1rem;
  color: var(--dark);
  transition: color .2s;
}
.contact-value:hover { color: var(--garnet); }

.contact-quote {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.2rem, 1.6vw, 1.5rem);
  color: var(--dark);
  line-height: 1.5;
  padding-top: .5rem;
}

/* ── Right: form ────────────────────────────────────────── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.form-field {
  position: relative;
  display: flex;
  flex-direction: column;
}

.form-field label {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
  color: #6B6560;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  pointer-events: none;
  transition: all .2s ease;
}

.form-field.focused label,
.form-field.filled label {
  top: 0;
  transform: translateY(0);
  font-size: 11px;
  letter-spacing: .1em;
  color: #720010;
}

/* Para textarea: label reposa en la parte superior del área de texto */
.form-field--textarea label {
  top: 24px;
  transform: none;
}
.form-field--textarea.focused label,
.form-field--textarea.filled label {
  top: 0;
  transform: none;
}

/* Underline-only inputs */
.form-field input,
.form-field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1.5px solid rgba(28,26,23,.3);
  border-radius: 0;
  padding: .7rem 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--dark);
  outline: none;
  transition: border-color .2s;
  resize: none;
}

.form-field textarea {
  min-height: 120px;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(28,26,23,.35);
  font-size: 14px;
}

.form-field input:focus,
.form-field textarea:focus {
  border-bottom: 1.5px solid var(--garnet);
}

/* Select wrapper with custom arrow */
.select-wrapper {
  position: relative;
}

.select-wrapper::after {
  content: '↓';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: .75rem;
  color: var(--garnet);
  pointer-events: none;
}

.form-field select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1.5px solid rgba(28,26,23,.3);
  border-radius: 0;
  padding: .7rem 1.5rem .7rem 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--dark);
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color .2s;
}

.form-field select:focus { border-bottom: 1.5px solid var(--garnet); }

.form-field select option { color: var(--dark); background: var(--cream); }

/* Full-width button */
.btn-full { width: 100%; justify-content: center; margin-top: .5rem; }

/* ── Responsive contacto ────────────────────────────────── */
@media (max-width: 768px) {
  .page-hero { padding: 4rem 5vw 3.5rem; }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .contact-section { padding: 3.5rem 5vw 5rem; }
}

/* ═══════════════════════════════════════════════════════
   SERVICIOS — scroll inmersivo
   ═══════════════════════════════════════════════════════ */

/* ── Hero ───────────────────────────────────────────────── */
.svc-hero {
  min-height: 35vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 6vw;
  border-bottom: 1px solid var(--border);
}

.svc-hero-inner { max-width: 800px; }

.svc-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(3.2rem, 6vw, 7rem);
  line-height: 1.05;
  color: var(--dark);
  margin: 1rem 0 1rem;
}

.svc-hero-title em {
  color: var(--garnet);
  font-style: italic;
  background: none;
}

.svc-hero-sub {
  font-size: .8125rem;
  color: var(--secondary);
  letter-spacing: .04em;
  margin-bottom: 2.5rem;
}

.svc-hero-arrow {
  display: inline-block;
  color: var(--garnet);
  font-size: 1.5rem;
  animation: svc-bounce 1.6s ease-in-out infinite;
}

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

/* ── Scroll nav dots ────────────────────────────────────── */
.svc-nav-dots {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 200;
}

.svc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1.5px solid var(--garnet);
  background: transparent;
  transition: background .3s;
  cursor: pointer;
}

.svc-dot--active { background: var(--garnet); }

/* ── Service blocks ─────────────────────────────────────── */
.svc-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 65vh;
}

/* Text column */
.svc-col-text {
  padding: 0 48px;
  min-height: 65vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}

.svc-watermark {
  position: absolute;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 72px;
  color: rgba(28,26,23,.06);
  line-height: 1;
  top: 16px;
  right: 24px;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.svc-col-text > *:not(.svc-watermark) { position: relative; z-index: 1; }

.svc-stag {
  font-size: .625rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--garnet);
  margin-bottom: 1.2rem;
}

.svc-stitle {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.8rem, 3.5vw, 3.5rem);
  line-height: 1.05;
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.svc-sdesc {
  font-size: .875rem;
  color: var(--secondary);
  line-height: 1.9;
  max-width: 580px;
  margin-bottom: 2rem;
}

.svc-slist {
  list-style: none;
  width: 100%;
  margin-bottom: 1.5rem;
  max-width: 580px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
}

.svc-slist li {
  font-size: .82rem;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: .4rem 0;
  border-bottom: 1px solid var(--border);
}
.svc-slist li:last-child { border-bottom: none; }
.svc-slist li::before {
  content: '—';
  color: var(--garnet);
  font-size: .65rem;
  flex-shrink: 0;
}

/* Dark metric column */
.svc-col-dark {
  background: var(--dark);
  min-height: 65vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 48px;
  gap: 0;
}

.svc-smetric {
  width: 100%;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(250,247,242,.08);
  text-align: center;
}
.svc-smetric:last-child { border-bottom: none; }

.svc-smetric-val {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(3rem, 4.5vw, 5rem);
  line-height: 1;
  color: var(--cream);
  display: block;
  margin-bottom: .5rem;
}

.svc-smetric-lbl {
  font-size: .6rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(250,247,242,.45);
}

/* Garnet quote column */
.svc-col-garnet {
  background: var(--garnet);
  min-height: 65vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 48px;
  text-align: center;
  gap: 2rem;
}

.svc-col-quote {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: 1.75rem;
  line-height: 1.5;
  color: var(--cream);
}

.svc-col-cite {
  font-size: .6rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(250,247,242,.6);
  font-style: normal;
}

/* Warm quote column */
.svc-col-warm {
  background: #F2EBE2;
  min-height: 65vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 48px;
  text-align: center;
}

.svc-col-warm-quote {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.6rem, 2.2vw, 2.4rem);
  line-height: 1.45;
  color: var(--dark);
}

/* "Para quién es" note inside garnet/warm columns */
.svc-col-forwho {
  margin-top: 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: .75rem;
  line-height: 1.6;
  color: rgba(250,247,242,.7);
}
.svc-col-warm .svc-col-forwho {
  color: rgba(28,26,23,.55);
}
.svc-col-forwho strong {
  font-weight: 500;
  color: inherit;
}

/* Highlighted block — Portfolio UGC inside svc-col-text */
.svc-highlight-block {
  margin: 16px 0 0;
  padding: 16px 18px;
  border-left: 2px solid var(--garnet);
  background: transparent;
  border-radius: 2px;
}

/* svc-04 text column: más contenido que las otras secciones, crece con el contenido */
#svc-04 .svc-col-text {
  justify-content: flex-start;
  padding-top: 60px;
  padding-bottom: 60px;
  min-height: auto;
  height: auto;
}
.svc-highlight-label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: .6rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--garnet);
  margin-bottom: 6px;
}
.svc-highlight-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.25rem;
  color: var(--dark);
  margin: 0 0 8px;
}
.svc-highlight-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: .82rem;
  line-height: 1.65;
  color: var(--secondary);
  margin: 0;
}

/* ── Responsive servicios ───────────────────────────────── */
@media (max-width: 768px) {
  .svc-hero       { min-height: 55vh; }
  .svc-hero-title { font-size: 3rem; }
  .svc-nav-dots   { display: none; }
  .svc-block      { grid-template-columns: 1fr; min-height: auto; }
  .svc-col-text   { padding: 60px 5vw; min-height: 80vh; }
  .svc-col-dark,
  .svc-col-garnet,
  .svc-col-warm   { padding: 60px 5vw; min-height: 50vh; }
  .svc-watermark  { font-size: 48px; }
}

/* ═══════════════════════════════════════════════════════
   PORTFOLIO — estilos específicos de la página
   ═══════════════════════════════════════════════════════ */

/* ── Logo band ──────────────────────────────────────────── */
.logo-band {
  background: var(--cream);
  padding: 24px 0;
  text-align: center;
}

.logo-band-label {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 27px;
  text-transform: none;
  letter-spacing: normal;
  color: var(--garnet);
  margin-bottom: 32px;
  background: none;
  text-align: center;
  text-decoration: none;
}

.logo-marquee {
  overflow: hidden;
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 64px;
  width: max-content;
  animation: marquee 30s linear infinite;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.logo-brand-img {
  height: 90px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  opacity: .65;
  filter: grayscale(100%) contrast(1.7) brightness(0.75);
  flex-shrink: 0;
}

/* ── Portfolio sections (2-col layout) ──────────────────── */
.pf-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--border);
}

.pf-section--warm { background: #F2EBE2; }

/* Sidebar (sticky label + title + desc) */
.pf-sidebar {
  padding: 6rem 5vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.8rem;
  border-right: 1px solid var(--border);
  position: sticky;
  top: var(--nav-h);
  align-self: start;
}

/* In reversed sections sidebar is on the right */
.pf-section--rev .pf-sidebar {
  border-right: none;
  border-left: 1px solid var(--border);
  order: 2;
}

.pf-section--rev .pf-cases { order: 1; }

.pf-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.4rem, 3.5vw, 3.8rem);
  line-height: 1.1;
  color: var(--dark);
}

.pf-desc {
  font-size: .9rem;
  color: var(--secondary);
  line-height: 1.9;
}

/* ── UGC grid: 2×2 tall cards ───────────────────────────── */
.pf-grid {
  padding: 4rem 5vw;
}

.ugc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.ugc-card {
  background: var(--dark);
  aspect-ratio: 9 / 16;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.2rem;
  position: relative;
}

.ugc-num {
  font-size: .6rem;
  letter-spacing: .22em;
  color: var(--garnet);
  font-weight: 400;
}

.ugc-tag {
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(250,247,242,.5);
  align-self: flex-start;
}

/* ── Results bar (dark bg) ──────────────────────────────── */
.pf-results {
  background: var(--dark);
  padding: 2.5rem 6vw;
  border-bottom: 1px solid rgba(250,247,242,.08);
}

.pf-results-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 960px;
  margin: 0 auto;
}

.pf-result-item {
  flex: 1;
  text-align: center;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  gap: .8rem;
}

.pf-result-num {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(3rem, 5vw, 5.5rem);
  line-height: 1;
  color: var(--cream);
}

.pf-result-label {
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(250,247,242,.45);
}

.pf-result-sep {
  width: 1px;
  height: 64px;
  background: rgba(250,247,242,.1);
  flex-shrink: 0;
}

/* ── Case cards (Paid Media) ────────────────────────────── */
.pf-cases {
  padding: 5rem 5vw;
  display: flex;
  flex-direction: column;
  gap: 0;
  justify-content: center;
}

.case-card {
  border: 1px solid var(--border);
  padding: 2.2rem 2.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  margin-bottom: -1px; /* collapse borders */
  transition: background .2s;
}

.case-card:hover { background: rgba(28,26,23,.03); }

.case-head {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.case-brand {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 1.4rem;
  color: var(--dark);
}

.case-sector {
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--secondary);
}

.case-metrics {
  display: flex;
  gap: 2.5rem;
  flex-shrink: 0;
}

.case-metric {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .25rem;
}

.case-metric-val {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(1.6rem, 2.2vw, 2.4rem);
  line-height: 1;
  color: var(--dark);
}

.case-metric-lbl {
  font-size: .58rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--secondary);
}

.pf-disclaimer {
  margin-top: 2rem;
  font-size: .7rem;
  color: rgba(107,101,96,.55);
  letter-spacing: .02em;
}

/* ═══════════════════════════════════════════════════════
   TIENDA — estilos específicos de la página
   ═══════════════════════════════════════════════════════ */

/* ── Filtros ────────────────────────────────────────────── */
.shop-filters {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 1.8rem 6vw;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
  gap: .6rem;
}

.filter-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: .68rem;
  font-weight: 400;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: .65rem 1.4rem;
  border: 1px solid var(--dark);
  border-radius: 0;
  background: transparent;
  color: var(--dark);
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}

.filter-btn:hover {
  background: var(--dark);
  color: var(--cream);
}

.filter-btn--active {
  background: var(--garnet);
  color: var(--cream);
  border-color: var(--garnet);
}

.filter-btn--active:hover {
  background: #5a000c;
  border-color: #5a000c;
}

/* ── Product grid ───────────────────────────────────────── */
.shop-grid-section {
  padding: 4rem 6vw 5rem;
  border-bottom: 1px solid var(--border);
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* ── Featured Journal Hero ──────────────────────────────── */
.shop-journal-hero {
  width: 100%;
  border: 1px solid var(--border);
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
}

/* Dark top block – 16:9 ratio */
.shop-journal-dark {
  background: var(--dark);
  aspect-ratio: 16 / 9;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shop-journal-badge {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  background: var(--garnet);
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: .3rem .7rem;
}

.shop-journal-dark-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.5rem 6vw;
  gap: 1rem;
}

.shop-journal-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--cream);
  line-height: 1.1;
  margin: 0;
}

.shop-journal-tagline {
  font-family: 'DM Sans', sans-serif;
  font-size: .82rem;
  color: rgba(250,247,242,.55);
  letter-spacing: .04em;
  margin: 0;
}

/* Features list — 2-column grid */
.shop-journal-features {
  list-style: none;
  padding: 0;
  margin: .4rem 0 0;
  display: grid;
  grid-template-columns: repeat(2, auto);
  column-gap: 2.5rem;
  row-gap: .55rem;
  text-align: left;
}

.shop-journal-features li {
  font-family: 'DM Sans', sans-serif;
  font-size: .8rem;
  color: rgba(250,247,242,.75);
  display: flex;
  align-items: center;
  gap: .5rem;
}

.shop-journal-dot {
  color: var(--garnet);
  font-weight: 700;
  flex-shrink: 0;
}

/* Cream bottom block */
.shop-journal-body {
  background: var(--cream);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-top: 1px solid var(--border);
}

.shop-journal-meta {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.shop-journal-price {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 2.25rem;
  color: var(--garnet);
  line-height: 1;
}

.shop-journal-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: .82rem;
  color: var(--secondary);
  line-height: 1.7;
  max-width: 480px;
  margin: 0;
}

.shop-journal-cta {
  white-space: nowrap;
  flex-shrink: 0;
  width: auto;
  min-width: 200px;
  text-align: center;
}

/* Secondary 3-column grid */
.shop-grid--secondary {
  grid-template-columns: repeat(3, 1fr);
}

/* ── Product card ───────────────────────────────────────── */
.product-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  transition: box-shadow .2s;
}

.product-card:hover {
  box-shadow: 0 4px 24px rgba(28,26,23,.08);
}

/* Dark thumbnail block — 4:3 ratio */
.product-thumb {
  background: var(--dark);
  aspect-ratio: 4 / 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.4rem;
}

.product-num {
  font-size: .62rem;
  letter-spacing: .22em;
  color: var(--garnet);
  font-weight: 400;
}

.product-cat-badge {
  font-size: .6rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(250,247,242,.5);
  align-self: flex-start;
}

/* Cream content block */
.product-body {
  padding: 1.6rem 1.6rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: .8rem;
  flex: 1;
}

.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(1.2rem, 1.6vw, 1.55rem);
  line-height: 1.2;
  color: var(--dark);
}

.product-desc {
  font-size: .82rem;
  color: var(--secondary);
  line-height: 1.75;
  flex: 1;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: .4rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.product-price {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 1.5rem;
  color: var(--garnet);
  line-height: 1;
}

/* Buy button: outline → filled on hover */
.btn-buy {
  display: inline-flex;
  align-items: center;
  padding: .55rem 1.1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: .65rem;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  border: 1px solid var(--garnet);
  color: var(--garnet);
  background: transparent;
  border-radius: 0;
  cursor: pointer;
  transition: background .2s, color .2s;
  text-decoration: none;
}

.btn-buy:hover {
  background: var(--garnet);
  color: var(--cream);
}

/* ── Banner intermedio ──────────────────────────────────── */
.shop-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #F2EBE2;
  border-bottom: 1px solid var(--border);
}

.shop-banner-left {
  padding: 5rem 5vw;
  border-right: 1px solid var(--border);
  display: flex;
  align-items: center;
}

.shop-banner-quote {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.6rem, 2.4vw, 2.8rem);
  line-height: 1.45;
  color: var(--dark);
}

.shop-banner-right {
  padding: 5rem 5vw;
  display: flex;
  align-items: center;
}

.shop-banner-text {
  font-size: .9rem;
  color: var(--secondary);
  line-height: 1.85;
  max-width: 380px;
}

/* ── Responsive tienda ──────────────────────────────────── */
@media (max-width: 1024px) {
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
  .shop-grid--secondary { grid-template-columns: repeat(2, 1fr); }
  .shop-journal-body { flex-direction: column; align-items: flex-start; }
  .shop-journal-cta { width: 100%; }
}

@media (max-width: 768px) {
  .shop-grid { grid-template-columns: 1fr; }
  .shop-grid--secondary { grid-template-columns: 1fr; }
  .shop-journal-dark { aspect-ratio: auto; min-height: 300px; }
  .shop-journal-features { grid-template-columns: 1fr; }
  .shop-journal-body { padding: 1.6rem; }
  .shop-banner { grid-template-columns: 1fr; }
  .shop-banner-left {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 3.5rem 5vw;
  }
  .shop-banner-right { padding: 3.5rem 5vw; }
  .shop-grid-section { padding: 3rem 5vw 4rem; }
}

/* ── Responsive portfolio ───────────────────────────────── */
@media (max-width: 768px) {
  .pf-section { grid-template-columns: 1fr; }

  .pf-sidebar {
    position: static;
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 3.5rem 5vw;
  }

  .pf-section--rev .pf-sidebar {
    border-left: none;
    order: 1;
  }

  .pf-section--rev .pf-cases { order: 2; }

  .pf-grid { padding: 3rem 5vw; }

  .ugc-grid { gap: .8rem; }

  .pf-results-inner { flex-direction: column; gap: 3rem; }
  .pf-result-sep { width: 48px; height: 1px; }

  .pf-cases { padding: 3rem 5vw; }

  .case-card { flex-direction: column; align-items: flex-start; }
  .case-metrics { flex-direction: row; gap: 2rem; }
  .case-metric { align-items: flex-start; }
}
