/* ============================================================================
   1. RESET & BASE
   ============================================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  color: var(--ink-900);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
svg { width: 20px; height: 20px; flex: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
ul { list-style: none; }
input, textarea, select { font: inherit; color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 500; line-height: 1.2; }
::selection { background: var(--gold-400); color: var(--ink-900); }

/* ============================================================================
   2. DESIGN TOKENS
   ============================================================================ */
:root {
  --ink-900: #0B0B0B;
  --ink-800: #17171A;
  --ink-700: #232326;
  --white: #FFFFFF;

  --gold-300: #DCC392;
  --gold-400: #C8A96A;
  --gold-500: #B4924E;
  --gold-600: #9A7A3C;

  --stone-50: #FAF9F7;
  --stone-100: #F3F1ED;
  --stone-200: #E5E1D8;
  --stone-300: #CFC9BC;
  --stone-400: #9A9488;
  --stone-500: #7C7870;
  --stone-600: #5C584F;

  --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  --shadow-soft: 0 20px 60px -15px rgba(11, 11, 11, 0.18);
  --shadow-gold: 0 15px 40px -10px rgba(200, 169, 106, 0.35);

  --container-max: 1280px;
}

/* ============================================================================
   3. LAYOUT / UTILITIES
   ============================================================================ */
.container-page {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 720px) { .container-page { padding: 0 40px; } }
@media (min-width: 1280px) { .container-page { padding: 0 56px; } }

.section-pad { padding: 56px 0; }
@media (min-width: 720px) { .section-pad { padding: 80px 0; } }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}
.eyebrow .rule { height: 1px; width: 32px; background: var(--gold-400); display: inline-block; }

.bg-ink { background: var(--ink-900); color: var(--white); }
.bg-stone { background: var(--stone-50); }
.text-gold { color: var(--gold-400); }
.text-muted { color: var(--stone-500); }
.text-muted-light { color: var(--stone-400); }

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(1, 1fr); }
.grid-3 { grid-template-columns: repeat(1, 1fr); }
.grid-4 { grid-template-columns: repeat(1, 1fr); }
@media (min-width: 720px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ============================================================================
   4. BUTTONS
   ============================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 999px;
  transition: transform 0.35s var(--ease-out), background-color 0.35s var(--ease-out), color 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--white); color: var(--ink-900); }
.btn-primary:hover { background: var(--gold-400); box-shadow: var(--shadow-gold); }
.btn-outline { border: 1px solid rgba(255,255,255,0.35); color: var(--white); }
.btn-outline:hover { border-color: var(--gold-400); color: var(--gold-400); }
.btn-outline-dark { border: 1px solid var(--stone-300); color: var(--ink-900); }
.btn-outline-dark:hover { border-color: var(--gold-500); color: var(--gold-600); }
.btn-gold { background: linear-gradient(135deg, var(--gold-300), var(--gold-600)); color: var(--ink-900); }
.btn-gold:hover { box-shadow: var(--shadow-gold); }
.btn-block { width: 100%; }

