:root {
  --saffron: #c45c12;
  --saffron-dark: #8b3a0a;
  --gold: #d4a017;
  --gold-light: #f3d27a;
  --maroon: #6b1d1d;
  --cream: #faf6ee;
  --ivory: #fffaf0;
  --ink: #2a1a12;
  --muted: #6b5344;
  --green: #1f6b3a;
  --whatsapp: #25d366;
  --radius: 14px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Noto Sans", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: var(--saffron-dark); text-decoration: none; }
.container { width: min(1180px, calc(100% - 32px)); margin-inline: auto; }

/* Top bar */
.topbar {
  background: var(--maroon);
  color: #fff;
  font-size: 13.5px;
  padding: 8px 0;
}
.topbar .container { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; align-items: center; }
.topbar a { color: #fff; }
.topbar .links { display: flex; gap: 16px; flex-wrap: wrap; }

/* Header */
.site-header {
  background: #fff;
  border-bottom: 3px solid var(--gold);
  position: sticky; top: 0; z-index: 40;
  box-shadow: 0 4px 18px rgba(80,30,0,.08);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 10px 0;
}
.brand { display: flex; align-items: center; gap: 12px; color: inherit; }
.brand-mark {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(145deg, var(--gold), var(--saffron));
  color: #fff; display: grid; place-items: center;
  font-weight: 800; font-size: 20px; flex-shrink: 0;
}
.brand h1 { font-size: 16px; line-height: 1.15; color: var(--maroon); word-break: break-word; }
.brand p { font-size: 11.5px; color: var(--muted); letter-spacing: .04em; text-transform: uppercase; }

nav ul { display: flex; gap: 4px; list-style: none; flex-wrap: wrap; }
nav a {
  display: block; padding: 8px 12px; border-radius: 999px;
  font-weight: 600; font-size: 14px; color: var(--ink);
}
nav a:hover, nav a.active { background: #f6e7c8; color: var(--saffron-dark); }
.nav-cta {
  background: var(--saffron) !important; color: #fff !important;
}
.menu-toggle { display: none; background: none; border: 0; font-size: 26px; cursor: pointer; }

/* Hero */
.hero {
  position: relative; min-height: 72vh;
  background: #3a1c0c center/cover no-repeat;
  display: grid; place-items: center; color: #fff; text-align: center;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(40,10,0,.45), rgba(20,5,0,.72));
}
.hero-inner { position: relative; z-index: 1; padding: 72px 16px; max-width: 820px; }
.hero .kicker {
  display: inline-block; background: var(--gold); color: #3a1c0c;
  font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  font-size: 12px; padding: 6px 14px; border-radius: 999px; margin-bottom: 16px;
}
.hero h2 { font-size: clamp(30px, 5vw, 52px); line-height: 1.15; margin-bottom: 14px; }
.hero p { font-size: 18px; opacity: .95; margin-bottom: 26px; }
.btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; border-radius: 999px; font-weight: 700;
  border: 2px solid transparent; cursor: pointer; font-size: 15px;
}
.btn-primary { background: var(--saffron); color: #fff; }
.btn-primary:hover { background: var(--saffron-dark); }
.btn-gold { background: var(--gold); color: #3a1c0c; }
.btn-outline { background: transparent; color: #fff; border-color: #fff; }
.btn-wa { background: var(--whatsapp); color: #fff; }
.btn-call { background: var(--green); color: #fff; }

/* Sections */
section { padding: 64px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 40px; }
.section-head .eyebrow { color: var(--saffron); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; font-size: 12.5px; }
.section-head h2 { font-size: clamp(26px, 3.4vw, 38px); color: var(--maroon); margin: 8px 0 12px; }
.muted { color: var(--muted); }

.grid-3, .grid-2, .grid-4 { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border-radius: var(--radius);
  overflow: hidden; box-shadow: 0 8px 28px rgba(80,30,0,.08);
  border: 1px solid #efe3cf;
}
.card img { width: 100%; height: 210px; object-fit: cover; }
.card-body { padding: 20px; }
.card h3 { color: var(--maroon); margin-bottom: 8px; }
.price { font-size: 26px; font-weight: 800; color: var(--saffron-dark); }
.price small { font-size: 13px; font-weight: 600; color: var(--muted); }
.tag {
  display: inline-block; background: #f6e7c8; color: var(--saffron-dark);
  font-size: 12px; font-weight: 700; padding: 3px 10px; border-radius: 999px;
}

/* Feature list */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.feature {
  background: #fff; padding: 22px 16px; text-align: center; border-radius: var(--radius);
  border: 1px solid #efe3cf;
}
.feature .ico { font-size: 28px; margin-bottom: 8px; }
.feature h3 { font-size: 16px; color: var(--maroon); }

/* Page banner */
.page-banner {
  background: #4a1e0c center/cover no-repeat;
  color: #fff; padding: 72px 0 48px; position: relative;
}
.page-banner::after { content:""; position:absolute; inset:0; background: rgba(30,8,0,.55); }
.page-banner .container { position: relative; z-index: 1; }
.page-banner h2 { font-size: clamp(28px, 4vw, 44px); }
.breadcrumb { opacity: .85; font-size: 14px; margin-bottom: 8px; }
.breadcrumb a { color: #fff; }

/* Content prose */
.prose p { margin-bottom: 14px; }
.prose h3 { color: var(--maroon); margin: 22px 0 10px; }
.prose ul, .prose ol { margin: 0 0 16px 20px; }
.prose li { margin-bottom: 6px; }

.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 32px; align-items: center; }
.split.rev { grid-template-columns: .9fr 1.1fr; }
.split img { border-radius: var(--radius); width: 100%; height: 360px; object-fit: cover; }

/* Tables */
table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius); overflow: hidden; }
th, td { padding: 12px 14px; text-align: left; border-bottom: 1px solid #efe3cf; }
th { background: var(--maroon); color: #fff; }
tr:hover td { background: #fff8ea; }

/* Forms */
form { display: grid; gap: 12px; }
label { font-weight: 600; font-size: 14px; }
input, select, textarea {
  width: 100%; padding: 12px 14px; border-radius: 10px;
  border: 1px solid #e2d3b8; background: #fff; font: inherit;
}
textarea { min-height: 110px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* Contact boxes */
.contact-box { background: #fff; padding: 22px; border-radius: var(--radius); border: 1px solid #efe3cf; }
.contact-box h3 { color: var(--maroon); margin-bottom: 8px; }

/* Footer */
footer { background: #2a120c; color: #f3e6d4; padding: 48px 0 18px; }
footer h3 { color: var(--gold-light); margin-bottom: 12px; }
footer a { color: #f3e6d4; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 28px; }
.foot-copy { border-top: 1px solid #4a2a1c; margin-top: 28px; padding-top: 14px; font-size: 13px; opacity: .8; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }

/* Float */
.float-wa {
  position: fixed; right: 18px; bottom: 18px; z-index: 50;
  background: var(--whatsapp); color: #fff; width: 58px; height: 58px;
  border-radius: 50%; display: grid; place-items: center; font-size: 30px;
  box-shadow: 0 8px 24px rgba(37,211,102,.4);
}
.float-call {
  position: fixed; right: 18px; bottom: 86px; z-index: 50;
  background: var(--green); color: #fff; width: 50px; height: 50px;
  border-radius: 50%; display: grid; place-items: center; font-size: 22px;
  box-shadow: 0 8px 24px rgba(31,107,58,.35);
}

.note { background: #fff4d6; border-left: 4px solid var(--gold); padding: 14px 16px; border-radius: 8px; margin: 16px 0; }
.faq details { background: #fff; border: 1px solid #efe3cf; border-radius: 10px; padding: 12px 16px; margin-bottom: 10px; }
.faq summary { font-weight: 700; cursor: pointer; color: var(--maroon); }
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.gallery img { height: 200px; width: 100%; object-fit: cover; border-radius: 10px; }

@media (max-width: 900px) {
  .grid-2, .grid-3, .grid-4, .features, .split, .split.rev, .foot-grid, .form-row, .gallery {
    grid-template-columns: 1fr;
  }
  nav { display: none; }
  nav.open { display: block; position: absolute; left: 0; right: 0; top: 100%; background: #fff; padding: 12px; border-bottom: 3px solid var(--gold); }
  nav.open ul { flex-direction: column; }
  .menu-toggle { display: block; }
  .site-header { position: sticky; }
  .hero { min-height: 58vh; }
  .split img { height: 240px; }
}

.legal-links { margin: 22px 0 0; font-size: 13.5px; line-height: 1.8; }
.legal-links a { color: #f3e6d4; margin-right: 4px; }
.legal-links a:hover { color: var(--gold-light); }
.policy-list { background:#fff; border:1px solid #efe3cf; border-radius: var(--radius); overflow:hidden; }
.policy-list .bar { background:#1abc9c; color:#fff; font-weight:700; font-size:20px; padding:14px 18px; }
.policy-list a { display:block; padding:16px 18px; border-bottom:1px solid #efe3cf; color:var(--ink); font-size:18px; font-weight:600; }
.policy-list a:last-child { border-bottom:0; }
.policy-list a:hover { background:#fff8ea; color:var(--saffron-dark); }
