
  :root {
    --noche: #1a1210;
    --noche-2: #241812;
    --vinotinto: #3a1712;
    --dorado: #d9a441;
    --dorado-brillante: #f0c169;
    --ember: #c13b2a;
    --crema: #f3e9d6;
    --crema-suave: #d9cbb0;
    --linea: rgba(217, 164, 65, 0.25);
  }

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

  html { scroll-behavior: smooth; }

  body {
    background: var(--noche);
    color: var(--crema);
    font-family: 'Bricolage Grotesque', sans-serif;
    overflow-x: hidden;
  }

  h1, h2, h3, .display {
    font-family: 'Fraunces', serif;
    font-weight: 700;
    letter-spacing: -0.01em;
  }

  a { color: inherit; text-decoration: none; }

  @media (prefers-reduced-motion: reduce) {
    * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  }

  /* ---------- texture ---------- */
  .grain {
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.05;
    z-index: 999;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  }

  /* ---------- nav ---------- */
  header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 6vw;
    background: linear-gradient(180deg, rgba(26,18,16,0.95), rgba(26,18,16,0));
    transition: background 0.3s;
  }
  header.scrolled { background: rgba(26,18,16,0.92); backdrop-filter: blur(8px); border-bottom: 1px solid var(--linea); }

  .logo {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .logo-icon { width: 40px; height: 40px; flex-shrink: 0; }
  .logo-text {
    font-family: 'Fraunces', serif;
    font-size: 1.22rem;
    font-weight: 700;
    color: var(--dorado-brillante);
    line-height: 1.05;
  }
  .logo-text span { display: block; color: var(--crema); font-weight: 300; font-style: italic; font-size: 0.98rem; }

  .footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
  }
  .footer-logo .logo-icon { width: 34px; height: 34px; }
  .footer-logo .logo-text { font-size: 1.05rem; }

  nav.links { display: flex; gap: 32px; font-size: 0.92rem; }
  nav.links a { position: relative; padding-bottom: 4px; opacity: 0.85; }
  nav.links a:hover { opacity: 1; }
  nav.links a::after {
    content: ''; position: absolute; left: 0; bottom: 0;
    width: 0; height: 1px; background: var(--dorado);
    transition: width 0.25s;
  }
  nav.links a:hover::after { width: 100%; }

  .nav-cta {
    background: var(--ember);
    padding: 10px 20px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .nav-cta:hover { background: #a52f21; }

  .menu-toggle { display: none; background: none; border: none; color: var(--crema); font-size: 1.6rem; cursor: pointer; }

  /* ---------- breadcrumbs ---------- */
  .breadcrumbs {
    position: fixed;
    top: 78px;
    left: 0; right: 0;
    z-index: 90;
    padding: 10px 6vw;
    font-size: 0.78rem;
    color: var(--crema-suave);
    opacity: 0.75;
    pointer-events: none;
    display: flex;
    gap: 8px;
    align-items: center;
  }
  .breadcrumbs a { pointer-events: auto; }
  .breadcrumbs a:hover { color: var(--dorado-brillante); }
  .breadcrumbs .sep { opacity: 0.5; }
  @media (max-width: 800px) { .breadcrumbs { display: none; } }

  /* ---------- hero ---------- */
  .hero {
    min-height: 100svh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0 6vw;
    background:
      radial-gradient(ellipse 80% 60% at 75% 20%, rgba(193,59,42,0.25), transparent 60%),
      radial-gradient(ellipse 60% 50% at 15% 85%, rgba(217,164,65,0.18), transparent 60%),
      var(--noche);
    overflow: hidden;
  }

  .hero-content { position: relative; z-index: 3; max-width: 680px; padding-top: 90px; }

  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--dorado-brillante);
    border: 1px solid var(--linea);
    padding: 7px 16px;
    border-radius: 100px;
    margin-bottom: 28px;
  }
  .eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--ember); animation: pulse-dot 1.6s infinite; }
  @keyframes pulse-dot { 0%,100%{opacity:1} 50%{opacity:0.3} }

  .hero h1 {
    font-size: clamp(2.6rem, 6.4vw, 5.2rem);
    line-height: 0.98;
    color: var(--crema);
  }
  .hero h1 em {
    font-style: italic;
    font-weight: 500;
    color: var(--dorado-brillante);
  }

  .hero p.sub {
    margin-top: 26px;
    font-size: clamp(1.05rem, 1.6vw, 1.25rem);
    color: var(--crema-suave);
    max-width: 480px;
    line-height: 1.55;
  }

  .hero-actions { margin-top: 42px; display: flex; gap: 18px; flex-wrap: wrap; align-items: center; }

  .btn-primary {
    background: var(--ember);
    color: var(--crema);
    padding: 17px 32px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 30px rgba(193,59,42,0.35);
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  }
  .btn-primary:hover { transform: translateY(-2px); background: #a52f21; box-shadow: 0 12px 34px rgba(193,59,42,0.45); }

  .btn-ghost {
    padding: 17px 28px;
    border-radius: 100px;
    border: 1px solid var(--linea);
    font-weight: 600;
    font-size: 1rem;
    color: var(--crema-suave);
    transition: border-color 0.2s, color 0.2s;
  }
  .btn-ghost:hover { border-color: var(--dorado); color: var(--dorado-brillante); }

  .hero-stats { display: flex; gap: 40px; margin-top: 64px; flex-wrap: wrap; }
  .hero-stats div { border-left: 1px solid var(--linea); padding-left: 16px; }
  .hero-stats .num { font-family: 'Fraunces', serif; font-size: 1.9rem; color: var(--dorado-brillante); font-weight: 600; }
  .hero-stats .lbl { font-size: 0.82rem; color: var(--crema-suave); margin-top: 2px; }

  /* accordion signature illustration */
  .accordion-wrap {
    position: absolute;
    right: -4vw;
    top: 50%;
    transform: translateY(-50%);
    width: min(46vw, 620px);
    z-index: 2;
    opacity: 0.95;
  }
  @media (max-width: 980px) {
    .accordion-wrap { opacity: 0.18; right: -10vw; width: 90vw; }
  }

  .bellow-panel { transform-origin: center; }

  /* ---------- section shell ---------- */
  section { padding: 130px 6vw; position: relative; }
  .section-head { max-width: 640px; margin-bottom: 64px; }
  .section-eyebrow {
    font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--ember); font-weight: 600; margin-bottom: 14px; display: block;
  }
  .section-head h2 { font-size: clamp(2rem, 4vw, 3.1rem); line-height: 1.05; }
  .section-head p { margin-top: 20px; color: var(--crema-suave); font-size: 1.08rem; max-width: 540px; line-height: 1.6; }

  /* ---------- sobre nosotros ---------- */
  .about { background: var(--noche-2); border-top: 1px solid var(--linea); border-bottom: 1px solid var(--linea); }
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
  .about-copy p { color: var(--crema-suave); line-height: 1.75; font-size: 1.05rem; margin-bottom: 20px; }
  .about-copy p:first-of-type::first-letter {
    font-family: 'Fraunces', serif;
    font-size: 3.4rem;
    float: left;
    line-height: 0.8;
    padding-right: 10px;
    padding-top: 6px;
    color: var(--dorado-brillante);
    font-weight: 700;
  }

  .instrument-list { list-style: none; margin-top: 32px; display: flex; flex-direction: column; gap: 0; }
  .instrument-list li {
    display: flex; justify-content: space-between; align-items: baseline;
    padding: 16px 0; border-bottom: 1px solid var(--linea);
    font-family: 'Fraunces', serif; font-size: 1.15rem;
  }
  .instrument-list li span.role { font-family: 'Bricolage Grotesque', sans-serif; font-size: 0.85rem; color: var(--crema-suave); }

  .about-visual {
    aspect-ratio: 4/5;
    border-radius: 18px;
    background:
      linear-gradient(155deg, var(--vinotinto), var(--noche) 70%);
    border: 1px solid var(--linea);
    display: flex; align-items: flex-end; justify-content: center;
    position: relative;
    overflow: hidden;
  }
  .about-visual img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
  }
  .about-visual::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(26,18,16,0) 45%, rgba(26,18,16,0.9) 100%);
  }
  .about-visual .caption {
    position: relative;
    z-index: 2;
    padding: 26px;
    text-align: center;
    font-family: 'Fraunces', serif;
    font-style: italic;
    color: var(--crema);
    font-size: 1.05rem;
  }

  /* ---------- servicios ---------- */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--linea);
    border: 1px solid var(--linea);
    border-radius: 20px;
    overflow: hidden;
  }
  .service-card {
    background: var(--noche);
    padding: 40px 28px;
    transition: background 0.25s;
  }
  .service-card:hover { background: var(--noche-2); }
  .service-card .num { font-family: 'Fraunces', serif; font-size: 0.85rem; color: var(--ember); letter-spacing: 0.08em; }
  .service-card h3 { font-size: 1.28rem; margin-top: 18px; margin-bottom: 12px; color: var(--crema); }
  .service-card p { color: var(--crema-suave); font-size: 0.94rem; line-height: 1.55; }

  @media (max-width: 900px) {
    .services-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 560px) {
    .services-grid { grid-template-columns: 1fr; }
  }

  /* ---------- galeria ---------- */
  .gallery-strip {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    grid-template-rows: 260px 260px;
    gap: 14px;
  }
  .gph {
    border-radius: 14px;
    background: linear-gradient(155deg, var(--vinotinto) 0%, var(--noche-2) 100%);
    border: 1px solid var(--linea);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 20px;
  }
  .gph img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transition: transform 0.5s ease;
  }
  .gph:hover img { transform: scale(1.05); }
  .gph::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(26,18,16,0) 40%, rgba(26,18,16,0.85) 100%);
    z-index: 1;
  }
  .gph span { font-family: 'Fraunces', serif; font-style: italic; color: var(--crema); font-size: 0.95rem; z-index: 2; position: relative; }
  .gph::before {
    content: '';
    position: absolute; inset: 0;
    background: repeating-linear-gradient(45deg, rgba(217,164,65,0.05) 0 2px, transparent 2px 14px);
  }
  .gph.tall { grid-row: span 2; }
  @media (max-width: 800px) {
    .gallery-strip { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px 200px; }
    .gph.tall { grid-row: span 1; }
  }

  /* ---------- videos ---------- */
  .video-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }
  .video-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--linea);
    background: var(--noche-2);
    aspect-ratio: 9/16;
  }
  .video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: var(--noche-2);
  }
  .video-card .play-badge {
    position: absolute;
    top: 14px; right: 14px;
    width: 34px; height: 34px;
    border-radius: 50%;
    background: rgba(26,18,16,0.65);
    border: 1px solid var(--linea);
    display: flex; align-items: center; justify-content: center;
    z-index: 2;
    pointer-events: none;
  }
  @media (max-width: 900px) {
    .video-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 560px) {
    .video-grid { grid-template-columns: 1fr; }
    .video-card { aspect-ratio: 9/13; }
  }

  /* ---------- testimonios ---------- */
  .testi-wrap { background: var(--noche-2); border-top: 1px solid var(--linea); border-bottom: 1px solid var(--linea); }
  .testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .testi-card {
    background: var(--noche);
    border: 1px solid var(--linea);
    border-radius: 16px;
    padding: 34px 28px;
  }
  .testi-card .stars { color: var(--dorado); font-size: 0.95rem; letter-spacing: 2px; margin-bottom: 18px; }
  .testi-card p.quote { font-family: 'Fraunces', serif; font-style: italic; font-size: 1.08rem; line-height: 1.55; color: var(--crema); margin-bottom: 22px; }
  .testi-card .who { font-size: 0.87rem; color: var(--crema-suave); }
  .testi-card .who strong { color: var(--dorado-brillante); font-weight: 600; }

  @media (max-width: 900px) {
    .testi-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; gap: 44px; }
  }

  /* ---------- cta final ---------- */
  .cta-final {
    text-align: center;
    background:
      radial-gradient(ellipse 70% 80% at 50% 0%, rgba(193,59,42,0.28), transparent 65%),
      var(--noche);
    padding: 150px 6vw;
  }
  .cta-final h2 { font-size: clamp(2.1rem, 5vw, 3.6rem); max-width: 720px; margin: 0 auto 26px; line-height: 1.08; }
  .cta-final p { color: var(--crema-suave); font-size: 1.1rem; margin-bottom: 44px; }
  .cta-final .btn-primary { font-size: 1.1rem; padding: 20px 40px; }

  /* ---------- footer ---------- */
  footer {
    padding: 60px 6vw 40px;
    border-top: 1px solid var(--linea);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 30px;
  }
  footer .fcol h4 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--dorado-brillante); margin-bottom: 14px; }
  footer .fcol p, footer .fcol a { font-size: 0.92rem; color: var(--crema-suave); display: block; margin-bottom: 8px; }
  footer .fcol a:hover { color: var(--dorado-brillante); }
  footer .copyright { font-size: 0.8rem; color: rgba(243,233,214,0.4); width: 100%; margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--linea); }

  /* ---------- lightbox ---------- */
  .gph, .gallery-strip .gph img { cursor: pointer; }
  .lightbox {
    position: fixed;
    inset: 0;
    z-index: 500;
    background: rgba(10,6,5,0.94);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
  }
  .lightbox.open { display: flex; }
  .lightbox img {
    max-width: 90vw;
    max-height: 82vh;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  }
  .lightbox .lb-caption {
    position: absolute;
    bottom: 34px;
    left: 0; right: 0;
    text-align: center;
    font-family: 'Fraunces', serif;
    font-style: italic;
    color: var(--crema);
  }
  .lightbox .lb-close, .lightbox .lb-prev, .lightbox .lb-next {
    position: absolute;
    background: rgba(217,164,65,0.12);
    border: 1px solid var(--linea);
    color: var(--crema);
    width: 46px; height: 46px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    font-size: 1.3rem;
    transition: background 0.2s;
  }
  .lightbox .lb-close:hover, .lightbox .lb-prev:hover, .lightbox .lb-next:hover { background: rgba(217,164,65,0.28); }
  .lightbox .lb-close { top: 26px; right: 26px; }
  .lightbox .lb-prev { left: 26px; top: 50%; transform: translateY(-50%); }
  .lightbox .lb-next { right: 26px; top: 50%; transform: translateY(-50%); }
  @media (max-width: 700px) {
    .lightbox .lb-prev, .lightbox .lb-next { width: 38px; height: 38px; font-size: 1.05rem; }
  }

  /* ---------- FAQ ---------- */
  .faq-list { max-width: 780px; }
  .faq-item {
    border-bottom: 1px solid var(--linea);
  }
  .faq-q {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    font-family: 'Fraunces', serif;
    font-size: 1.12rem;
    color: var(--crema);
  }
  .faq-q .plus {
    flex-shrink: 0;
    width: 26px; height: 26px;
    border-radius: 50%;
    border: 1px solid var(--linea);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    color: var(--dorado-brillante);
    transition: transform 0.3s;
  }
  .faq-item.open .faq-q .plus { transform: rotate(45deg); }
  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    color: var(--crema-suave);
    line-height: 1.65;
    font-size: 0.98rem;
  }
  .faq-item.open .faq-a { padding-bottom: 24px; }

  /* ---------- whatsapp float ---------- */
  .wa-float {
    position: fixed;
    bottom: 26px;
    right: 26px;
    z-index: 200;
    background: #25D366;
    width: 62px; height: 62px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(37,211,102,0.5);
    animation: float-bounce 3s ease-in-out infinite;
  }
  .wa-float:hover { transform: scale(1.08); }
  @keyframes float-bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }
  .wa-float svg { width: 30px; height: 30px; }

  /* reveal on scroll */
  .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal.in { opacity: 1; transform: translateY(0); }

  @media (max-width: 800px) {
    nav.links, .nav-cta { display: none; }
    .about-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
  }