/* ============================================================================
   5. NAVBAR
   ============================================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: background-color 0.4s var(--ease-out), padding 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.navbar .container-page { display: flex; align-items: center; justify-content: space-between; }
.navbar.is-scrolled {
  background: rgba(11, 11, 11, 0.92);
  backdrop-filter: blur(10px);
  padding: 14px 0;
  box-shadow: 0 8px 30px -10px rgba(0,0,0,0.4);
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-600));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-weight: 700; color: var(--ink-900); font-size: 15px;
  flex: none;
}
.brand-name { color: var(--white); font-family: var(--font-serif); font-size: 17px; letter-spacing: 0.01em; }

.nav-links { display: none; align-items: center; gap: 36px; }
@media (min-width: 960px) { .nav-links { display: flex; } }
.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--gold-400); transition: width 0.35s var(--ease-out);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after, .nav-links a.is-active::after { width: 100%; }
.nav-links a.is-active { color: var(--gold-300); }

.nav-cta { display: none; }
@media (min-width: 960px) { .nav-cta { display: inline-flex; } }

.nav-toggle {
  display: flex; flex-direction: column; gap: 5px; width: 26px;
  color: var(--white);
}
@media (min-width: 960px) { .nav-toggle { display: none; } }
.nav-toggle span { display: block; height: 2px; width: 100%; background: currentColor; transition: transform 0.3s var(--ease-out), opacity 0.3s var(--ease-out); }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 90;
  background: var(--ink-900);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 28px;
  opacity: 0; visibility: hidden; transform: translateY(-12px);
  transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out), visibility 0.35s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-menu a { color: var(--white); font-family: var(--font-serif); font-size: 26px; }
.mobile-menu a:hover { color: var(--gold-300); }

/* ============================================================================
   6. HERO
   ============================================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--ink-900);
  color: var(--white);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 55% at 82% 18%, rgba(200,169,106,0.16), transparent 60%),
    repeating-linear-gradient(115deg, rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 1px, transparent 1px, transparent 34px);
}
.hero-bg::after {
  content: "";
  position: absolute; right: -6%; bottom: -12%;
  width: 60vw; height: 60vw; max-width: 720px; max-height: 720px;
  background: radial-gradient(circle, rgba(200,169,106,0.10), transparent 70%);
}
.hero-content { position: relative; z-index: 2; max-width: 760px; padding-top: 96px; }
.hero .eyebrow { color: var(--gold-300); margin-bottom: 22px; }
.hero h1 { font-size: clamp(2.2rem, 5.2vw, 4.2rem); color: var(--white); margin-bottom: 22px; }
.hero p.lead { font-size: clamp(1rem, 1.4vw, 1.15rem); color: rgba(255,255,255,0.72); max-width: 560px; margin-bottom: 36px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 48px; }
.hero-indicators { display: flex; flex-wrap: wrap; gap: 28px; }
.hero-indicator { display: flex; align-items: center; gap: 10px; font-size: 13px; color: rgba(255,255,255,0.65); }
.hero-indicator .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold-400); }

.scroll-indicator {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.5); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
}
.scroll-indicator .line { width: 1px; height: 34px; background: linear-gradient(var(--gold-400), transparent); animation: scrollLine 2.2s var(--ease-in-out) infinite; }
@keyframes scrollLine { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ============================================================================
   7. GENERATED PLACEHOLDER PANELS (no external images required)
   ============================================================================ */
.placeholder-panel {
  position: relative;
  background: var(--ink-900);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  height: 260px;
}
.placeholder-panel::before {
  content: "";
  position: absolute; inset: 0;
  background: repeating-linear-gradient(125deg, rgba(200,169,106,0.05) 0px, rgba(200,169,106,0.05) 1px, transparent 1px, transparent 22px);
}
.placeholder-panel::after {
  content: "";
  position: absolute; width: 55%; height: 55%; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,169,106,0.20), transparent 70%);
  top: -10%; right: -10%;
}
.placeholder-panel svg { position: relative; z-index: 1; width: 34%; height: 34%; color: rgba(200,169,106,0.25); }
.placeholder-panel .caption {
  position: absolute; z-index: 2; left: 16px; bottom: 14px;
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.55);
}

.monogram {
  flex: none; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-600));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-weight: 700; color: var(--ink-900);
}

/* ============================================================================
   8. SECTIONS — cards, specialties, about, why-us, process, stats, testimonials,
      blog, faq, cta, footer
   ============================================================================ */

/* Specialties */
.specialty-card {
  border: 1px solid var(--stone-200);
  border-radius: 18px;
  padding: 32px 26px;
  transition: border-color 0.35s var(--ease-out), transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
  background: var(--white);
}
.specialty-card:hover { border-color: var(--gold-400); transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.specialty-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--stone-50); display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; color: var(--gold-600);
}
.specialty-icon svg { width: 24px; height: 24px; }
.specialty-card h3 { font-size: 19px; margin-bottom: 10px; color: var(--ink-900); }
.specialty-card p { font-size: 14px; color: var(--stone-500); line-height: 1.6; }

