:root {
  --ink: #16151a;
  --ink-2: #2a2730;
  --paper: #fdfbf6;
  --parchment: #f5eedd;
  --parchment-2: #ece2c8;
  --brass: #b08344;
  --brass-bright: #d39e58;
  --brass-soft: #f7ecd6;
  --claret: #6e1f2f;
  --claret-soft: #f4dee2;
  --muted: #6a6258;
  --muted-2: #8a8273;
  --line: rgba(22, 21, 26, 0.12);
  --line-soft: rgba(22, 21, 26, 0.06);
  --ok: #2f6f4e;
  --warn: #8a4400;
  --shadow-sm: 0 2px 8px rgba(22, 21, 26, 0.05);
  --shadow: 0 22px 50px rgba(22, 21, 26, 0.10);
  --shadow-lg: 0 36px 80px rgba(22, 21, 26, 0.16);
  --radius: 18px;
  --radius-lg: 26px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  font-size: 16px;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(900px 500px at 90% -8%, rgba(176, 131, 68, 0.13), transparent 60%),
    radial-gradient(700px 600px at -10% 30%, rgba(110, 31, 47, 0.06), transparent 65%),
    var(--paper);
}

a { color: var(--claret); text-decoration: none; }
a:hover { color: var(--brass); }
p, li { line-height: 1.75; color: #2e2a25; }
h1, h2, h3, h4 {
  font-family: "Fraunces", "Playfair Display", Georgia, serif;
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 0.55em;
  letter-spacing: -0.015em;
  font-weight: 600;
}
h1 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); font-weight: 600; }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 600; }
h3 { font-size: 1.22rem; font-weight: 600; }
h4 { font-size: 1rem; font-weight: 700; font-family: "Inter", sans-serif; }
img { max-width: 100%; height: auto; display: block; }

.site-header, .site-footer, main { width: min(calc(100% - 2rem), var(--max)); margin-left: auto; margin-right: auto; }