/* ==================================================================
   SHARED STYLES — subpáginas (serenatas, matrimonios, empresas,
   cotizar, contacto)
   ================================================================== */

/* ---------- page hero (subpáginas) ---------- */
.page-hero {
  min-height: 62vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 140px 6vw 90px;
  background:
    radial-gradient(ellipse 80% 60% at 80% 10%, rgba(193,59,42,0.25), transparent 60%),
    radial-gradient(ellipse 60% 50% at 10% 90%, rgba(217,164,65,0.16), transparent 60%),
    var(--noche);
}
.page-hero-content { max-width: 720px; }
.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.05;
  color: var(--crema);
}
.page-hero h1 em { font-style: italic; font-weight: 500; color: var(--dorado-brillante); }
.page-hero p.sub {
  margin-top: 22px;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--crema-suave);
  max-width: 560px;
  line-height: 1.6;
}
.page-hero .hero-actions { margin-top: 36px; }

/* ---------- breadcrumbs with multiple items ---------- */
.breadcrumbs .sep::before { content: '/'; }

/* ---------- process steps ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.process-step { position: relative; padding-left: 0; }
.process-step .step-num {
  font-family: 'Fraunces', serif;
  font-size: 2.4rem;
  color: var(--ember);
  opacity: 0.5;
  display: block;
  margin-bottom: 14px;
}
.process-step h3 { font-size: 1.1rem; margin-bottom: 10px; color: var(--crema); }
.process-step p { color: var(--crema-suave); font-size: 0.94rem; line-height: 1.55; }
@media (max-width: 900px) { .process-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .process-grid { grid-template-columns: 1fr; } }

/* ---------- pricing table ---------- */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--noche-2);
  border: 1px solid var(--linea);
  border-radius: 14px;
  overflow: hidden;
}
.pricing-table th, .pricing-table td {
  padding: 18px 22px;
  text-align: left;
  border-bottom: 1px solid var(--linea);
  font-size: 0.95rem;
}
.pricing-table th {
  font-family: 'Fraunces', serif;
  color: var(--dorado-brillante);
  font-weight: 600;
  background: rgba(217,164,65,0.06);
}
.pricing-table td { color: var(--crema-suave); }
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-note { margin-top: 18px; font-size: 0.85rem; color: var(--crema-suave); opacity: 0.8; }