/* About */
.about-grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
@media (min-width: 960px) { .about-grid { grid-template-columns: 1fr 1fr; gap: 64px; } }
.about-values { display: grid; gap: 20px; margin-top: 28px; }
.about-value { display: flex; gap: 16px; }
.about-value .num { font-family: var(--font-serif); font-size: 18px; color: var(--gold-500); flex: none; width: 28px; }

/* Why us */
.whyus-card { padding: 30px 26px; border-radius: 18px; background: var(--stone-50); }
.whyus-icon { width: 46px; height: 46px; border-radius: 12px; background: var(--ink-900); color: var(--gold-400); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.whyus-icon svg { width: 22px; height: 22px; }
.whyus-card h3 { font-size: 17px; margin-bottom: 8px; }
.whyus-card p { font-size: 14px; color: var(--stone-500); }

/* Process timeline */
.process-grid { display: grid; grid-template-columns: 1fr; gap: 0; position: relative; }
@media (min-width: 960px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }
.process-step { position: relative; padding: 28px 22px 0 0; }
.process-step .step-num { font-family: var(--font-serif); font-size: 44px; color: rgba(200,169,106,0.35); line-height: 1; margin-bottom: 18px; }
.process-step h3 { font-size: 17px; color: var(--white); margin-bottom: 10px; }
.process-step p { font-size: 14px; color: rgba(255,255,255,0.6); }
.process-step::before {
  content: ""; position: absolute; top: 0; left: 0; right: 22px; height: 1px;
  background: rgba(200,169,106,0.3);
}

/* Stats */
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; text-align: center; }
@media (min-width: 720px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-value { font-family: var(--font-serif); font-size: clamp(2.2rem, 4vw, 3.4rem); color: var(--gold-400); }
.stat-label { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 8px; letter-spacing: 0.02em; }

/* Testimonials */
.testimonial-track { position: relative; overflow: hidden; }
.testimonial-slide {
  display: none;
  max-width: 720px; margin: 0 auto; text-align: center;
}
.testimonial-slide.is-active { display: block; animation: fadeSlide 0.6s var(--ease-out); }
@keyframes fadeSlide { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
.testimonial-quote { font-family: var(--font-serif); font-size: clamp(1.2rem, 2.4vw, 1.7rem); line-height: 1.5; color: var(--ink-900); margin-bottom: 28px; }
.testimonial-person { display: flex; align-items: center; justify-content: center; gap: 14px; }
.testimonial-name { font-weight: 600; font-size: 14px; }
.testimonial-role { font-size: 13px; color: var(--stone-500); }
.testimonial-stars { color: var(--gold-400); margin-bottom: 16px; font-size: 14px; letter-spacing: 3px; }
.testimonial-nav { display: flex; justify-content: center; gap: 10px; margin-top: 36px; }
.testimonial-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--stone-300); transition: background 0.3s var(--ease-out), transform 0.3s var(--ease-out); }
.testimonial-dot.is-active { background: var(--gold-400); transform: scale(1.3); }

/* Blog cards */
.blog-card { border: 1px solid var(--stone-200); border-radius: 18px; overflow: hidden; background: var(--white); transition: box-shadow 0.4s var(--ease-out); display: flex; flex-direction: column; }
.blog-card:hover { box-shadow: var(--shadow-soft); }
.blog-card .placeholder-panel { height: 210px; }
.blog-card-body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.blog-meta { display: flex; align-items: center; gap: 10px; font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold-600); }
.blog-meta .sep { width: 4px; height: 4px; border-radius: 50%; background: var(--stone-300); }
.blog-card h3 { font-size: 18px; color: var(--ink-900); }
.blog-card p { font-size: 14px; color: var(--stone-500); flex: 1; }
.blog-foot { display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: var(--stone-400); margin-top: 6px; }
.blog-readmore { font-size: 13px; font-weight: 600; color: var(--ink-900); display: inline-flex; align-items: center; gap: 6px; }
.blog-card:hover .blog-readmore { color: var(--gold-600); }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--stone-200); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 0; text-align: left; font-size: 16px; font-weight: 500; color: var(--ink-900);
}
.faq-icon { flex: none; width: 20px; height: 20px; position: relative; }
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; background: var(--gold-500); transition: transform 0.3s var(--ease-out); }
.faq-icon::before { top: 50%; left: 0; width: 100%; height: 1.5px; transform: translateY(-50%); }
.faq-icon::after { left: 50%; top: 0; height: 100%; width: 1.5px; transform: translateX(-50%); }
.faq-item.is-open .faq-icon::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease-out); }
.faq-answer p { padding-bottom: 22px; font-size: 14px; color: var(--stone-500); line-height: 1.7; max-width: 640px; }
.faq-item.is-open .faq-answer { max-height: 260px; }

