:root{
  --saffron:#FF9933;
  --maroon:#800000;
  --gold:#D4AF37;
  --cream:#FFFDD0;
  --ink:#1c1c1c;
  --muted:#6b6b6b;
  --bg:#fff;
  --card:#ffffff;
  --shadow:0 10px 30px rgba(0,0,0,.12);
  --radius:16px;
  --radius-sm:12px;
  --container:1200px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Poppins,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--ink);
  background:linear-gradient(180deg,rgba(255,157,64,.10),rgba(255,253,208,.65) 40%,#fff);
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
button{font-family:inherit}

.container{
  width:min(var(--container), calc(100% - 32px));
  margin-inline:auto;
}

.section{padding:72px 0}
.section-sm{padding:48px 0}

.h1,.h2,.h3{
  font-family:"Playfair Display", Georgia, serif;
  letter-spacing:.2px;
}
.h1{font-size:clamp(32px,4.5vw,54px);line-height:1.08;margin:0 0 14px}
.h2{font-size:clamp(24px,3.3vw,38px);line-height:1.12;margin:0 0 12px}
.h3{font-size:clamp(18px,2.2vw,24px);line-height:1.2;margin:0 0 10px}
.p{margin:0;color:var(--muted);line-height:1.75}

.badge{
  display:inline-flex;
  gap:8px;
  align-items:center;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,153,51,.14);
  color:var(--maroon);
  font-weight:600;
  font-size:13px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:999px;
  border:1px solid transparent;
  background:var(--maroon);
  color:#fff;
  cursor:pointer;
  position:relative;
  overflow:hidden;
  transition:transform .15s ease, box-shadow .2s ease, background .2s ease;
  box-shadow:0 12px 28px rgba(128,0,0,.22);
}
.btn:hover{transform:translateY(-1px)}
.btn:active{transform:translateY(0)}
.btn-outline{
  background:transparent;
  color:var(--maroon);
  border-color:rgba(128,0,0,.25);
  box-shadow:none;
}
.btn-saffron{background:var(--saffron); box-shadow:0 12px 28px rgba(255,153,51,.25)}

.ripple::after{
  content:"";
  position:absolute;
  inset:auto;
  width:10px;
  height:10px;
  border-radius:999px;
  background:rgba(255,255,255,.6);
  transform:translate(-50%,-50%) scale(0);
  opacity:0;
  pointer-events:none;
}
.ripple.ripple-animate::after{animation:ripple .6s ease}
@keyframes ripple{0%{transform:translate(var(--rx),var(--ry)) scale(0);opacity:.8}100%{transform:translate(var(--rx),var(--ry)) scale(24);opacity:0}}

