:root{
  --bg-cream:#fbf7f0;
  --bg-cream-2:#fffdf8;
  --ink:#1c2430;
  --muted:#5a6676;
  --stroke:rgba(20, 25, 35, .12);
  --shadow: 0 18px 50px rgba(15, 20, 35, .12);
  --shadow-soft: 0 10px 30px rgba(15, 20, 35, .08);
  --brand:#f0c08d;
  --brand-2:#e7a96c;

  --wa-green:#25D366;
  --wa-stroke: rgba(37,211,102,.45);
  --wa-focus: rgba(37,211,102,.25);

  --radius: 20px;
}

*{box-sizing:border-box}

body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color:var(--ink);
  background: radial-gradient(1200px 600px at 30% 10%, var(--bg-cream-2), var(--bg-cream)) fixed;
  min-height:100vh;
  overflow-x:hidden;
}

/* Subtle animated curtains */
.curtain-bg{
  position:fixed;
  inset:0;
  z-index:-2;
  pointer-events:none;
  background:
    radial-gradient(900px 500px at 20% 0%, rgba(255,255,255,.9), rgba(255,255,255,0) 70%),
    radial-gradient(900px 500px at 80% 0%, rgba(255,255,255,.75), rgba(255,255,255,0) 70%),
    linear-gradient(180deg, rgba(255,255,255,.85), rgba(255,255,255,.65));
}
.curtain-bg::before,
.curtain-bg::after{
  content:"";
  position:absolute;
  inset:-20%;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(25, 30, 40, .06) 0px,
      rgba(25, 30, 40, .02) 18px,
      rgba(25, 30, 40, .09) 36px
    );
  animation: sway 10s ease-in-out infinite;
  opacity:.45;
  mix-blend-mode:multiply;
}
.curtain-bg::after{
  inset:-25%;
  opacity:.22;
  filter: blur(0.8px);
  animation: sway2 14s ease-in-out infinite;
}
@keyframes sway{
  0%{ transform: translateX(-1.5%) scaleY(1.02) }
  50%{ transform: translateX(1.5%) scaleY(1.00) }
  100%{ transform: translateX(-1.5%) scaleY(1.02) }
}
@keyframes sway2{
  0%{ transform: translateX(2%) skewX(-1deg) }
  50%{ transform: translateX(-2%) skewX(1deg) }
  100%{ transform: translateX(2%) skewX(-1deg) }
}

.wrap{
  max-width: 1240px;
  margin: 0 auto;
  padding: 14px 18px 60px;
}

/* Top micro links */
.toplinks{
  display:flex;
  justify-content:flex-end;
  gap:16px;
  flex-wrap:wrap;
  padding:10px 0 8px;
  color:var(--muted);
  font-size:13px;
}
.toplinks a{
  color:var(--muted);
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  gap:8px;
}
.toplinks a:hover{ color:var(--ink); }

/* Main top nav */
.topbar{
  background: rgba(255,255,255,.72);
  border:1px solid var(--stroke);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
  padding: 12px;
}

.navrow{
  display:flex;
  align-items:center;
  gap:14px;
  justify-content:space-between;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width: 260px;
}
.logo{
  width:58px; height:58px;
  border-radius:16px;
  background:#fff;
  border:1px solid var(--stroke);
  display:grid;
  place-items:center;
  overflow:hidden;
  flex:0 0 auto;
}
.logo img{ width:100%; height:100%; object-fit:contain; padding:8px; }
.brand strong{ display:block; letter-spacing:.08em; }
.brand small{ display:block; color:var(--muted); letter-spacing:.14em; text-transform:uppercase; font-size:11px; margin-top:2px; }

.menu{
  display:flex;
  gap:12px;
  align-items:center;
  flex-wrap:wrap;
  justify-content:center;
}
.menu a{
  text-decoration:none;
  color: var(--ink);
  font-weight:900;
  font-size:14px;
  padding:10px 10px;
  border-radius: 999px;
  border:1px solid transparent;
}
.menu a:hover{
  border-color: rgba(231,169,108,.35);
  background: rgba(240,192,141,.20);
}
.menu a.active{
  border-color: rgba(231,169,108,.55);
  background: rgba(240,192,141,.26);
}

.navactions{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
  min-width: 260px;
}

.btn{
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.75);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 999px;
  cursor:pointer;
  font-weight:900;
  transition:.18s ease;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  gap:10px;
  white-space:nowrap;
}
.btn:hover{ transform: translateY(-1px); box-shadow: var(--shadow-soft); }

.btn.primary{
  border-color: rgba(231,169,108,.65);
  background: linear-gradient(180deg, rgba(240,192,141,.95), rgba(231,169,108,.92));
}

.btn.wa{
  border:2px solid var(--wa-stroke);
  background: rgba(255,255,255,.72);
  color:#0b5b2a;
  font-weight:900;
}
.wa-dot{
  width:10px; height:10px;
  border-radius:999px;
  background: var(--wa-green);
  box-shadow: 0 0 0 6px var(--wa-focus);
}

@media (max-width: 980px){
  .navrow{ flex-direction:column; align-items:stretch; }
  .brand, .navactions{ min-width:auto; justify-content:center; }
  .menu{ justify-content:center; }
  .toplinks{ justify-content:center; }
}