/* CTA final */
.cta-final { text-align: center; padding: 90px 0; background: var(--ink-900); color: var(--white); position: relative; overflow: hidden; }
.cta-final::before { content: ""; position: absolute; inset: 0; background: radial-gradient(50% 60% at 50% 0%, rgba(200,169,106,0.14), transparent 70%); }
.cta-final h2 { position: relative; font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 20px; max-width: 720px; margin-left: auto; margin-right: auto; }
.cta-final p { position: relative; color: rgba(255,255,255,0.65); max-width: 520px; margin: 0 auto 34px; }
.cta-final .hero-actions { position: relative; justify-content: center; margin-bottom: 0; }

/* Footer */
.footer { background: var(--ink-900); color: rgba(255,255,255,0.7); padding-top: 72px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer h4 { color: var(--white); font-family: var(--font-sans); font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 18px; font-weight: 600; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.62); }
.footer-links a:hover { color: var(--gold-400); }
.footer-socials { display: flex; gap: 12px; margin-top: 20px; }
.footer-social {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center; transition: border-color 0.3s var(--ease-out), color 0.3s var(--ease-out);
}
.footer-social:hover { border-color: var(--gold-400); color: var(--gold-400); }
.footer-map { border-radius: 16px; overflow: hidden; margin-bottom: 20px; }
.footer-bottom { padding: 26px 0; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,0.4); }

/* ============================================================================
   9. FLOATING UI — whatsapp, back-to-top, scroll-progress, cursor, loader
   ============================================================================ */
.progress-bar { position: fixed; top: 0; left: 0; height: 3px; width: 0%; background: var(--gold-400); z-index: 200; transition: width 0.1s linear; }

.whatsapp-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 150;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px -8px rgba(37, 211, 102, 0.55);
  transition: transform 0.3s var(--ease-out);
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 28px; height: 28px; }

.back-to-top {
  position: fixed; right: 22px; bottom: 90px; z-index: 150;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--ink-900); color: var(--gold-400);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.15);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out), visibility 0.3s;
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }

.cursor-dot, .cursor-ring { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 300; border-radius: 50%; opacity: 0; transition: opacity 0.25s var(--ease-out); }
.cursor-dot { width: 6px; height: 6px; background: var(--gold-400); }
.cursor-ring { width: 32px; height: 32px; border: 1px solid rgba(200,169,106,0.6); transition: opacity 0.25s var(--ease-out), transform 0.15s var(--ease-out); }
.cursor-dot.is-ready, .cursor-ring.is-ready { opacity: 1; }
@media (hover: none), (pointer: coarse) { .cursor-dot, .cursor-ring { display: none; } }

.loader {
  position: fixed; inset: 0; z-index: 500; background: var(--ink-900);
  display: flex; align-items: center; justify-content: center;
  animation: loaderHide 0.6s var(--ease-out) 1.1s forwards;
}
.loader-mark { font-family: var(--font-serif); font-size: 28px; color: var(--gold-400); letter-spacing: 0.08em; animation: loaderPulse 1.1s var(--ease-in-out) infinite; }
@keyframes loaderPulse { 0%, 100% { opacity: 0.4; } 50% { opacity: 1; } }
@keyframes loaderHide { to { opacity: 0; visibility: hidden; pointer-events: none; } }

/* ============================================================================
   10. REVEAL ON SCROLL — defensive rules per skill guidance
   ============================================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal[data-split] { opacity: 1; transform: none; } /* defensive: never let a reveal+split combo hide content */

/* ============================================================================
   11. PAGE HEADER (inner pages)
   ============================================================================ */
