:root{
  --dp-ink:#141418;
  --dp-ink-2:#0f1012;
  --dp-muted:#6c6f76;
  --dp-cream:#f4eee6;
  --dp-sand:#e7dccf;
  --dp-card:#ffffff;
  --dp-shadow:0 18px 45px rgba(0,0,0,.10);
  --dp-radius:18px;
}

html,body{height:100%}
body{
  font-size:18px;
  color:var(--dp-ink);
  background:#fff;
  letter-spacing:.1px;
}

a{color:inherit}
a:hover{opacity:.9}

.skip-link{
  position:absolute;
  left:-9999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}
.skip-link:focus{
  left:12px;
  top:12px;
  width:auto;
  height:auto;
  padding:10px 12px;
  background:#fff;
  border:1px solid rgba(0,0,0,.15);
  border-radius:10px;
  z-index:2000;
}

.brand-mark{
  width:34px;
  height:34px;
  border-radius:10px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:var(--dp-cream);
  border:1px solid rgba(0,0,0,.08);
}

.brand-mark-dark{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  color:#fff;
}

.navbar .nav-link{font-weight:500}
.navbar .btn-primary{
  border-radius:999px;
  box-shadow:0 10px 25px rgba(13,110,253,.18);
}

.section{
  position:relative;
  overflow:hidden;
  scroll-margin-top:90px;
}

.section-decor{
  position:absolute;
  inset:0;
  pointer-events:none;
}

.section-head .h1{letter-spacing:-.3px}

.title-row{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}

.mini-tag{
  display:inline-flex;
  align-items:center;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.78);
  border:1px solid rgba(0,0,0,.08);
  box-shadow:0 10px 25px rgba(0,0,0,.06);
  font-weight:600;
  font-size:.92em;
}

.mini-tag-dark{
  background:rgba(20,20,24,.06);
}

.hero{
  position:relative;
  padding:72px 0;
  overflow:hidden;
}
.hero-grad{
  background:
    radial-gradient(900px 420px at 15% 15%, rgba(0,0,0,.06), transparent 55%),
    linear-gradient(180deg, var(--dp-cream), #fff);
}
.hero-decor{
  position:absolute;
  inset:-120px -120px auto auto;
  width:480px;
  height:480px;
  border-radius:50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(0,0,0,.10), transparent 62%),
    radial-gradient(circle at 70% 70%, rgba(13,110,253,.18), transparent 62%);
  filter:blur(2px);
}
.hero-kicker{
  color:var(--dp-muted);
  font-weight:600;
}
.hero-lead{
  color:#2b2b2e;
  opacity:.92;
  max-width:62ch;
}
.hero-badges .badge-pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 12px;
  border-radius:999px;
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  box-shadow:0 10px 25px rgba(0,0,0,.06);
  font-size:.95em;
}

.hero-card{
  border-radius:var(--dp-radius);
  background:var(--dp-card);
  box-shadow:var(--dp-shadow);
  overflow:hidden;
  border:1px solid rgba(0,0,0,.08);
  position:relative;
}
.hero-card-top{
  position:relative;
}
.hero-thumb{
  height:240px;
  background:#ddd center/cover no-repeat;
}
.hero-stamp{
  position:absolute;
  right:14px;
  bottom:14px;
  padding:10px 12px;
  border-radius:14px;
  background:rgba(255,255,255,.88);
  border:1px solid rgba(0,0,0,.10);
  box-shadow:0 12px 28px rgba(0,0,0,.10);
}
.hero-stamp-title{
  font-weight:800;
  letter-spacing:.2px;
}
.hero-stamp-sub{
  color:var(--dp-muted);
  font-size:.92em;
}

.icon-bubble{
  width:44px;
  height:44px;
  border-radius:14px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:var(--dp-cream);
  border:1px solid rgba(0,0,0,.08);
  flex:0 0 auto;
}
.icon-bubble.lg{
  width:52px;
  height:52px;
  border-radius:16px;
  font-size:1.05em;
}

.chip{
  display:inline-flex;
  align-items:center;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.08);
  font-weight:700;
  font-size:.92em;
}
.chip-a{background:rgba(231,220,207,.85)}
.chip-b{background:rgba(244,238,230,.9)}
.chip-c{background:rgba(13,110,253,.08)}
.chip-d{background:rgba(20,20,24,.06)}

.card-soft{
  border-radius:var(--dp-radius);
  border:1px solid rgba(0,0,0,.08);
  box-shadow:0 16px 40px rgba(0,0,0,.07);
  background:#fff;
}

