:root {
    --cream: #F6EFE3;
    --cream-warm: #EDE3D0;
    --paper: #FBF7EE;
    --ink: #1A1612;
    --ink-2: #4A3F33;
    --ink-mute: #786959;
    --clay: #C0552B;
    --clay-deep: #9D4321;
    --teal: #2D6A6A;
    --jungle: #1F3D2C;
    --gold: #B89968;
    --line: rgba(26, 22, 18, 0.12);
    --line-strong: rgba(26, 22, 18, 0.22);
    --shadow-sm: 0 1px 2px rgba(26,22,18,0.06);
    --shadow: 0 1px 2px rgba(26,22,18,0.06), 0 8px 32px rgba(26,22,18,0.06);
    --shadow-lg: 0 4px 12px rgba(26,22,18,0.08), 0 24px 64px rgba(26,22,18,0.10);
    --display: "Fraunces", Georgia, serif;
    --body: "Manrope", system-ui, -apple-system, sans-serif;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: var(--body);
    font-size: 17px;
    line-height: 1.6;
    color: var(--ink);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  ::selection { background: var(--clay); color: var(--cream); }
  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; transition: color 0.2s ease; }
  button { font-family: inherit; cursor: pointer; border: none; background: none; }

  .display {
    font-family: var(--display);
    font-weight: 350;
    letter-spacing: -0.02em;
    line-height: 1.04;
    font-variation-settings: "opsz" 144, "SOFT" 50;
  }

  /* Bilingual */
  [data-lang-es], [data-lang-es-block] { display: none; }
  html[data-lang="es"] [data-lang-en], html[data-lang="es"] [data-lang-en-block] { display: none; }
  html[data-lang="es"] [data-lang-es] { display: inline; }
  html[data-lang="es"] [data-lang-es-block] { display: block; }

  /* ========================== NAV ========================== */
  nav.topnav {
    position: sticky;
    top: 0;
    z-index: 60;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 36px;
    background: rgba(246, 239, 227, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
  }
  .logo {
    font-family: var(--display);
    font-size: 22px;
    font-weight: 500;
    color: var(--ink);
    letter-spacing: -0.01em;
  }
  .logo em { font-style: italic; color: var(--clay); font-weight: 400; }
  .nav-links { display: flex; gap: 28px; align-items: center; }
  .nav-links a {
    font-size: 14px;
    color: var(--ink-2);
    font-weight: 500;
    transition: color 0.2s;
  }
  .nav-links a:hover, .nav-links a.active { color: var(--clay); }
  .lang-toggle {
    font-size: 12px;
    letter-spacing: 0.08em;
    color: var(--ink-mute);
    padding: 6px 10px;
    border: 1px solid var(--line);
    border-radius: 999px;
    transition: all 0.2s;
    background: transparent;
  }
  .lang-toggle:hover { border-color: var(--ink); color: var(--ink); }
  .nav-cta {
    background: var(--ink);
    color: var(--cream) !important;
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: all 0.2s;
  }
  .nav-cta:hover { background: var(--clay); transform: translateY(-1px); }
  @media (max-width: 880px) {
    nav.topnav { padding: 14px 20px; }
    .nav-links a:not(.nav-cta):not(.lang-toggle) { display: none; }
    .nav-links { gap: 12px; }
  }

  /* ========================== HERO ========================== */
  .hero {
    padding: 80px 36px 0;
    max-width: 1280px;
    margin: 0 auto;
  }
  .hero-eyebrow {
    font-family: var(--body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--clay);
    margin-bottom: 36px;
  }
  .hero-eyebrow::before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 1px;
    background: var(--clay);
    vertical-align: middle;
    margin-right: 12px;
    margin-bottom: 3px;
  }
  h1.hero-h {
    font-family: var(--display);
    font-weight: 350;
    font-size: clamp(48px, 7.5vw, 104px);
    line-height: 0.98;
    letter-spacing: -0.025em;
    color: var(--ink);
    max-width: 18ch;
    margin-bottom: 32px;
    font-variation-settings: "opsz" 144, "SOFT" 50;
  }
  h1.hero-h em { font-style: italic; color: var(--clay); }
  .hero-tag {
    font-family: var(--body);
    font-size: 19px;
    color: var(--ink-2);
    max-width: 56ch;
    line-height: 1.55;
    font-weight: 400;
    margin-bottom: 56px;
  }
  .hero-image-wrap {
    position: relative;
    margin: 0 -36px;
    height: 56vh;
    min-height: 420px;
    max-height: 640px;
    overflow: hidden;
  }
  .hero-image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(246,239,227,0) 0%, rgba(246,239,227,0) 70%, rgba(246,239,227,0.35) 100%);
    pointer-events: none;
  }
  .hero-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  @media (max-width: 880px) {
    .hero { padding: 56px 20px 0; }
    .hero-image-wrap { margin: 0 -20px; height: 44vh; min-height: 320px; }
  }

  /* ========================== SECTIONS ========================== */
  section { padding: 100px 36px; }
  @media (max-width: 880px) { section { padding: 64px 20px; } }
  .container { max-width: 1280px; margin: 0 auto; }
  .container-narrow { max-width: 920px; margin: 0 auto; }

  .section-eyebrow {
    font-family: var(--body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--clay);
    margin-bottom: 16px;
  }
  .section-eyebrow::before {
    content: "";
    display: inline-block;
    width: 22px;
    height: 1px;
    background: var(--clay);
    vertical-align: middle;
    margin-right: 12px;
    margin-bottom: 3px;
  }

  h2.section-h {
    font-family: var(--display);
    font-weight: 350;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.0;
    letter-spacing: -0.02em;
    color: var(--ink);
    max-width: 18ch;
    margin-bottom: 28px;
    font-variation-settings: "opsz" 144, "SOFT" 50;
  }
  h2.section-h em { font-style: italic; color: var(--clay); }

  /* ========================== TWO DOORS ========================== */
  .doors-wrap { background: var(--paper); }
  .doors-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 60px;
  }
  @media (max-width: 800px) { .doors-grid { grid-template-columns: 1fr; } }

  .door {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 48px 40px 36px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .door:hover {
    border-color: var(--clay);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
  }
  .door-tag {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--clay);
  }
  .door h3 {
    font-family: var(--display);
    font-weight: 400;
    font-size: 36px;
    line-height: 1.1;
    color: var(--ink);
    letter-spacing: -0.015em;
  }
  .door h3 em { font-style: italic; color: var(--clay); }
  .door p {
    font-size: 16px;
    color: var(--ink-2);
    line-height: 1.6;
  }
  .door-img {
    height: 220px;
    background: var(--cream-warm);
    border-radius: 6px;
    background-size: cover;
    background-position: center;
    margin-top: auto;
  }
  .door-cta {
    color: var(--clay);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.04em;
    border-bottom: 1px solid var(--clay);
    padding-bottom: 4px;
    align-self: flex-start;
    transition: all 0.2s;
  }
  .door-cta:hover { color: var(--clay-deep); border-color: var(--clay-deep); }

  /* ========================== PROMISE ========================== */
  .promise {
    text-align: center;
    background: var(--cream);
    padding: 100px 36px;
  }
  .promise h2 {
    font-family: var(--display);
    font-weight: 350;
    font-size: clamp(36px, 5vw, 60px);
    line-height: 1.05;
    color: var(--ink);
    margin: 0 auto 28px;
    max-width: 22ch;
    font-variation-settings: "opsz" 144, "SOFT" 50;
    letter-spacing: -0.02em;
  }
  .promise h2 em { font-style: italic; color: var(--clay); }
  .promise p {
    font-size: 18px;
    color: var(--ink-2);
    max-width: 50ch;
    margin: 0 auto 36px;
  }
  .promise-cta {
    display: inline-block;
    background: var(--ink);
    color: var(--cream) !important;
    padding: 14px 32px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    transition: all 0.2s;
  }
  .promise-cta:hover { background: var(--clay); transform: translateY(-2px); }

  /* ========================== WORK STRIP ========================== */
  .work-wrap { background: var(--paper); }
  .work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 56px;
  }
  @media (max-width: 980px) { .work-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 600px) { .work-grid { grid-template-columns: 1fr; } }

  .work-card {
    background: var(--cream);
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s;
    border: 1px solid var(--line);
  }
  .work-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: var(--clay);
  }
  .work-card-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: var(--cream-warm);
  }
  .work-card-body { padding: 22px 24px 26px; }
  .work-card-meta {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-mute);
    margin-bottom: 6px;
  }
  .work-card h4 {
    font-family: var(--display);
    font-size: 22px;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 4px;
    letter-spacing: -0.01em;
  }
  .work-card p {
    font-size: 14px;
    color: var(--ink-mute);
  }
  .work-cta-wrap {
    text-align: center;
    margin-top: 56px;
  }
  .work-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border: 1px solid var(--ink);
    color: var(--ink) !important;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    transition: all 0.2s;
  }
  .work-cta:hover { background: var(--ink); color: var(--cream) !important; transform: translateY(-2px); }

  /* ========================== ABOUT TEASER ========================== */
  .about-tease {
    background: var(--cream);
  }
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  @media (max-width: 880px) { .about-grid { grid-template-columns: 1fr; gap: 36px; } }
  .about-photo {
    aspect-ratio: 4/5;
    background-size: cover;
    background-position: center;
    background-color: var(--cream-warm);
    border-radius: 6px;
  }
  .about-prose p {
    font-size: 18px;
    color: var(--ink-2);
    line-height: 1.65;
    margin-bottom: 18px;
  }
  .about-link {
    display: inline-block;
    margin-top: 16px;
    color: var(--clay);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.04em;
    border-bottom: 1px solid var(--clay);
    padding-bottom: 4px;
    transition: all 0.2s;
  }
  .about-link:hover { color: var(--clay-deep); border-color: var(--clay-deep); }

  /* ========================== CONTACT ========================== */
  .contact-wrap {
    background: var(--jungle);
    color: var(--cream);
    padding: 120px 36px;
    text-align: center;
  }
  @media (max-width: 880px) { .contact-wrap { padding: 80px 20px; } }
  .contact-wrap .section-eyebrow { color: var(--gold); }
  .contact-wrap .section-eyebrow::before { background: var(--gold); }
  .contact-wrap h2 {
    font-family: var(--display);
    font-weight: 350;
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.05;
    color: var(--cream);
    margin: 0 auto 24px;
    max-width: 22ch;
    letter-spacing: -0.02em;
    font-variation-settings: "opsz" 144;
  }
  .contact-wrap h2 em { font-style: italic; color: var(--gold); }
  .contact-wrap > .container > p {
    font-size: 17px;
    color: rgba(246,239,227,0.78);
    max-width: 50ch;
    margin: 0 auto 44px;
  }
  .contact-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
  }
  .btn-wa {
    background: #25D366;
    color: white !important;
    padding: 16px 28px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s;
  }
  .btn-wa:hover { background: #1FB856; transform: translateY(-2px); }
  .btn-wa svg { width: 16px; height: 16px; fill: white; }
  .btn-email {
    border: 1px solid rgba(246,239,227,0.4);
    color: var(--cream);
    padding: 15px 28px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    transition: all 0.2s;
  }
  .btn-email:hover { background: var(--cream); color: var(--jungle); }
  .contact-meta {
    font-size: 13px;
    color: rgba(246,239,227,0.5);
    letter-spacing: 0.06em;
  }

  /* ========================== FOOTER ========================== */
  footer.site-footer {
    background: var(--ink);
    color: rgba(246,239,227,0.55);
    padding: 56px 36px 28px;
    font-size: 13px;
  }
  .footer-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
  }
  @media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
  .footer-brand {
    font-family: var(--display);
    font-size: 22px;
    color: var(--cream);
    font-weight: 500;
    margin-bottom: 8px;
  }
  .footer-brand em { color: var(--gold); font-style: italic; font-weight: 400; }
  .footer-tag {
    font-size: 13px;
    color: rgba(246,239,227,0.5);
    max-width: 30ch;
    line-height: 1.55;
  }
  .footer-col h5 {
    font-family: var(--body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(246,239,227,0.7);
    margin-bottom: 14px;
  }
  .footer-col a {
    display: block;
    color: rgba(246,239,227,0.55);
    margin-bottom: 8px;
    transition: color 0.2s;
  }
  .footer-col a:hover { color: var(--gold); }
  .footer-bottom {
    max-width: 1280px;
    margin: 56px auto 0;
    padding-top: 24px;
    border-top: 1px solid rgba(246,239,227,0.08);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 12px;
    color: rgba(246,239,227,0.4);
  }

  /* Reveal */
  .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }
/* ============== Floating WhatsApp button — site-wide ============== */
.wa-floating {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 100;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.32),
              0 4px 10px rgba(26, 22, 18, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  text-decoration: none;
}
.wa-floating:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.42),
              0 6px 14px rgba(26, 22, 18, 0.22);
}
.wa-floating svg {
  width: 30px;
  height: 30px;
  fill: white;
}
.wa-floating-tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--ink, #1A1612);
  color: var(--cream, #F6EFE3);
  padding: 8px 14px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.wa-floating-tooltip::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--ink, #1A1612);
  border-right: 0;
}
.wa-floating:hover .wa-floating-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(-4px);
}
@media (max-width: 600px) {
  .wa-floating {
    bottom: 16px;
    right: 16px;
    width: 52px;
    height: 52px;
  }
  .wa-floating svg { width: 26px; height: 26px; }
  .wa-floating-tooltip { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .wa-floating, .wa-floating-tooltip { transition: none; }
  .wa-floating:hover { transform: none; }
}