.page-header { background: var(--ink-900); color: var(--white); padding: 150px 0 70px; }
.page-header .breadcrumb { font-size: 12px; color: rgba(255,255,255,0.5); margin-bottom: 18px; }
.page-header .breadcrumb a { color: rgba(255,255,255,0.5); }
.page-header .breadcrumb a:hover { color: var(--gold-400); }
.page-header h1 { font-size: clamp(1.9rem, 4vw, 3rem); color: var(--white); max-width: 720px; margin-bottom: 16px; }
.page-header p { color: rgba(255,255,255,0.65); max-width: 560px; }

/* ============================================================================
   12. TEAM / VALUES (Sobre nosotros)
   ============================================================================ */
.team-card { text-align: center; }
.team-card .monogram { width: 96px; height: 96px; font-size: 26px; margin: 0 auto 18px; }
.team-card h3 { font-size: 16px; margin-bottom: 4px; }
.team-card p { font-size: 13px; color: var(--stone-500); }

/* ============================================================================
   13. CONTACT PAGE
   ============================================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 960px) { .contact-grid { grid-template-columns: 1fr 1.2fr; } }
.contact-info-item { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--stone-200); }
.contact-info-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--stone-50); color: var(--gold-600); display: flex; align-items: center; justify-content: center; flex: none; }
.contact-info-icon svg { width: 18px; height: 18px; }
.contact-info-item h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--stone-400); margin-bottom: 4px; }
.contact-info-item p, .contact-info-item a { font-size: 15px; color: var(--ink-900); }

.field { margin-bottom: 20px; }
.field label { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--stone-500); margin-bottom: 8px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 14px 16px; border: 1px solid var(--stone-200); border-radius: 10px;
  background: var(--stone-50); font-size: 14px; transition: border-color 0.3s var(--ease-out);
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--gold-400); background: var(--white); }
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 12px; color: var(--stone-400); margin-top: 14px; }
.form-success { display: none; padding: 16px; border-radius: 10px; background: rgba(200,169,106,0.12); color: var(--gold-600); font-size: 14px; margin-bottom: 20px; }
.form-success.is-visible { display: block; }

/* ============================================================================
   14. 404 PAGE
   ============================================================================ */
.notfound { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; background: var(--ink-900); color: var(--white); padding: 120px 24px 60px; }
.notfound .code { font-family: var(--font-serif); font-size: clamp(4rem, 14vw, 9rem); color: var(--gold-400); line-height: 1; margin-bottom: 12px; }
.notfound h1 { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 16px; }
.notfound p { color: rgba(255,255,255,0.6); margin-bottom: 32px; max-width: 440px; margin-left: auto; margin-right: auto; }

/* ============================================================================
   15. ARTICLE PAGE
   ============================================================================ */
.article-hero-img { aspect-ratio: 16/9; height: auto; width: 100%; border-radius: 18px; margin-bottom: 8px; }
.article-body { max-width: 720px; }
.article-body p { font-size: 16px; line-height: 1.85; color: var(--stone-600); margin-bottom: 22px; }
.article-sidebar { display: flex; flex-direction: column; gap: 24px; }
.sidebar-card { border-radius: 16px; background: var(--stone-50); padding: 24px; }
.sidebar-card h3 { font-size: 16px; margin-bottom: 10px; }
.sidebar-card p { font-size: 13px; color: var(--stone-500); margin-bottom: 16px; }
.related-item { display: flex; align-items: center; gap: 14px; border: 1px solid var(--stone-200); border-radius: 12px; padding: 10px; transition: border-color 0.3s var(--ease-out); }
.related-item:hover { border-color: var(--gold-400); }
.related-item .placeholder-panel { width: 64px; height: 64px; min-height: 0; border-radius: 10px; flex: none; }
.related-item .placeholder-panel svg { width: 40%; height: 40%; }
.related-item span { font-size: 13px; font-weight: 600; color: var(--ink-900); }

@media (prefers-reduced-motion: reduce) {
  .loader-mark { animation: none; opacity: 1; }
  .scroll-indicator .line { animation: none; transform: scaleY(1); }
}
