/* frontend/styles/index.css */
:root {
  --ink: #211c13;
  --muted: #6d6551;
  --bg: #f1ebdf;
  --bg-alt: #e7dfcd;
  --surface: #faf6ec;
  --line: #ddd3bf;
  --accent: #4f6138;
  --accent-ink: #3c4b2a;
  --accent-soft: #e6ebd8;
  --accent-2: #b5502a;
  --accent-2-ink: #8f3d1f;
  --accent-2-soft: #f2e0d2;
  --radius: 14px;
  --maxw: 68rem;
  --shadow: 0 1px 2px rgba(40, 30, 20, 0.05), 0 12px 32px rgba(40, 30, 20, 0.08);
  --font-mono:
    "IBM Plex Mono",
    ui-monospace,
    SFMono-Regular,
    Menlo,
    Consolas,
    monospace;
  --font-serif:
    "EB Garamond",
    Georgia,
    "Times New Roman",
    serif;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: #f1ebdf;
  background: var(--bg);
  color: #211c13;
  color: var(--ink);
  font-family:
    "EB Garamond",
    Georgia,
    "Times New Roman",
    serif;
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
.section-title,
.product-name,
.product-tag,
.wordmark,
.eyebrow,
.badge,
.feature-num,
.nav a,
.chips li,
.btn,
.field label,
.lang-toggle button {
  font-family:
    "IBM Plex Mono",
    ui-monospace,
    SFMono-Regular,
    Menlo,
    Consolas,
    monospace;
  font-family: var(--font-mono);
}
html[data-lang=en] [data-l=es],
html[data-lang=es] [data-l=en] {
  display: none;
}
.container {
  width: 100%;
  max-width: 68rem;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container.narrow {
  max-width: 42rem;
}
.section {
  padding: 5rem 0;
}
.section-alt {
  background: #e7dfcd;
  background: var(--bg-alt);
  border-top: 1px solid #ddd3bf;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid #ddd3bf;
  border-bottom: 1px solid var(--line);
}
section[id] {
  scroll-margin-top: 5rem;
}
.section-title {
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.015em;
  margin: 0 0 0.75rem;
}
.section-lede {
  color: #6d6551;
  color: var(--muted);
  font-size: 1.1rem;
  margin: 0 0 2.5rem;
  max-width: 40rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition:
    transform 0.12s ease,
    background 0.15s ease,
    border-color 0.15s ease;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn-sm {
  padding: 0.55rem 1rem;
  font-size: 0.9rem;
}
.btn-primary {
  background: #4f6138;
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: #3c4b2a;
  background: var(--accent-ink);
}
.btn-ghost {
  background: transparent;
  color: #211c13;
  color: var(--ink);
  border-color: #ddd3bf;
  border-color: var(--line);
}
.btn-ghost:hover {
  border-color: #211c13;
  border-color: var(--ink);
}
.btn-outline {
  background: transparent;
  color: #3c4b2a;
  color: var(--accent-ink);
  border-color: #4f6138;
  border-color: var(--accent);
}
.btn-outline:hover {
  background: #4f6138;
  background: var(--accent);
  color: #fff;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(241, 235, 223, 0.82);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid #ddd3bf;
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4rem;
  padding: 0.35rem 1.2rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
}
.brand-logo {
  height: clamp(24px, 10vw - 12px, 60px);
  width: auto;
  mix-blend-mode: multiply;
}
.wordmark {
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #211c13;
  color: var(--ink);
}
.wordmark span {
  font-weight: 400;
  color: #b5502a;
  color: var(--accent-2);
}
.wordmark.small {
  font-size: 1.05rem;
}
.nav {
  display: flex;
  gap: 1.75rem;
}
.nav a {
  color: #6d6551;
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}
.nav a:hover {
  color: #211c13;
  color: var(--ink);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.lang-toggle {
  display: inline-flex;
  border: 1px solid #ddd3bf;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
}
.lang-toggle button {
  border: 0;
  background: transparent;
  color: #6d6551;
  color: var(--muted);
  padding: 0.35rem 0.7rem;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
}
.lang-toggle button.active {
  background: #211c13;
  background: var(--ink);
  color: #fff;
}
.hero {
  padding: 5.5rem 0 4.5rem;
  text-align: center;
  background:
    radial-gradient(
      60% 120% at 50% 0%,
      #f2e0d2 0%,
      transparent 70%);
  background:
    radial-gradient(
      60% 120% at 50% 0%,
      var(--accent-2-soft) 0%,
      transparent 70%);
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
  color: #3c4b2a;
  color: var(--accent-ink);
  margin: 0 0 1rem;
}
.hero h1 {
  font-size: clamp(1.9rem, 4.4vw, 3rem);
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: -0.02em;
  margin: 0 auto 1.25rem;
  max-width: 22ch;
}
.lede {
  color: #6d6551;
  color: var(--muted);
  font-size: 1.35rem;
  max-width: 42rem;
  margin: 0 auto 2rem;
}
.hero-cta {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}
.grid {
  display: grid;
  grid-gap: 1.25rem;
  gap: 1.25rem;
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.card {
  background: #faf6ec;
  background: var(--surface);
  border: 1px solid #ddd3bf;
  border: 1px solid var(--line);
  border-radius: 14px;
  border-radius: var(--radius);
  padding: 1.75rem;
}
.section-alt .card {
  background: #faf6ec;
  background: var(--surface);
}
.feature-num {
  font-size: 0.85rem;
  font-weight: 800;
  color: #4f6138;
  color: var(--accent);
  letter-spacing: 0.05em;
}
.feature h3 {
  margin: 0.6rem 0 0.5rem;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.feature p {
  margin: 0;
  color: #6d6551;
  color: var(--muted);
}
.product {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(40, 30, 20, 0.05), 0 12px 32px rgba(40, 30, 20, 0.08);
  box-shadow: var(--shadow);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.product-shot {
  display: block;
  width: 100%;
  aspect-ratio: 320 / 200;
  -o-object-fit: cover;
  object-fit: cover;
  border-bottom: 1px solid #ddd3bf;
  border-bottom: 1px solid var(--line);
  background: #efe9dc;
}
.product-body {
  display: flex;
  flex-direction: column;
  flex: 1 1;
  padding: 1.5rem;
}
.product:hover {
  transform: translateY(-3px);
  box-shadow: 0 2px 4px rgba(20, 20, 40, 0.05), 0 18px 40px rgba(20, 20, 40, 0.1);
}
.product-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.product-name {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.badge {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8f3d1f;
  color: var(--accent-2-ink);
  background: #f2e0d2;
  background: var(--accent-2-soft);
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  white-space: nowrap;
}
.product-tag {
  margin: 0.35rem 0 0.75rem;
  font-weight: 600;
  color: #211c13;
  color: var(--ink);
}
.product-desc {
  color: #6d6551;
  color: var(--muted);
  margin: 0 0 1rem;
}
.chips {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.chips li {
  font-size: 0.8rem;
  color: #6d6551;
  color: var(--muted);
  background: #e7dfcd;
  background: var(--bg-alt);
  border: 1px solid #ddd3bf;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.25rem 0.65rem;
}
.product-cta {
  margin-top: auto;
  align-self: flex-start;
}
.founder {
  padding: 3.5rem 0;
  text-align: center;
}
.founder-line {
  font-size: 1.45rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.55;
  color: #211c13;
  color: var(--ink);
  margin: 0;
}
.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 1.15rem 1rem;
  gap: 1.15rem 1rem;
  background: #faf6ec;
  background: var(--surface);
  border: 1px solid #ddd3bf;
  border: 1px solid var(--line);
  border-radius: 14px;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 1px 2px rgba(40, 30, 20, 0.05), 0 12px 32px rgba(40, 30, 20, 0.08);
  box-shadow: var(--shadow);
}
.field {
  display: grid;
  grid-gap: 0.45rem;
  gap: 0.45rem;
  min-width: 0;
}
.field.full {
  grid-column: 1 / -1;
}
.field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #211c13;
  color: var(--ink);
}
.field .opt {
  color: #6d6551;
  color: var(--muted);
  font-weight: 400;
}
.field input,
.field select,
.field textarea {
  font: inherit;
  color: #211c13;
  color: var(--ink);
  padding: 0.75rem 0.85rem;
  border: 1px solid #ddd3bf;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fffdf9;
  width: 100%;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field input::-moz-placeholder,
.field textarea::-moz-placeholder {
  color: #a89f8c;
}
.field input::placeholder,
.field textarea::placeholder {
  color: #a89f8c;
}
.field textarea {
  resize: vertical;
  min-height: 7rem;
}
.field select {
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 2.4rem;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='12'%20height='12'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='%236d6551'%20stroke-width='2.5'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpolyline%20points='6%209%2012%2015%2018%209'%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: #4f6138;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px #e6ebd8;
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.form-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 0.25rem;
}
.hp {
  position: absolute;
  left: -9999px;
}
.form-success {
  margin-top: 1.5rem;
  padding: 1.25rem 1.4rem;
  background: #e6ebd8;
  background: var(--accent-soft);
  border: 1px solid #4f6138;
  border: 1px solid var(--accent);
  border-radius: 14px;
  border-radius: var(--radius);
  color: #3c4b2a;
  color: var(--accent-ink);
  font-weight: 600;
}
@media (max-width: 600px) {
  .form {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }
}
.wa-contact {
  margin-top: 1.5rem;
  text-align: center;
}
.wa-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: #211c13;
  color: var(--ink);
  background: #faf6ec;
  background: var(--surface);
  border: 1px solid #ddd3bf;
  border: 1px solid var(--line);
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  transition: border-color 0.15s ease, transform 0.12s ease;
}
.wa-link:hover {
  border-color: #4f6138;
  border-color: var(--accent);
  transform: translateY(-1px);
}
.wa-icon {
  width: 26px;
  height: 26px;
  flex: none;
  fill: #4f6138;
  fill: var(--accent);
}
.wa-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  text-align: left;
}
.wa-label {
  font-size: 0.8rem;
  color: #6d6551;
  color: var(--muted);
}
.wa-number {
  font-family:
    "IBM Plex Mono",
    ui-monospace,
    SFMono-Regular,
    Menlo,
    Consolas,
    monospace;
  font-family: var(--font-mono);
  font-weight: 600;
  letter-spacing: -0.01em;
}
.wa-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 60;
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #4f6138;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(40, 30, 20, 0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.wa-float:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 26px rgba(40, 30, 20, 0.3);
}
.wa-float svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}
.site-footer {
  border-top: 1px solid #ddd3bf;
  border-top: 1px solid var(--line);
  padding: 2rem 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-inner .muted {
  color: #6d6551;
  color: var(--muted);
  font-size: 0.9rem;
}
.footer-inner a {
  color: #6d6551;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
}
.footer-inner a:hover {
  color: #211c13;
  color: var(--ink);
}
@media (max-width: 820px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .nav {
    display: none;
  }
}
@media (max-width: 520px) {
  body {
    font-size: 16px;
  }
  .section {
    padding: 3.5rem 0;
  }
  .btn {
    width: 100%;
  }
  .header-actions .btn {
    width: auto;
  }
  .header-inner {
    gap: 0.5rem;
  }
  .header-actions {
    gap: 0.5rem;
  }
  .btn-sm {
    padding: 0.5rem 0.85rem;
  }
  .lang-toggle button {
    padding: 0.35rem 0.6rem;
  }
  .hero-cta {
    flex-direction: column;
  }
}
@media (prefers-reduced-motion: no-preference) {
  html.js .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
    transition-delay: 0s;
    transition-delay: var(--delay, 0s);
  }
  html.js .reveal.is-visible {
    opacity: 1;
    transform: none;
  }
}
.grid-3 .reveal:nth-child(2) {
  --delay: 0.09s;
}
.grid-3 .reveal:nth-child(3) {
  --delay: 0.18s;
}
.feature {
  position: relative;
}
.feature-icon {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #e6ebd8;
  background: var(--accent-soft);
  color: #3c4b2a;
  color: var(--accent-ink);
  margin-bottom: 1rem;
}
.feature-icon svg {
  width: 24px;
  height: 24px;
}
.feature-num {
  position: absolute;
  top: 1.5rem;
  right: 1.6rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #4f6138;
  color: var(--accent);
  opacity: 0.4;
}
.nav a {
  position: relative;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 1.5px;
  background: #4f6138;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.nav a:hover::after {
  transform: scaleX(1);
}
.product-shot {
  transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.product:hover .product-shot {
  transform: scale(1.035);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='140'%20height='140'%3E%3Cfilter%20id='n'%3E%3CfeTurbulence%20type='fractalNoise'%20baseFrequency='0.9'%20numOctaves='2'%20stitchTiles='stitch'%2F%3E%3C%2Ffilter%3E%3Crect%20width='140'%20height='140'%20filter='url(%23n)'%2F%3E%3C%2Fsvg%3E");
  background-size: 140px 140px;
}
/*# sourceMappingURL=/_bridgetown/static/index.4LSWUYAT.css.map */