.card-edge{
  position:relative;
  overflow:hidden;
}
.card-edge::after{
  content:"";
  position:absolute;
  inset:auto -60px -70px auto;
  width:220px;
  height:220px;
  border-radius:50%;
  background:radial-gradient(circle at center, rgba(13,110,253,.14), transparent 62%);
}

.card-media{
  height:170px;
  background:#ddd center/cover no-repeat;
  border-top-left-radius:var(--dp-radius);
  border-top-right-radius:var(--dp-radius);
}

.cta-strip{
  border-radius:var(--dp-radius);
  padding:18px 18px;
  border:1px solid rgba(0,0,0,.08);
  background:
    radial-gradient(260px 180px at 90% 20%, rgba(13,110,253,.10), transparent 70%),
    #fff;
  box-shadow:0 14px 34px rgba(0,0,0,.06);
}

.note-box{
  border-radius:var(--dp-radius);
  padding:18px 18px;
  background:
    radial-gradient(360px 200px at 20% 0%, rgba(0,0,0,.06), transparent 60%),
    linear-gradient(180deg,#fff,var(--dp-cream));
  border:1px solid rgba(0,0,0,.08);
  box-shadow:0 14px 34px rgba(0,0,0,.06);
}

.section-catalog{
  background:
    radial-gradient(520px 320px at 10% 10%, rgba(13,110,253,.08), transparent 60%),
    radial-gradient(520px 320px at 90% 40%, rgba(0,0,0,.06), transparent 62%),
    #fff;
}
.catalog-decor::before{
  content:"";
  position:absolute;
  left:22px;
  top:28px;
  width:6px;
  height:140px;
  border-radius:999px;
  background:linear-gradient(180deg, rgba(13,110,253,.22), rgba(0,0,0,.10));
  opacity:.65;
}
.catalog-decor::after{
  content:"";
  position:absolute;
  right:-90px;
  top:120px;
  width:220px;
  height:220px;
  border-radius:50%;
  background:radial-gradient(circle at center, rgba(231,220,207,.9), transparent 62%);
}

.section-services{
  background:
    linear-gradient(135deg, rgba(244,238,230,.95), rgba(255,255,255,1)),
    #fff;
}
.services-decor::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(520px 260px at 85% 15%, rgba(13,110,253,.12), transparent 62%),
    radial-gradient(520px 260px at 18% 85%, rgba(0,0,0,.06), transparent 62%);
  opacity:1;
}
.services-decor::after{
  content:"";
  position:absolute;
  left:-140px;
  top:-120px;
  width:320px;
  height:320px;
  border-radius:50%;
  background:radial-gradient(circle at center, rgba(231,220,207,.9), transparent 62%);
}

.service-card{
  position:relative;
  overflow:hidden;
}
.service-line{
  position:absolute;
  left:18px;
  right:18px;
  bottom:18px;
  height:3px;
  border-radius:999px;
  opacity:.9;
}
.service-a .service-line{background:linear-gradient(90deg, rgba(13,110,253,.55), rgba(0,0,0,.08))}
.service-b .service-line{background:linear-gradient(90deg, rgba(231,220,207,1), rgba(13,110,253,.20))}
.service-c .service-line{background:linear-gradient(90deg, rgba(0,0,0,.10), rgba(231,220,207,1))}

.section-references{
  background:
    radial-gradient(700px 360px at 50% 0%, rgba(13,110,253,.08), transparent 60%),
    linear-gradient(180deg, #fff, rgba(244,238,230,.55));
}
.references-decor::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.05) 1px, transparent 1px) 0 0/28px 28px,
    linear-gradient(0deg, rgba(0,0,0,.05) 1px, transparent 1px) 0 0/28px 28px;
  opacity:.10;
}
.references-decor::after{
  content:"";
  position:absolute;
  right:-110px;
  bottom:-120px;
  width:360px;
  height:360px;
  border-radius:50%;
  background:radial-gradient(circle at center, rgba(231,220,207,.95), transparent 62%);
}

.ref-card{
  border-radius:var(--dp-radius);
  border:1px solid rgba(0,0,0,.08);
  box-shadow:0 16px 40px rgba(0,0,0,.07);
  overflow:hidden;
  background:#fff;
  height:100%;
  position:relative;
}
.ref-card::after{
  content:"";
  position:absolute;
  inset:auto -70px -80px auto;
  width:240px;
  height:240px;
  border-radius:50%;
  background:radial-gradient(circle at center, rgba(13,110,253,.12), transparent 62%);
}
.ref-media{
  height:190px;
  background:#ddd center/cover no-repeat;
}
.ref-pill{
  display:inline-flex;
  align-items:center;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.10);
  background:rgba(244,238,230,.8);
  font-weight:700;
  font-size:.92em;
}
.ref-a .ref-pill{background:rgba(13,110,253,.10)}
.ref-b .ref-pill{background:rgba(231,220,207,.9)}
.ref-c .ref-pill{background:rgba(0,0,0,.06)}