.header{
  position:sticky;
  top:0;
  z-index:50;
  background:linear-gradient(90deg, #4a261a, #6b3723);
  border-bottom:1px solid rgba(255,255,255,.14);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:160px;
}
.brand-mark{
  width:42px;
  height:42px;
  border-radius:14px;
  background:radial-gradient(circle at 30% 30%, rgba(255,255,255,.7), rgba(255,255,255,0)),
    linear-gradient(135deg, var(--saffron), var(--maroon));
  box-shadow:0 14px 30px rgba(128,0,0,.20);
  display:grid;
  place-items:center;
  color:#fff;
  font-weight:800;
}
.brand-title{font-weight:800;line-height:1.1;color:#fff}
.brand-title small{display:block;color:rgba(255,255,255,.78);font-weight:600;font-size:12px;margin-top:2px}

.nav{
  display:flex;
  align-items:center;
  gap:18px;
}
.nav a{
  padding:10px 10px;
  border-radius:12px;
  font-weight:600;
  color:rgba(255,255,255,.90);
  transition:background .2s ease, color .2s ease;
}
.nav a:hover{background:rgba(255,255,255,.12); color:#fff}
.nav a.active{background:rgba(255,255,255,.16); color:#fff}

.header-actions{display:flex;align-items:center;gap:10px}
.lang-switch{
  display:flex;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  border-radius:999px;
  padding:4px;
}
.lang-switch button{
  border:none;
  background:transparent;
  padding:8px 12px;
  border-radius:999px;
  cursor:pointer;
  font-weight:700;
  color:rgba(255,255,255,.86);
}
.lang-switch button.active{background:#fff;color:#4a261a;box-shadow:0 10px 18px rgba(0,0,0,.18)}

.hamburger{
  display:none;
  width:44px;height:44px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.22);
  background:rgba(255,255,255,.10);
  cursor:pointer;
  align-items:center;
  justify-content:center;
}
.hamburger span{
  display:block;
  width:18px;
  height:2px;
  background:#fff;
  position:relative;
  transition:transform .2s ease, top .2s ease, opacity .2s ease;
}
.hamburger span::before,
.hamburger span::after{
  content:"";
  position:absolute;
  left:0;
  width:18px;
  height:2px;
  background:#fff;
  transition:transform .2s ease, top .2s ease, opacity .2s ease;
}
.hamburger span::before{top:-6px}
.hamburger span::after{top:6px}
.hamburger.open span{background:transparent}
.hamburger.open span::before{top:0;transform:rotate(45deg)}
.hamburger.open span::after{top:0;transform:rotate(-45deg)}

.mobile-drawer{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.35);
  z-index:70;
}
.mobile-panel{
  width:min(360px, 90vw);
  height:100%;
  background:#fff;
  padding:18px;
  box-shadow:var(--shadow);
  transform:translateX(110%);
  transition:transform .25s ease;
  margin-left:auto;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.mobile-drawer.open{display:block}
.mobile-drawer.open .mobile-panel{transform:translateX(0)}
.mobile-nav a{
  display:block;
  padding:12px 12px;
  border-radius:12px;
  font-weight:700;
  color:rgba(28,28,28,.86);
  background:rgba(255,153,51,.06);
}
.mobile-nav a + a{margin-top:10px}

.breadcrumbs{
  padding:18px 0 0;
  font-size:13px;
  color:rgba(28,28,28,.70);
}
.breadcrumbs a{color:var(--maroon);font-weight:700}
.breadcrumbs .sep{opacity:.55;margin:0 8px}

.footer{
  position:relative;
  background:
    radial-gradient(circle at 20% 10%, rgba(255,153,51,.14), rgba(0,0,0,0) 48%),
    radial-gradient(circle at 90% 60%, rgba(212,175,55,.14), rgba(0,0,0,0) 55%),
    linear-gradient(180deg, #3a1c13, #5b2f1f);
  border-top:1px solid rgba(255,255,255,.14);
}
.footer::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:0;
  height:4px;
  background:linear-gradient(90deg, var(--gold), var(--saffron), #ffffff);
  opacity:.9;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr;
  gap:22px;
  padding:44px 0;
}
.footer h4{
  font-family:"Playfair Display", Georgia, serif;
  margin:0 0 12px;
  color:#fff;
}
.footer a{
  color:rgba(255,255,255,.88);
  font-weight:700;
  position:relative;
  display:inline-block;
  padding:6px 0;
}
.footer strong{color:#fff;font-weight:900}
.footer a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:2px;
  width:100%;
  height:2px;
  background:linear-gradient(90deg, rgba(212,175,55,.0), rgba(212,175,55,.75), rgba(255,255,255,.70));
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .2s ease;
  border-radius:999px;
}
.footer a:hover{color:#fff}
.footer a:hover::after{transform:scaleX(1)}
.footer p{margin:0;color:rgba(255,255,255,.78);line-height:1.75}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.14);
  padding:16px 0;
  font-size:13px;
  color:rgba(255,255,255,.78);
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:space-between;
}

.card{
  background:rgba(255,255,255,.82);
  border:1px solid rgba(128,0,0,.10);
  border-radius:var(--radius);
  box-shadow:0 16px 40px rgba(0,0,0,.08);
}
.card-pad{padding:18px}

.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:18px}

.icon{
  width:44px;height:44px;
  border-radius:14px;
  display:grid;
  place-items:center;
  background:rgba(255,153,51,.14);
  border:1px solid rgba(255,153,51,.24);
  color:var(--maroon);
  font-weight:900;
}

.reveal{opacity:0;transform:translateY(14px);transition:opacity .6s ease, transform .6s ease}
.reveal.visible{opacity:1;transform:translateY(0)}

.fab-wrap{
  position:fixed;
  right:16px;
  bottom:16px;
  display:flex;
  flex-direction:column;
  gap:10px;
  z-index:90;
}
.fab{
  width:52px;height:52px;
  border-radius:999px;
  border:none;
  cursor:pointer;
  display:grid;
  place-items:center;
  box-shadow:0 16px 30px rgba(0,0,0,.18);
}
.fab-wa{background:#25D366;color:#fff;position:relative;font-size:0;line-height:0}
.fab-wa::before{
  content:"";
  width:26px;
  height:26px;
  background-repeat:no-repeat;
  background-position:center;
  background-size:contain;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='white' d='M19.11 17.53c-.26-.13-1.55-.76-1.79-.85-.24-.09-.41-.13-.58.13-.17.26-.67.85-.82 1.03-.15.17-.3.2-.56.07-.26-.13-1.08-.4-2.06-1.28-.76-.67-1.27-1.5-1.42-1.76-.15-.26-.02-.4.11-.53.12-.12.26-.3.39-.45.13-.15.17-.26.26-.43.09-.17.04-.33-.02-.46-.06-.13-.58-1.39-.8-1.9-.21-.51-.42-.44-.58-.45h-.49c-.17 0-.45.07-.69.33-.24.26-.91.89-.91 2.17 0 1.28.94 2.52 1.07 2.69.13.17 1.86 2.84 4.5 3.98.63.27 1.12.43 1.5.55.63.2 1.2.17 1.65.1.5-.07 1.55-.63 1.77-1.24.22-.61.22-1.13.15-1.24-.07-.11-.24-.17-.5-.3zM16.04 27c-1.88 0-3.73-.5-5.36-1.44L6 26.99l1.48-4.52A10.93 10.93 0 0 1 5 16.06C5 10.51 9.51 6 15.06 6c2.69 0 5.21 1.05 7.11 2.95A9.95 9.95 0 0 1 25 16.06C25 21.62 20.48 27 16.04 27zm8.43-19.27A11.74 11.74 0 0 0 15.06 3C8.5 3 3 8.5 3 16.06c0 2.12.56 4.19 1.62 6.01L3 30l8.16-1.59A12.01 12.01 0 0 0 16.04 30C23.6 30 29 23.62 29 16.06c0-3.13-1.22-6.06-4.53-8.33z'/%3E%3C/svg%3E");
}
.fab-top{background:#fff;color:var(--maroon);border:1px solid rgba(128,0,0,.18)}

@media (max-width: 960px){
  .nav{display:none}
  .hamburger{display:flex}
  .footer-grid{grid-template-columns:1fr;}
  .grid-3{grid-template-columns:1fr}
  .grid-2{grid-template-columns:1fr}
}