/* ========== HEADER / NAV ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  padding: 0.85rem 1.2rem;
  background: rgba(253, 251, 246, 0.92);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}
.brand { display: flex; align-items: center; gap: 0.7rem; font-weight: 700; color: var(--ink); font-family: "Fraunces", serif; }
.brand-logo {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%);
  color: var(--brass-bright);
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.25);
}
.brand-logo svg { width: 24px; height: 24px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; font-family: "Inter", sans-serif; }
.brand-text strong { font-size: 1.08rem; letter-spacing: -0.01em; font-family: "Fraunces", serif; font-weight: 600; }
.brand-text small { font-size: 0.72rem; color: var(--muted); font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; }

.site-nav { display: flex; gap: 0.15rem; align-items: center; flex-wrap: wrap; }
.site-nav a {
  padding: 0.5rem 0.85rem;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-2);
  transition: background 0.15s, color 0.15s;
}
.site-nav a:hover { background: var(--brass-soft); color: var(--ink); }
.site-nav a.active { background: var(--ink); color: var(--brass-bright); }
.site-nav a.active:hover { background: var(--ink-2); color: var(--brass-bright); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger { display: inline-flex; align-items: center; gap: 0.35rem; }
.nav-caret { font-size: 0.65rem; transition: transform 0.15s; line-height: 1; }
.nav-dropdown:hover .nav-caret,
.nav-dropdown:focus-within .nav-caret { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 260px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 0.5rem;
  display: none;
  z-index: 50;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu { display: block; }
.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -8px; left: 0; right: 0; height: 8px;
}
.nav-dropdown-menu a {
  display: block;
  padding: 0.6rem 0.9rem;
  border-radius: 8px;
  font-size: 0.92rem;
  color: var(--ink-2);
  font-weight: 600;
  white-space: nowrap;
}
.nav-dropdown-menu a:hover { background: var(--brass-soft); color: var(--ink); }
.nav-dropdown-menu a.active { background: var(--ink); color: var(--brass-bright); }

.nav-toggle {
  display: none;
  padding: 0.55rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  font-family: inherit;
}

/* ========== BUTTONS ========== */
.button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.78rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.15s, color 0.15s;
  white-space: nowrap;
  font-family: "Inter", sans-serif;
}
.button:hover { transform: translateY(-1px); }
.button.primary { background: var(--ink); color: var(--brass-bright); box-shadow: 0 12px 24px rgba(22, 21, 26, 0.25); }
.button.primary:hover { background: var(--ink-2); color: #fff; }
.button.secondary { background: var(--brass); color: #fff; }
.button.secondary:hover { background: var(--brass-bright); color: #fff; }
.button.ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.button.ghost:hover { background: #fff; border-color: var(--brass); color: var(--ink); }
.button.whatsapp { background: #25D366; color: #fff; }
.button.whatsapp:hover { background: #1ebe5b; color: #fff; }

.actions { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.4rem; }

/* ========== HERO ========== */
.page-hero {
  position: relative;
  margin: 1.6rem 0 2rem;
  padding: clamp(2.2rem, 5vw, 4rem) clamp(1.4rem, 4vw, 3.2rem);
  background:
    linear-gradient(135deg, var(--parchment) 0%, var(--parchment-2) 100%);
  color: var(--ink);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(176, 131, 68, 0.22);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(620px 320px at 88% 0%, rgba(176, 131, 68, 0.20), transparent 60%),
    radial-gradient(540px 400px at 0% 100%, rgba(110, 31, 47, 0.10), transparent 60%);
  pointer-events: none;
}
.page-hero > * { position: relative; z-index: 1; }
.page-hero h1 { color: var(--ink); max-width: 24ch; }
.page-hero p.lead { font-size: 1.12rem; max-width: 58ch; color: var(--ink-2); }

.eyebrow {
  display: inline-block;
  padding: 0.32rem 0.8rem;
  margin: 0 0 1rem;
  background: rgba(22, 21, 26, 0.06);
  color: var(--ink);
  border: 1px solid rgba(22, 21, 26, 0.14);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: "Inter", sans-serif;
}

.page-hero.dark {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%);
  color: #f5eedd;
  border-color: rgba(255, 255, 255, 0.06);
}
.page-hero.dark h1 { color: #fff; }
.page-hero.dark p.lead { color: #d8cfb9; }
.page-hero.dark .eyebrow { background: rgba(211, 158, 88, 0.18); color: var(--brass-bright); border-color: rgba(211, 158, 88, 0.4); }

/* ========== SECTIONS ========== */
main { padding-bottom: 3rem; }
section { margin: 3rem 0; }
.section-head { text-align: center; max-width: 62ch; margin: 0 auto 2.2rem; }
.section-head.left { text-align: left; margin-left: 0; }
.section-head p { color: var(--muted); font-size: 1.05rem; }

.trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem 1.6rem;
  margin: 1.8rem 0;
  padding: 1rem 1.2rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
}
.trust-bar span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
  color: var(--ink);
  font-size: 0.92rem;
}
.trust-bar span::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 20px; height: 20px;
  border-radius: 999px;
  background: var(--brass);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
}

/* ========== CARDS ========== */
.card-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: rgba(176, 131, 68, 0.45); }
.card h3 { margin-top: 0.4rem; color: var(--ink); }
.card p { color: var(--muted); margin: 0.35rem 0 1rem; font-size: 0.96rem; }
.card .card-link {
  display: inline-flex; align-items: center; gap: 0.35rem;
  color: var(--claret); font-weight: 700; font-size: 0.92rem;
  margin-top: auto;
}
.card .card-link::after { content: "→"; transition: transform 0.15s; }
.card:hover .card-link::after { transform: translateX(3px); }
.card-icon {
  display: grid; place-items: center;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--brass-soft);
  color: var(--brass);
  margin-bottom: 0.4rem;
}
.card-icon svg { width: 26px; height: 26px; }

/* Feature boxes */
.feature-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.feature {
  display: flex; gap: 0.9rem;
  padding: 1.2rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.feature-icon {
  flex: 0 0 42px;
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: var(--ink);
  color: var(--brass-bright);
}
.feature-icon svg { width: 22px; height: 22px; }
.feature h3 { font-size: 1.05rem; margin: 0 0 0.3rem; color: var(--ink); }
.feature p { margin: 0; color: var(--muted); font-size: 0.93rem; }

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  padding: 1.6rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.stat { text-align: center; }
.stat .num { font-family: "Fraunces", serif; font-size: 2.1rem; font-weight: 600; color: var(--claret); line-height: 1; }
.stat .label { font-size: 0.82rem; color: var(--muted); font-weight: 600; margin-top: 0.4rem; letter-spacing: 0.02em; }

/* Process steps */
.steps { display: grid; gap: 1.1rem; counter-reset: stepcount; }
.step {
  position: relative;
  padding: 1.4rem 1.4rem 1.4rem 4.6rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.step::before {
  counter-increment: stepcount;
  content: counter(stepcount, decimal-leading-zero);
  position: absolute;
  left: 1.2rem; top: 1.2rem;
  font-family: "Fraunces", serif;
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--brass);
  line-height: 1;
}
.step h3 { margin: 0 0 0.3rem; color: var(--ink); }
.step p { margin: 0; color: var(--muted); }

/* ========== PRICING ========== */
.pricing-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  max-width: 980px;
  margin: 0 auto;
}
.price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.9rem;
  position: relative;
  display: flex;
  flex-direction: column;
}
.price-card.featured {
  border: 2px solid var(--brass);
  box-shadow: 0 22px 50px rgba(176, 131, 68, 0.22);
}
.price-badge {
  position: absolute;
  top: -14px; left: 1.8rem;
  padding: 0.28rem 0.8rem;
  background: var(--brass);
  color: #fff;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.price { font-family: "Fraunces", serif; font-size: 2.6rem; font-weight: 600; color: var(--ink); line-height: 1; margin: 0.4rem 0 0.2rem; }
.price sup { font-size: 1.1rem; font-weight: 600; color: var(--muted); vertical-align: super; }
.price-sub { font-size: 0.9rem; color: var(--muted); }
.price-list { list-style: none; padding: 0; margin: 1.2rem 0; }
.price-list li { padding: 0.4rem 0 0.4rem 1.5rem; position: relative; font-size: 0.95rem; }
.price-list li::before { content: "✓"; position: absolute; left: 0; color: var(--brass); font-weight: 900; }
.price-card .button { margin-top: auto; }

/* Callout */
.callout {
  padding: 2.2rem clamp(1.4rem, 3vw, 2.6rem);
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%);
  color: #f5eedd;
  border-radius: var(--radius-lg);
  display: flex;
  gap: 1.4rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.callout::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(500px 280px at 90% 0%, rgba(211, 158, 88, 0.22), transparent 60%);
  pointer-events: none;
}
.callout > * { position: relative; z-index: 1; }
.callout h2 { color: #fff; margin: 0 0 0.4rem; }
.callout p { color: #d8cfb9; margin: 0; max-width: 56ch; }
.callout .actions { margin-top: 0; }

.article-callout {
  margin: 2rem 0 0;
  padding: 1.6rem;
  border-left: 4px solid var(--brass);
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
}
.article-callout h2 { margin: 0 0 0.35rem; color: var(--ink); font-size: 1.3rem; }
.article-callout p { margin: 0 0 0.8rem; color: var(--muted); }

/* ========== HOW-TO / ARTICLE ========== */
.how-to-article { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.5rem, 3vw, 2.6rem); max-width: 800px; margin: 0 auto; }
.how-to-article h2 { color: var(--ink); margin-top: 1.8em; }
.how-to-article h2:first-of-type { margin-top: 0.4em; }
.how-to-article ul, .how-to-article ol { padding-left: 1.2rem; }
.how-to-article li { margin-bottom: 0.45rem; }
.callout-soft { background: var(--brass-soft); border: 1px solid rgba(176, 131, 68, 0.3); padding: 1rem 1.2rem; border-radius: 12px; margin: 1.4rem 0; color: #5a3d10; }
.callout-soft strong { color: #3a2706; }

.related-grid { display: grid; gap: 0.8rem; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.related-grid a {
  display: block;
  padding: 0.95rem 1.15rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-weight: 700;
  color: var(--ink);
  transition: border-color 0.15s, background 0.15s;
}
.related-grid a:hover { border-color: var(--brass); background: var(--brass-soft); }

/* ========== CONTACT ========== */
.contact-layout { display: grid; grid-template-columns: 1.3fr 1fr; gap: 2rem; align-items: start; }
@media (max-width: 820px) { .contact-layout { grid-template-columns: 1fr; } }
.contact-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.9rem; box-shadow: var(--shadow-sm); }
.contact-form { display: grid; gap: 0.95rem; }
.contact-form label { font-weight: 600; font-size: 0.9rem; color: var(--ink); display: block; margin-bottom: 0.3rem; }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%;
  padding: 0.78rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
  color: var(--ink);
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  outline: none;
  border-color: var(--brass);
  box-shadow: 0 0 0 3px rgba(176, 131, 68, 0.22);
}
.contact-form textarea { min-height: 150px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.95rem; }
@media (max-width: 520px) { .form-row { grid-template-columns: 1fr; } }
.honey { position: absolute; left: -9999px; visibility: hidden; }
.form-alert { padding: 0.95rem 1.15rem; border-radius: 10px; font-weight: 600; margin-bottom: 1rem; }
.form-alert.error { background: var(--claret-soft); color: #5a141f; border: 1px solid rgba(110, 31, 47, 0.3); }
.form-alert.info { background: var(--brass-soft); color: var(--warn); border: 1px solid rgba(176, 131, 68, 0.3); }

/* Gallery / case studies */
.case-grid { display: grid; gap: 1.1rem; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.case-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem; box-shadow: var(--shadow-sm); }
.case-card h3 { margin: 0 0 0.4rem; color: var(--ink); }
.case-card .case-meta { font-size: 0.82rem; color: var(--muted); letter-spacing: 0.04em; text-transform: uppercase; font-weight: 700; }
.case-card p { color: var(--muted); margin: 0.5rem 0 0; }

/* Footer */
.site-footer {
  margin-top: 3rem;
  padding: 2.2rem 1.5rem;
  background: var(--ink);
  color: #cbc4b3;
  border-radius: var(--radius-lg);
  margin-bottom: 1rem;
}
.site-footer a { color: #ebe3cf; }
.site-footer a:hover { color: var(--brass-bright); }
.footer-grid {
  display: grid;
  gap: 1.6rem;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  margin-bottom: 1.5rem;
}
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 { color: #fff; font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; margin: 0 0 0.85rem; font-family: "Inter", sans-serif; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 0.4rem; font-size: 0.92rem; }
.footer-grid .brand { color: #fff; margin-bottom: 0.8rem; }
.footer-grid .brand-text small { color: #9a917f; }
.footer-grid p { color: #b6ad99; font-size: 0.9rem; margin: 0 0 0.6rem; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
  font-size: 0.82rem;
  color: #9a917f;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.8rem;
}

/* Utilities */
.two-col { display: grid; grid-template-columns: 1.2fr 1fr; gap: 2.4rem; align-items: center; }
@media (max-width: 820px) { .two-col { grid-template-columns: 1fr; } }
.prose { max-width: 70ch; }
.prose p { color: #2e2a25; }
.prose h2 { margin-top: 1.8em; }
.prose ul li, .prose ol li { margin-bottom: 0.4rem; }

.breadcrumbs { font-size: 0.85rem; color: var(--muted); margin: 0 0 0.6rem; }
.breadcrumbs a { color: var(--ink); font-weight: 600; }
.breadcrumbs span { margin: 0 0.4rem; color: var(--muted-2); }

.divider { border: none; border-top: 1px solid var(--line); margin: 2rem 0; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Tag pills */
.tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin: 0.8rem 0; }
.tag { padding: 0.3rem 0.7rem; background: var(--parchment); border: 1px solid var(--line); border-radius: 999px; font-size: 0.78rem; font-weight: 600; color: var(--ink); }

/* Quote */
.quote {
  background: var(--parchment);
  border: 1px solid rgba(176, 131, 68, 0.25);
  border-radius: var(--radius);
  padding: 1.6rem 1.8rem;
  font-family: "Fraunces", serif;
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--ink);
  position: relative;
}
.quote::before { content: "\201C"; position: absolute; top: -0.2em; left: 0.4em; font-size: 4rem; color: var(--brass); line-height: 1; opacity: 0.4; }
.quote cite { display: block; margin-top: 0.7rem; font-style: normal; font-family: "Inter", sans-serif; font-size: 0.85rem; color: var(--muted); font-weight: 600; letter-spacing: 0.02em; }

/* Mobile nav */
@media (max-width: 860px) {
  .nav-toggle { display: inline-block; }
  .site-nav { display: none; width: 100%; flex-direction: column; align-items: stretch; padding: 0.6rem 0 0.2rem; }
  .site-nav.open { display: flex; }
  .site-header { flex-wrap: wrap; }
  .site-nav a { padding: 0.7rem 0.85rem; border-radius: 10px; }
  .brand-text small { display: none; }
  .nav-dropdown { width: 100%; }
  .nav-dropdown-menu {
    display: block;
    position: static;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0 0 0.4rem 0.6rem;
    margin: 0;
    min-width: 0;
  }
  .nav-dropdown-menu a { padding: 0.55rem 0.85rem; font-size: 0.88rem; white-space: normal; }
  .nav-caret { display: none; }
}