.cta-slim{
  border-radius:var(--dp-radius);
  border:1px solid rgba(0,0,0,.08);
  background:rgba(255,255,255,.78);
  box-shadow:0 14px 34px rgba(0,0,0,.06);
  padding:16px 18px;
}

.section-booking{
  background:
    radial-gradient(520px 280px at 15% 20%, rgba(231,220,207,.95), transparent 62%),
    radial-gradient(520px 280px at 85% 55%, rgba(13,110,253,.10), transparent 62%),
    #fff;
}
.booking-decor::before{
  content:"";
  position:absolute;
  left:-120px;
  bottom:-140px;
  width:380px;
  height:380px;
  border-radius:50%;
  background:radial-gradient(circle at center, rgba(0,0,0,.06), transparent 62%);
}
.booking-decor::after{
  content:"";
  position:absolute;
  right:18px;
  top:22px;
  width:90px;
  height:6px;
  border-radius:999px;
  background:linear-gradient(90deg, rgba(13,110,253,.35), rgba(231,220,207,.95));
  opacity:.85;
}
.booking-card{
  background:
    radial-gradient(320px 180px at 85% 0%, rgba(13,110,253,.10), transparent 62%),
    #fff;
}
.soft-badge{
  display:inline-flex;
  align-items:center;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(20,20,24,.06);
  border:1px solid rgba(0,0,0,.08);
  font-weight:700;
  font-size:.92em;
}

.step-list{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap:14px;
}
.step-list li{
  display:flex;
  gap:12px;
  align-items:flex-start;
}
.step-num{
  width:34px;
  height:34px;
  border-radius:12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:var(--dp-sand);
  border:1px solid rgba(0,0,0,.08);
  font-weight:800;
  flex:0 0 auto;
}

.stats-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}
.stat-tile{
  border-radius:16px;
  border:1px solid rgba(0,0,0,.08);
  background:rgba(255,255,255,.75);
  box-shadow:0 12px 26px rgba(0,0,0,.06);
  padding:12px;
}
.stat-top{
  width:38px;
  height:38px;
  border-radius:14px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:rgba(231,220,207,.9);
  border:1px solid rgba(0,0,0,.08);
  margin-bottom:8px;
}

.section-contact{
  background:
    linear-gradient(180deg, rgba(244,238,230,.55), #fff);
}
.contact-decor::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(520px 240px at 70% 10%, rgba(13,110,253,.10), transparent 62%),
    radial-gradient(520px 240px at 20% 90%, rgba(0,0,0,.06), transparent 62%);
}
.contact-decor::after{
  content:"";
  position:absolute;
  left:22px;
  bottom:22px;
  width:110px;
  height:110px;
  border-radius:30px;
  background:linear-gradient(135deg, rgba(231,220,207,.95), rgba(255,255,255,.6));
  border:1px solid rgba(0,0,0,.08);
  opacity:.65;
}

.contact-card{
  background:
    radial-gradient(320px 180px at 0% 0%, rgba(231,220,207,.9), transparent 62%),
    #fff;
}
.contact-grid{
  display:flex;
  flex-direction:column;
  gap:16px;
}
.contact-item{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:12px;
  border-radius:16px;
  border:1px solid rgba(0,0,0,.08);
  background:rgba(255,255,255,.72);
  box-shadow:0 12px 26px rgba(0,0,0,.05);
}

.site-footer{
  background:linear-gradient(180deg, var(--dp-ink), var(--dp-ink-2));
  color:#fff;
  border-top:1px solid rgba(255,255,255,.10);
}
.footer-muted{
  color:rgba(255,255,255,.72);
}
.footer-link{
  color:rgba(255,255,255,.92);
  text-decoration:none;
}
.footer-link:hover{
  opacity:.9;
  text-decoration:underline;
}
.footer-topline{
  border-top:1px solid rgba(255,255,255,.12);
}

.cookie-banner{
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  z-index:1200;
  padding:14px 0;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(10px);
  border-top:1px solid rgba(0,0,0,.10);
}
.cookie-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.cookie-text{max-width:70ch}
.cookie-actions{flex:0 0 auto}

@media (max-width: 991.98px){
  .hero{padding:56px 0}
  .cookie-inner{flex-direction:column; align-items:flex-start}
  .cookie-text{max-width:unset}
  .stats-grid{grid-template-columns:1fr}
}