/* Page hero */
.hero{
  margin-top: 14px;
  border:1px solid var(--stroke);
  border-radius: 22px;
  overflow:hidden;
  box-shadow: var(--shadow);
  background: rgba(255,255,255,.55);
  position:relative;
  min-height: 520px;
}
.hero img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transform: scale(1.02);
  filter: saturate(1.02) contrast(1.02);
}
.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(90deg, rgba(0,0,0,.45), rgba(0,0,0,.18) 55%, rgba(0,0,0,.10));
  pointer-events:none;
}
.heroContent{
  position:relative;
  z-index:2;
  display:flex;
  align-items:center;
  height:100%;
  padding: 34px;
  max-width: 820px;
}
.hero h1{
  margin:0 0 8px;
  color:#fff;
  font-size: 44px;
  line-height:1.05;
  text-shadow: 0 14px 34px rgba(0,0,0,.35);
  font-weight: 900;
}
.hero p{
  margin: 0 0 16px;
  color: rgba(255,255,255,.9);
  font-size: 16px;
  line-height:1.5;
  text-shadow: 0 12px 28px rgba(0,0,0,.30);
}
.heroBtns{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top: 10px;
}
@media (max-width: 760px){
  .hero{ min-height: 450px; }
  .heroContent{ padding: 22px; }
  .hero h1{ font-size: 34px; }
}

/* Generic cards */
.card{
  margin-top: 14px;
  border:1px solid var(--stroke);
  border-radius: var(--radius);
  background: rgba(255,255,255,.70);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
  overflow:hidden;
}
.card .inner{ padding: 18px; }

/* Auto scrolling tiles */
.tileBar{
  margin-top: 14px;
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.60);
  border-radius: 18px;
  overflow:hidden;
  box-shadow: var(--shadow-soft);
}
.tileTrack{
  display:flex;
  gap:12px;
  width:max-content;
  padding:12px;
  animation: scrollTiles 26s linear infinite;
  will-change: transform;
}
.tileBar:hover .tileTrack{ animation-play-state: paused; }
@keyframes scrollTiles{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

.tileCard{
  width: 240px;
  min-width: 240px;
  border-radius: 14px;
  overflow:hidden;
  border:1px solid rgba(20,25,35,.12);
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow-soft);
  position:relative;
  text-decoration:none;
  color:var(--ink);
}
.tileCard img{ width:100%; height:140px; object-fit:cover; display:block; background:#fff; }
.tileCard .cap{ padding: 10px 10px 12px; font-weight:900; font-size:13px; }
.tileCard .sub{ display:block; font-weight:700; color:var(--muted); font-size:12px; margin-top:4px; }

.tileBook{
  position:absolute;
  left:10px;
  right:10px;
  bottom:72px;
  display:flex;
  justify-content:flex-start;
  pointer-events:none;
}
.tileBook span{
  pointer-events:none;
  background: rgba(255,255,255,.80);
  border:1px solid rgba(231,169,108,.55);
  border-radius: 999px;
  padding: 8px 10px;
  font-weight: 900;
  font-size:12px;
  box-shadow: 0 10px 26px rgba(0,0,0,.15);
}

/* Footer */
.foot{
  margin-top: 18px;
  color: var(--muted);
  font-size: 12px;
  text-align:center;
  padding: 10px 0 0;
}

/* Modal (Sharps-style popup) */
.modalBack{
  position:fixed;
  inset:0;
  background: rgba(0,0,0,.55);
  display:none;
  align-items:center;
  justify-content:center;
  padding: 18px;
  z-index: 999;
}
.modalBack.open{ display:flex; }
.modal{
  width: 520px;
  max-width: 100%;
  border-radius: 18px;
  background: rgba(255,255,255,.95);
  border:1px solid rgba(255,255,255,.35);
  box-shadow: 0 30px 90px rgba(0,0,0,.35);
  overflow:hidden;
}
.modalHead{
  padding: 16px 18px 10px;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:10px;
}
.modalHead a{
  color:var(--muted);
  text-decoration:none;
  font-weight:900;
  font-size:13px;
}
.modalHead button{
  border:0;
  background:transparent;
  cursor:pointer;
  font-size:22px;
  line-height:1;
  padding: 0 4px;
  color: rgba(28,36,48,.75);
}
.modalBody{ padding: 0 18px 18px; }
.modalTitle{
  margin: 0 0 10px;
  font-size: 18px;
  letter-spacing:.06em;
  text-transform:uppercase;
}
.mItem{
  display:flex;
  gap:12px;
  margin: 10px 0;
  align-items:flex-start;
}
.check{
  width:22px; height:22px;
  border-radius:999px;
  background: rgba(37,211,102,.12);
  border:1px solid rgba(37,211,102,.35);
  display:grid;
  place-items:center;
  flex:0 0 auto;
  margin-top: 2px;
}
.check svg{ width:14px; height:14px; }
.mItem b{ display:block; margin-bottom:3px; }
.mItem p{ margin:0; color:var(--muted); font-size:13px; line-height:1.45; }

.modalActions{
  margin-top: 14px;
  padding-top: 12px;
  border-top:1px solid rgba(20,25,35,.10);
  display:flex;
  justify-content:flex-end;
  gap:10px;
  flex-wrap:wrap;
}

@media (prefers-reduced-motion: reduce){
  .curtain-bg::before, .curtain-bg::after{ animation:none; }
  .tileTrack{ animation:none; }
}
