:root {
  --ink: #24211d;
  --ink-soft: #5b564d;
  --bg: #faf7f2;
  --card: #ffffff;
  --primary: #1b4965;
  --primary-dark: #0f2e42;
  --accent: #c97b3d;
  --accent-soft: #f3e2d0;
  --line: #e7e0d5;
  --wa: #25d366;
  --radius: 14px;
  --maxw: 1100px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}
img { max-width: 100%; display: block; border-radius: var(--radius); }
a { color: var(--primary); }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* Header */
header.site-header {
  background: var(--card);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 50;
}
.nav-row { display: flex; align-items: center; justify-content: space-between; padding: 12px 24px; max-width: var(--maxw); margin: 0 auto; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); font-weight: 700; font-size: 1.05rem; }
.brand img { width: 40px; height: 40px; border-radius: 50%; }
nav.primary-nav { display: flex; align-items: center; gap: 22px; }
nav.primary-nav a { text-decoration: none; color: var(--ink); font-size: 0.95rem; font-weight: 600; }
nav.primary-nav a:hover { color: var(--primary); }
.dropdown { position: relative; }
.dropdown-menu {
  display: none; position: absolute; top: 100%; left: 0; background: var(--card);
  border: 1px solid var(--line); border-radius: 10px; padding: 8px; min-width: 220px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.dropdown:hover .dropdown-menu, .dropdown:focus-within .dropdown-menu { display: block; }
.dropdown-menu a { display: block; padding: 8px 10px; border-radius: 8px; font-weight: 500; }
.dropdown-menu a:hover { background: var(--accent-soft); }
.icon-row { display: flex; align-items: center; gap: 12px; }
.icon-row a { color: var(--ink-soft); display: flex; }
.icon-row svg { width: 20px; height: 20px; }
.menu-toggle { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; }

@media (max-width: 820px) {
  nav.primary-nav { display: none; flex-direction: column; align-items: flex-start; gap: 10px; position: absolute; top: 100%; left: 0; right: 0; background: var(--card); padding: 16px 24px; border-bottom: 1px solid var(--line); }
  nav.primary-nav.open { display: flex; }
  .dropdown-menu { position: static; display: block; box-shadow: none; border: none; padding-left: 10px; }
  .menu-toggle { display: block; }
}

/* Hero */
.hero { position: relative; }
.hero img { border-radius: 0; width: 100%; height: 62vh; min-height: 380px; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,46,66,0.15), rgba(15,46,66,0.65));
  display: flex; align-items: flex-end;
}
.hero-copy { padding: 40px 24px; max-width: var(--maxw); margin: 0 auto; width: 100%; color: #fff; }
.hero-copy h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin: 0 0 10px; }
.hero-copy p { font-size: 1.1rem; max-width: 560px; margin: 0 0 20px; opacity: 0.95; }

.page-hero { padding: 56px 24px 20px; text-align: center; }
.page-hero h1 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); margin: 0 0 10px; color: var(--primary-dark); }
.page-hero p.lead { color: var(--ink-soft); max-width: 640px; margin: 0 auto; font-size: 1.08rem; }