/* ---------- forms (cotizar / contacto) ---------- */
.form-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}
@media (max-width: 900px) { .form-wrap { grid-template-columns: 1fr; gap: 44px; } }

.quote-form {
  background: var(--noche-2);
  border: 1px solid var(--linea);
  border-radius: 18px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row { display: flex; flex-direction: column; gap: 8px; }
.form-row label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--dorado-brillante);
  font-weight: 600;
}
.form-row input, .form-row select, .form-row textarea {
  background: var(--noche);
  border: 1px solid var(--linea);
  border-radius: 10px;
  padding: 13px 16px;
  color: var(--crema);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.98rem;
  transition: border-color 0.2s;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--dorado);
}
.form-row textarea { resize: vertical; min-height: 100px; }
.form-row select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%23d9a441' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
.form-submit {
  background: var(--ember);
  color: var(--crema);
  border: none;
  padding: 17px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform 0.2s, background 0.2s;
}
.form-submit:hover { transform: translateY(-2px); background: #a52f21; }
.form-note { font-size: 0.82rem; color: var(--crema-suave); opacity: 0.75; }

.contact-info-list { display: flex; flex-direction: column; gap: 26px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-info-item .ci-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(217,164,65,0.1);
  border: 1px solid var(--linea);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info-item h4 { font-size: 1rem; color: var(--crema); margin-bottom: 4px; }
.contact-info-item p, .contact-info-item a { color: var(--crema-suave); font-size: 0.94rem; }
.contact-info-item a:hover { color: var(--dorado-brillante); }

.map-embed {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--linea);
  margin-top: 30px;
}
.map-embed iframe { width: 100%; height: 280px; border: 0; display: block; filter: grayscale(0.3) invert(0.92) contrast(0.9); }

/* ---------- related links ---------- */
.related-links { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 30px; }
.related-links a {
  padding: 10px 20px;
  border-radius: 100px;
  border: 1px solid var(--linea);
  font-size: 0.88rem;
  color: var(--crema-suave);
  transition: border-color 0.2s, color 0.2s;
}
.related-links a:hover { border-color: var(--dorado); color: var(--dorado-brillante); }

/* ---------- mobile nav ---------- */
@media (max-width: 800px) {
  .menu-toggle { display: flex; align-items: center; justify-content: center; }
}
.mobile-nav {
  position: fixed;
  top: 78px; left: 0; right: 0;
  z-index: 99;
  background: rgba(26,18,16,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--linea);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  display: flex;
  flex-direction: column;
}
.mobile-nav.open { max-height: 420px; }
.mobile-nav a {
  padding: 16px 6vw;
  border-bottom: 1px solid var(--linea);
  font-size: 0.98rem;
  color: var(--crema-suave);
}
.mobile-nav a:hover { color: var(--dorado-brillante); }
.mobile-nav .nav-cta { margin: 16px 6vw; align-self: flex-start; }

/* ---------- blog index ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .blog-grid { grid-template-columns: 1fr; } }

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--noche-2);
  border: 1px solid var(--linea);
  border-radius: 18px;
  padding: 32px 26px;
  transition: transform 0.25s, border-color 0.25s;
}
.blog-card:hover { transform: translateY(-4px); border-color: var(--dorado); }
.blog-card .blog-tag {
  font-family: 'Fraunces', serif;
  font-size: 0.8rem;
  color: var(--ember);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.blog-card h3 { font-size: 1.32rem; margin-top: 16px; margin-bottom: 12px; color: var(--crema); line-height: 1.25; }
.blog-card p { color: var(--crema-suave); font-size: 0.95rem; line-height: 1.55; flex-grow: 1; }
.blog-card .blog-read {
  margin-top: 22px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dorado-brillante);
}
.blog-card .blog-read::after { content: " →"; }

/* ---------- article prose ---------- */
.article-shell { max-width: 760px; margin: 0 auto; }
.article-meta {
  display: flex;
  gap: 14px;
  align-items: center;
  color: var(--crema-suave);
  font-size: 0.86rem;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.article-meta .dot-sep { width: 4px; height: 4px; border-radius: 50%; background: var(--dorado); }
.article-prose h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  margin-top: 52px;
  margin-bottom: 20px;
  color: var(--crema);
}
.article-prose h3 {
  font-size: 1.25rem;
  margin-top: 34px;
  margin-bottom: 14px;
  color: var(--dorado-brillante);
}
.article-prose p {
  color: var(--crema-suave);
  font-size: 1.04rem;
  line-height: 1.75;
  margin-bottom: 18px;
}
.article-prose ul, .article-prose ol {
  color: var(--crema-suave);
  font-size: 1.02rem;
  line-height: 1.7;
  margin: 0 0 22px 22px;
}
.article-prose li { margin-bottom: 10px; }
.article-prose li strong { color: var(--crema); }
.article-prose blockquote {
  border-left: 3px solid var(--dorado);
  padding: 4px 0 4px 22px;
  margin: 30px 0;
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--crema);
  font-size: 1.12rem;
}
.article-cta-inline {
  margin: 40px 0;
  padding: 28px;
  background: var(--noche-2);
  border: 1px solid var(--linea);
  border-radius: 16px;
  text-align: center;
}
.article-cta-inline p { color: var(--crema); font-size: 1.02rem; margin-bottom: 18px; }