/* Buttons */
.btn { display: inline-block; padding: 13px 26px; border-radius: 999px; text-decoration: none; font-weight: 700; font-size: 0.98rem; transition: transform .15s ease, box-shadow .15s ease; }
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-wa { background: var(--wa); color: #fff; }
.btn-outline { background: transparent; color: #fff; border: 2px solid #fff; }
.btn-outline.dark { color: var(--primary); border-color: var(--primary); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* Sections */
section { padding: 48px 24px; }
section.tight { padding: 28px 24px; }
section.alt { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
h2.section-title { font-size: 1.6rem; color: var(--primary-dark); margin: 0 0 22px; text-align: center; }
h3 { color: var(--primary-dark); }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: var(--maxw); margin: 0 auto; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: var(--maxw); margin: 0 auto; align-items: center; }
@media (max-width: 820px) { .grid-3 { grid-template-columns: 1fr; } .grid-2 { grid-template-columns: 1fr; } }

.card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.card h3 { margin-top: 0; }
.center { max-width: var(--maxw); margin: 0 auto; }
.narrow { max-width: 760px; margin: 0 auto; }

/* Pricing table */
table.pricing { width: 100%; border-collapse: collapse; background: var(--card); border-radius: var(--radius); overflow: hidden; box-shadow: 0 1px 0 var(--line); }
table.pricing th, table.pricing td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--line); }
table.pricing th { background: var(--primary); color: #fff; font-weight: 600; }
table.pricing tr:last-child td { border-bottom: none; }
.price-fx { font-size: 0.85rem; color: var(--ink-soft); }
.price-note { text-align: center; font-size: 0.9rem; color: var(--ink-soft); margin-top: 10px; }

/* Testimonial */
blockquote.testimonial { background: var(--card); border-left: 4px solid var(--accent); border-radius: 10px; padding: 20px 24px; margin: 0 0 14px; font-style: italic; }
.testimonial-author { font-weight: 700; color: var(--primary-dark); font-style: normal; margin-bottom: 26px; }
.ig-embed { display: flex; align-items: center; gap: 14px; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 18px; margin-bottom: 18px; text-decoration: none; color: var(--ink); }
.ig-embed .ig-icon { flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%; background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); display: flex; align-items: center; justify-content: center; }
.ig-embed .ig-icon svg { width: 22px; height: 22px; fill: #fff; }
.ig-embed .ig-text small { color: var(--ink-soft); }

ul.check-list { list-style: none; padding: 0; margin: 0; }
ul.check-list li { padding: 6px 0 6px 28px; position: relative; }
ul.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

/* FAQ */
details.faq { background: var(--card); border: 1px solid var(--line); border-radius: 10px; padding: 14px 18px; margin-bottom: 10px; }
details.faq summary { font-weight: 600; cursor: pointer; color: var(--primary-dark); }
details.faq p { margin: 10px 0 0; color: var(--ink-soft); }

/* Photo gallery */
.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; max-width: var(--maxw); margin: 0 auto; }
.gallery figure { margin: 0; }
.gallery figcaption { font-size: 0.85rem; color: var(--ink-soft); margin-top: 6px; }

/* Footer */
footer.site-footer { background: var(--primary-dark); color: #e9eef1; padding: 46px 24px 24px; margin-top: 40px; }
.footer-grid { display: flex; flex-wrap: wrap; gap: 40px; justify-content: space-between; max-width: var(--maxw); margin: 0 auto 24px; }
.footer-col h4 { color: #fff; margin: 0 0 12px; font-size: 0.95rem; }
.footer-col a { color: #cfdae0; text-decoration: none; display: block; margin-bottom: 8px; font-size: 0.92rem; }
.footer-col a:hover { color: #fff; }
.footer-bottom { max-width: var(--maxw); margin: 0 auto; border-top: 1px solid rgba(255,255,255,0.15); padding-top: 18px; font-size: 0.85rem; color: #b9c6cc; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }

/* WhatsApp floating button */
.wa-float { position: fixed; bottom: 22px; right: 22px; background: var(--wa); color: #fff; width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 18px rgba(0,0,0,0.25); z-index: 60; text-decoration: none; }
.wa-float svg { width: 28px; height: 28px; fill: #fff; }

/* Legal pages */
.legal ol, .legal ul { color: var(--ink-soft); }
.legal h2 { margin-top: 32px; }

/* Contact */
form.contact-form { display: grid; gap: 14px; max-width: 560px; margin: 0 auto; }
form.contact-form input, form.contact-form textarea { padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px; font: inherit; }
form.contact-form label { font-weight: 600; font-size: 0.9rem; }
form.contact-form button { justify-self: start; }
.hp-field { position: absolute; left: -9999px; }

.badge { display: inline-block; background: var(--accent-soft); color: var(--accent); font-weight: 700; font-size: 0.75rem; padding: 4px 10px; border-radius: 999px; margin-bottom: 10px; }
